Frederico Tommasi Caroli
Frederico Tommasi Caroli
Can we get an update on this? Super annoying to debug
Define the embedding layer yourself and then call the model on it ``` inp = Input(...) emb = Embedding(...)(inp) output = Seq2Seq(...)(emb) model = Model(inp, output) ```
I hate to be the one to say "up", but I think it's fair since no one responded to this. Pyright also complaints about the VoyageAI python SDK. And looking...
My use case also involves copying a collection to a new one, while the old doesn't receive any writes. So in theory I would be ok using `init_from`. I would...
Hey @generall, my use-case involves re-indexing collections of files on a scheduled basis (daily or hourly), and I'd like that to work atomically. Most files in the collection don't change...
Bumping into the same issue. Using `dynamic = ["dependencies", "optional-dependencies"]` along with the deprecated `[tool.poetry.extras]` is a valid workaround for my specific setup.