Tyler Renelle
Tyler Renelle
Not its ORM, but you are using it's dialects helpers for the `insert() .. on_conflict_do` function (`from sqlalchemy.dialects.postgresql import insert as pg_insert` from https://github.com/ThibTrip/pangres/blob/master/pangres/upsert.py). My hunch was the bulk_insert capabilities...
Oh you know what, you're right & I'm wrong. bulk_insert* are from the ORM library, and they appear to be slower ([performance.html](https://docs.sqlalchemy.org/en/13/faq/performance.html#i-m-inserting-400-000-rows-with-the-orm-and-it-s-really-slow)) anyway. ``` SQLAlchemy ORM bulk_save_objects(): Total time for...
Thanks for the reply. I'll try the main doc's `get_db()` approach first & see how it suites me, and if I end up wanting to go the fastapi-sqlalchemy path I'll...
This is a nuisance indeed. Long story that I'd been putting outputs into an outputs file for CI/CD, and due to name-conflict with resource ID of... well, it's kinda hard...
Hear hear!
This PR gets me past the load error, but now I get ` r.predict is not a function`. Maybe more needs massaging besides just the line changed here? (since `predict()`...
@LuxunHuang when I use this patch, I get `stat: embedded null character in path` because the `os.path.isfile(image)` comes before your check; and `image` at that point is bytes. Just need...
bump. I need to use loaded umap (pickle, joblib, etc) for inference ("You'll only need [._rp_trees] it if you want to transform new data"). I think that might be a...
Also interested in this. I'm not sure how it can be tied to `app`, since using a Manager replaces that argument `socketio.AsyncServer(client_manager=socketio.AsyncRedisManager('redis://'))` - so it seems mutually exclusive? But yeah,...
Same issue. Either `5/Client side error` or `7/No match`, very frequent and I can't spot a pattern. Sometimes it will try to listen for a bit, other times it will...