spacyr
spacyr copied to clipboard
R wrapper to spaCy NLP
I just downloaded spacyr 1.3.0 from CRAN. When running `install_spacy()`, I received the following error message: `Error in pyenv_bootstrap_windows() :`` Please install git and ensure it is on your PATH`...
Hi, Thanks for creating an R wrapper for spacy as it seems R is missing native NLP tools compared to python. I want to fix spelling errors of strings in...
Is there a way to expand NER in spacyr like there is in spacy using python ? I want spacy to recognize PERSONS but with their academic tilte (like Dr./Prof./M....
When using the transformers-based model `de_dep_news_trf` I get a huggingface/tokenizers warning message in the console: ``` huggingface/tokenizers: The current process just got forked, after parallelism has already been used. Disabling...
According to the [`spacy_install()` documentation](https://spacyr.quanteda.io/reference/spacy_install.html), one can provide a vector of multiple lang_models if you'd like multiple installed at once. But the code in `spacy_download_langmodel()` can't handle this case. This...
Dear All, I have followed the steps to set up a virtual env in R for spacy. https://www.rdocumentation.org/packages/spacyr/versions/1.3.0 However, at this step, Install spaCy language models, I am getting the...
The GitHub action is failing on the Windows and macOS runners (e.g., https://github.com/quanteda/spacyr/actions/runs/9132473287). I think the culprit is an additionally set virtual environment. From the Windows runner: ```bash ('C:/Users/runneradmin/AppData/Local/Temp/Rtmp6r0u57/working_dir/RtmpItEnOz/test-env162ced0b68/Scripts/python.exe') cannot...
The spaCy tokenizer splits hyphenated words by inserting a space before and after the hyphen. For example, "eye-opening" becomes "eye - opening". Is there a way to keep hyphenated words...