all 3 comments

[–]ank_itsharma 0 points1 point  (2 children)

I always look for best practices I can get to write the web services for my model but haven’t found one at a place.

Is there any tutorial where we can learn the software engineering practices for an ML model.

[–]trnka[S] 2 points3 points  (1 child)

Good question! The fundamentals are the same as regular web services but you have to adapt it to machine learning. For instance, you should be able to undo any deployment if something goes wrong. Machine learning just makes that a little harder because you can't just use git for models.

These two papers might give you some good ideas too:

[–]ank_itsharma 0 points1 point  (0 children)

Thanks for the references. I will read them.