Diego Palma

Results 7 comments of Diego Palma

I can help with this, but it might take me some time as I need to become familiar with the code :)

Hello! Sure, this should go into `src/ttr.py` file, as it is a TTR metric. Let me know if you have more questions!

Hello Bruce! Sure, I don't have a tight deadline, so your contribution is more than welcome! There are some differences in stanza pre-trained models compared to spacy ones, so maybe...

I mean, initially I wanted to completely replace spacy, but as you mentioned, spacy improved over time, so maybe removing all the spacy references will not be as good as...

I think to avoid the merge conflicts, you will need to set upstream the repo: `git remote add upstream [email protected]:dpalmasan/TRUNAJOD2.0.git` Then to fetch the commits (and branches) from the "upstream":...

Some decisions on this, probably it is best having other repo with the models and do something like spaCy does for its [spacy models](https://github.com/explosion/spacy-models), for example: * https://github.com/explosion/spaCy/blob/master/spacy/__init__.py * https://github.com/explosion/spaCy/blob/master/spacy/cli/_util.py...

Ohh that was the issue. I still had to make the script a package installed or add it to `PYTHONPATH` to make it work. But it worked. Docs are a...