Jay Marcyes

Results 144 issues of Jay Marcyes

https://github.com/deezer/spleeter via: * https://www.reddit.com/r/Python/comments/drfdhp/spleeter_tensorflowpowered_library_that_separates/ * https://www.reddit.com/r/Python/comments/dun2ku/this_tensorflow_based_python_library_spleeter/ * https://www.reddit.com/r/Python/comments/dun2ku/this_tensorflow_based_python_library_spleeter/ There are lots of other links in the HN as well that would be worth looking at: * https://github.com/sigsep/open-unmix-pytorch * https://news.ycombinator.com/item?id=21399838

Add an interface to use tesseract for ocr? https://www.reddit.com/r/computerscience/comments/dd27cs/i_want_to_create_a_program_that_is_able_to_scan_a/

[speech](https://aws.amazon.com/transcribe/) and [OCR](https://aws.amazon.com/rekognition/)

So instead of `VARCHAR(256)` I would do: ``` TEXT NOT NULL CHECK (length()

I'd want to look into how [SQLite](https://www.sqlite.org/datatype3.html) handles these also. But I'm thinking I should change to this for all timestamps: ``` timestamp with time zone ``` references > The...

An intersect query: ``` SELECT "_id" FROM "foo" WHERE ("type" = 'a' AND "value" = '1') INTERSECT SELECT "_id" FROM "foo" WHERE ("type" = 'b' AND "value" = '2') ```...

Currently we basically [do this](https://www.postgresql.org/docs/current/indexes-expressional.html) but it is probably worth revisiting this and taking a good look at [citext](https://www.postgresql.org/docs/current/citext.html) or [collation](https://www.postgresql.org/docs/current/collation.html#COLLATION-NONDETERMINISTIC) (which is how we do it on SQLite). Jarid...

* https://www.sqlite.org/lang_UPSERT.html * https://stackoverflow.com/questions/418898/sqlite-upsert-not-insert-or-replace Both Postgres and SQLite have roughly the same syntax and it would be nice to bake in support for it

See [this endpoints issue](https://github.com/Jaymon/endpoints/issues/118) for how I want to approach the implementation For Postgres, I could use [asyncpg](https://github.com/magicstack/asyncpg) or aiopg (psycopg). I haven't looked into SQLite yet.

python3 has a descriptor `__set_name__()` magic method [that will tell the descriptor what the name is](https://docs.python.org/3/howto/descriptor.html#customized-names), I should switch my logic to use this