- Notifications
You must be signed in to change notification settings - Fork328
Training Overview - PostgresML#351
-
Training Overview - PostgresMLTrain and deploy models to make online predictions using only SQL, with an open source Postgres extension. |
BetaWas this translation helpful?Give feedback.
All reactions
Replies: 1 comment 1 reply
-
I am getting following error while loading the data in the pstgresql database table, can explain how to load the data to pgml to start training?? pgml_development=# select pgml.load_dataset('crowd_count'); |
BetaWas this translation helpful?Give feedback.
All reactions
-
There is no public dataset named 'crowd_count'. PostgresML does provide a few of the toy datasets from scikit learn ('digits', 'diabetes', 'iris', 'linerrud', 'wine', 'breast_cancer'), and we also support many of the datasets fromhugging face. If you are trying to load a private dataset, I'd load it into the Postgres database usingCOPY, or whatever is easiest with your framework/working language. The free hosted Gym also includes the ability to upload CSV files via the main navigation bar. |
BetaWas this translation helpful?Give feedback.