Jérémie C. Wenger
Jérémie C. Wenger
I stumbled across this, as @ziyuan-linn mentioned, that explanation was nice and clear, @shiffman, thanks! Out of curiosity, is the adoption of promises in p5 in the works / planned?
Awesome, thanks @ziyuan-linn !
It might be that `Plug` is the source of this, as it [may not allow for lazy-loading of lua plug-ins](https://github.com/junegunn/vim-plug/issues/1261#issuecomment-1885971191)...
Wouldn't something like this (untested) solve both issues? (Disclosure: this is reworked from a Ch*tGPT suggestion.) ```javascript function _mergePalettes(targetPalette, addedPalette) { // TODO: implement } // chunkSize: is there a...
Hmm, ok, thanks for this. I'm afraid I'm not following 100%, as the underlying process for the construction of the palette isn't clear to me yet! I guess I would...
Hi @ziyuan-linn, And thanks a lot for your answers! Integrating the flexibility of Huggingface for models would be quite amazing! I would be interested in helping out if I can,...
That sounds all very lovely, thanks @gojomo for the detailed explanation! I did try `restrict_vocab`, and *unfortunately* that seems to work pretty well, haha! However, w.r.t. fiddling with the array,...
Thanks for this! `vectors_ngrams` were also the same shape as the others, `(2000000, 300)`, looked too suspiciously the same not to be related, but ok. Indeed it all might require...
Update. Looking at [this bit](https://github.com/piskvorky/gensim/blob/15bcb5752ca073c6fa2387a7563ebf279165c6f1/gensim/models/fasttext.py#L1191) It looks like actually `vectors` are the vocabulary word vectors adjusted by _adding the relevant subword vector information to them_ (geometrically), which means that `vectors_vocab`...
Additional update (sorry for pestering!): given that in my application removing those vectors would be a quite regular process (by applying some constraint on the search, say if you only...