Jakub Bartczuk
Jakub Bartczuk
@lmcinnes which version of scipy is safe to use with older UMAP? Also, how can we get UMAP 0.4.6? Installing from pypi or master only gets 0.4.5
```python import gensim.downloader model = gensim.downloader.load('fasttext-wiki-news-subwords-300') model ``` ``` ``` ```python model.get_vector('dogge') ``` ``` KeyError: "word 'dogge' not in vocabulary" ``` Which is not something that you expect from a...
``` --------------------------------------------------------------------------- KeyError Traceback (most recent call last) in () ----> 1 fasttext_w2v_format.get_vector('dogge') 1 frames /usr/local/lib/python3.6/dist-packages/gensim/models/keyedvectors.py in word_vec(self, word, use_norm) 450 return result 451 else: --> 452 raise KeyError("word '%s'...
@piskvorky @mpenkov could you help me pinpointing the problem? I may be willing to fix it, but for now I don't know where to start because I don't see what...
[labelme](https://github.com/wkentaro/labelme) can be used to label images. You can then extract information on bounding boxes/polygons from json files it generates.
``` Debugger entered--Lisp error: (wrong-number-of-arguments (1 . 1) 2) generate-new-buffer(" *string-output*" t) copilot--start-agent() copilot-login() funcall-interactively(copilot-login) call-interactively(copilot-login record nil) command-execute(copilot-login record) helm-M-x-execute-command(copilot-login) helm-execute-selection-action-1() helm-execute-selection-action() helm-internal((((name . "Emacs Commands history") (init #f(compiled-function...
Not really. As far as I know plotly figures aren't visible in jupyter notebooks.
@kylerush that doesn't work generically @arnavsinghvi11 the whole point is to not do this; setting an LLM in a module is leaking implementation details which hits reusability - what if...
Ok so basically I wrote something like this and it seems to work for LMs that will have `kwargs` field ``` from contextlib import contextmanager @contextmanager def override_lm_params(**kwargs): lm =...
@arnavsinghvi11 what's the difference between this and my context manager?