Andrey Kutuzov

Results 11 comments of Andrey Kutuzov

Thanks for the report! There are many breaking changes in Gensim 4, so we still continue to use Gensim 3.8.3 in most of our servers. However, the fix for this...

It's already there: https://github.com/lizaku/vec2graph/blob/master/vec2graph/genviz.py#L106

One can lemmatize Russian texts before using this model, with the help of [pymystem](https://pypi.python.org/pypi/pymystem3): ``` def tag(word): from pymystem3 import Mystem m = Mystem() processed = m.analyze(word)[0] lemma = processed["analysis"][0]["lex"].lower().strip()...

@andrei-q Gensim fastText code has been refactored since the time this issue was created. In the recent versions of Gensim, you should use `gensim.models.KeyedVectors.load()` to load this model. I've changed...

On the other hand: using `placeholder` will make it impossible for a user to quickly check that the web service is indeed working, without explicitly entering a query.

https://www.w3schools.com/howto/howto_html_clear_input.asp

OK, but what about heart rate? It certainly transmits this data to Amazfish, but still no graphs.

Thanks @ccalaza for this solution, it works indeed! Strange that EasyBuild silently fails to inject checksums simply because of indentation (and without any error message at that).

@AngledLuffa you can try the [simple-elmo](https://pypi.org/project/simple-elmo/) project. It relies on TensorFlow, not PyTorch, but the idea is the same: to make ELMo usage more straightforward.

With simple-elmo, you can load: 1. [Pre-trained models provided by allennlp](https://allennlp.org/elmo). You'll just have to rename their files to `model.hdf5` and `options.json`, and create a `vocab.txt` file with any number...