- Notifications
You must be signed in to change notification settings - Fork328
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
-
Hi PGML team, I've been building out a system backed by PostgresML and wanted to share some feedback around my experience. What's been going well:
Pain Points / Oddities:
CREATETABLEuser_embeddings( user_id uuidNOT NULLCONSTRAINT user_embeddings_user_id_pkPRIMARY KEYCONSTRAINT user_embeddings_user_id_fkREFERENCES usersONUPDATE RESTRICTON DELETE CASCADE, embeddings vector(384)NOT NULL) PARTITION BY LIST (user_id); Questions
|
BetaWas this translation helpful?Give feedback.
All reactions
❤️ 3👀 1
Replies: 2 comments 1 reply
-
Thank you for this feedback.
|
BetaWas this translation helpful?Give feedback.
All reactions
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
-
Ah ya I can definitely see being hesitant around relying on another extension. I can take care of creating an issue tomorrow if one hasn't been created by then. 2.b) Ya that makes sense - I think my intuitive expectation would either be:
I'm not extremely familiar with the ML world, so these intuitive expectations are strictly from an API-design perspective and much less of a "what might consumers of ML tools generally expect" perspective. I could be way off base! 2.c) The high level gist is:
|
BetaWas this translation helpful?Give feedback.
All reactions
-
Adding to@zzzint point in 2.c, I think that even if a single global model is generally more accurate at identifying proper clusters for the purposes of his application, there will no doubt be some cases where a user-specific model could segment that user's data in a more meaningful way than the global model, possibly leading to a much better experience for that particular user, so I can understand the interest in exploring the effectiveness of user-specific models along with a single global model. |
BetaWas this translation helpful?Give feedback.