TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Model management/deployment of many Python models

3 pointsby timlodover 6 years ago
Hi HN! These days I&#x27;ve been getting into Python model deployment and haven&#x27;t really found a great solution for my specific problem yet. The use case is that there are thousands of models trained using scikit-learn (efficient prediction, low footprint) that I want to deploy.<p>Most solutions seem to expose an API per model, but I think in my case this is unnecessary: in principle, each model will be called every hour (or other predefined frequency), and its prediction stored in a database. From there the user&#x2F;dashboard will access the predictions as well as the time series they come from.<p>I could deploy docker containers per model, but given that 99.9% of the time there is no work to do but wait for new values, I&#x27;m thinking there could be a smarter way. Something along the lines of a queue from which the models are executed at every timestep.<p>I do want to avoid a single point of failure, need to be able to version and manage the models after deployment, and need to be able to deploy this in the Azure ecosystem. Does anyone have experience doing anything like this? I&#x27;m looking into things like seldon.io and Databricks, which look like they can provide what I need, but am thinking they may be too much?

1 comment

itamarstover 6 years ago
Never actually used it, but possibly dotscience.com might do something like what you want?
评论 #19161220 未加载