Paolo Magnani
Paolo Magnani
The same with `Python 3.7.9` in my case . Now it's working with `Python 3.7.6` for me.
@omarsumadi can you explain me how to do that? I put the `--no-cache-dir --no-binary :all:` at the end of all my `pip install` lines but it didn't worked in `Python...
@cavvia the same with a similar library: [BERTopic](https://github.com/MaartenGr/BERTopic) to me! I tried also with `pip install package --no-cache-dir --no-binary :all:` but doesn't change anything. But in my case the problem...
Yes, I need only a way to load in a second moment the `Document` object because I have to iterate on each token computing method as `.parent` , `.ner` and...
@AngledLuffa solved. I thought that for instantiating a new `Document` a list of `Sentence` objects was necessary.https://github.com/stanfordnlp/stanza/blob/f91ca215e175d4f7b202259fe789374db7829395/stanza/models/common/doc.py#L368 Instead, I saw that dumping in the JSON the `Document.to_dict()` and the `text`...
> There are no short term plans for making such a change, although if you keep this open, we'll eventually work on it. The most recent version at least uses...
Probably the best way would be: ```python import stanza nlp = stanza.Pipeline("multilingual", langid_model_path="model_stanza.pt") ``` am I right?
It works! Is there also easy way to extract the accuracy for each language? In order to have something like `{"en": 0.8, "de": 0.1, etc..}`
I've found this way to achieve this task. I wanted to arrive to `_model` output and have percentages that sum to 1 with a softmax layer. To do that I...
This is the full error log: ``` I1206 11:50:20.705792 140609273997120 ag_logging.py:139] Whitelisted: : name starts with "tensorflow" E1206 11:50:20.905941 140609273997120 error_handling.py:70] Error recorded from training_loop: slice index 1 of dimension...