Show HN: PostgresML, now with analytics and project management
31–40 of 76 posts
Re: Show HN: PostgresML, now with analytics and project management
#32Re: Show HN: PostgresML, now with analytics and project management
#33What affiliation does this have with PostgreSQL?
None, it's just an extension. Which is part of what is so awesome about PostgreSQL, everyone can build extensions that look and feel native and can do almost anything.
Re: Show HN: PostgresML, now with analytics and project management
#34Neat project. Any roadmap for cross-validation support (GridSearchCV and friends)?
Re: Show HN: PostgresML, now with analytics and project management
#35Re: Show HN: PostgresML, now with analytics and project management
#36Can we offload model train to a different server? It can be parallelized? Anyway, nice API and a promising project.
Re: Show HN: PostgresML, now with analytics and project management
#37Can this be used to deploy an "active learning" model that learns from fresh data and model auto-updates?
That's exactly the target use case. Models make online predictions as part of Postgres queries, and can be periodically retrained in a cadence that makes sense for the particular data set. In my experience the real value of retraining at a fixed cadence is so that you can learn when your data set changes, and have fewer changes to work through when there is some data bug/anomaly introduced into the eco system. Models…
Re: Show HN: PostgresML, now with analytics and project management
#38Earlier quoted context omitted.
That's exactly the target use case. Models make online predictions as part of Postgres queries, and can be periodically retrained in a cadence that makes sense for the particular data set. In my experience the real value of retraining at a fixed cadence is so that you can learn when your data set changes, and have fewer changes to work through when there is some data bug/anomaly introduced into the eco system. Models…
Well, you would also need new labels to retrain.
Re: Show HN: PostgresML, now with analytics and project management
#39This looks awesome! I’m not an expert but wouldn’t the typical database hardware not be really optimal for running ML? Is this meant to run on a replica (which is quite straightforward to setup) that has ML optimised hardware?
It’s probably a stretch to run GPT-3 inside a db, but most of the “deep learning” models I’ve run in more traditional environments are a few megabytes. That’s millions of params, but Morre’s law has been generous enough to us over the decades that I think there is a good case to spend a few megabytes of DB ram on ML. I would think this idea has really landed though, when we start hearing about Postgres deployments wi…
Maybe enhance this with a FDW to an external inference process to allow triggering of inference from Postgresql itself.
Re: Show HN: PostgresML, now with analytics and project management
#40For anything substantive it seems like a bad idea to run this on your primary store since the last thing you want to do is eat up precious CPU and RAM needed by your OLTP database. But in a data warehouse or similar replicated setup, it seems like a really neat idea.