TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Show HN: Build Machine Learning Web-Service with Python and Django

67 点作者 pplonski86超过 4 年前

7 条评论

ampdepolymerase超过 4 年前
Calling the ML model should be done via Django Channels or a similar background queue and not directly within the view (request handler) as if the inputs/inference is too big, it will block and cause issues for load handling.
评论 #24375807 未加载
评论 #24376028 未加载
评论 #24377127 未加载
theo31超过 4 年前
For anyone looking to deploy ML models a little bit easier, check out <a href="https:&#x2F;&#x2F;inferrd.com" rel="nofollow">https:&#x2F;&#x2F;inferrd.com</a><p>It&#x27;s a simple drag and drop to deploy tensorflow, scikit, spacy, keras or pytorch.
评论 #24376800 未加载
评论 #24377562 未加载
评论 #24379670 未加载
denimboy超过 4 年前
A Django app for managing training data and active labeling would be a nice complement to this. Something similar to AWS GroundTruth.<p>We should start thinking about an ML life cycle were data is ingested, data labeled labeled, models trained, model tested, model deployed and monitored. Rinse, lather, repeat.
评论 #24381984 未加载
jeffrwells超过 4 年前
For anyone who is looking to make deploying ML models easier, I created <a href="https:&#x2F;&#x2F;deepserve.ai" rel="nofollow">https:&#x2F;&#x2F;deepserve.ai</a><p>You can run `deepserve deploy` on the command line and it will stand up a REST endpoint for your model. I&#x27;m also building client side SDKs to make it easier to call on these models in your application code.<p>It&#x27;s still in beta but feel free to reach out to me jeff @ deepserve.ai
评论 #24376846 未加载
Aliabid94超过 4 年前
[Gradio](gradio.app) can save a lot of time to serve the same purpose - making it super easy to serve any python based ML. It provides dozens of interface components, including text, image, audio, files, and dataframes to support many different types of predictions.
tecoholic超过 4 年前
I noticed that the models use CharField with a max_length of 10K. Why not use TextField?
评论 #24376026 未加载
VHRanger超过 4 年前
Why use Django when Flask is so much simpler and has less overhead?<p>For just a REST ML model endpoint, Flask does everything you need, and no more. It&#x27;s a perfect fit.
评论 #24374882 未加载
评论 #24379877 未加载
评论 #24375067 未加载