Show HN: Fullstack ML – From Notebooks to Deployment
21–25 of 25 posts
Re: Show HN: Fullstack ML – From Notebooks to Deployment
#22Re: Show HN: Fullstack ML – From Notebooks to Deployment
#23Luckily people are trying to address this gap in education options! For example, https://sharpestminds.com is a platform where you gain skills by building such a full-stack ML project under a mentorship of an experienced data scientist yourself.
Re: Show HN: Fullstack ML – From Notebooks to Deployment
#24This feels like it doesn't live up to its own hype because it doesn't really exhibit a production-quality deployment of a Python application but something closer to a dev server. It uses a single-threaded flask server behind a nginx reverse proxy without a WSGI layer to handle multiple requests, etc. Here is the nginx code: server { listen 80; server_name: localhost; location / { proxy_pass http://fai:4242/; proxy_se…
Re: Show HN: Fullstack ML – From Notebooks to Deployment
#25Seeing e2e projects is definitely a huge plus, but without relevant commentary I don't see how it is consumable enough to help a large enough mass.