Aki Matsuo

Results 27 comments of Aki Matsuo

It seems that you forgot to load the package by `library(spacyr)`.

@fkrauer Thank you for the post. I am not sure what that means by `start` and `end`. Could you elaborate it a bit more? Or could you show us a...

I see. It's not implemented in `spacyr`, but you could do something like this. ```r library(spacyr) library(tidyverse) txt % mutate(end = start + nchar(token) - 1) ``` What the code...

@kbenoit is right about the pipeline sequence, but the workaround already exists in `spacyr`. This is the spaCy pipeline sequence: https://spacy.io/usage/processing-pipelines As you can see, `ner` depends on `perser` and...

You are absolutely right about it. We have not fully integrated `spacyr` tokenization into the `quanteda` workflow. A workaround at the moment is: 1. convert `spacy_tokenize()` outputs to `quanteda` token...

Although it's not our recommended solution, you can try installing it without spacyr. 1. Activate virtualenv 2. `pip install spacy` 3. `python -m spacy download en_core_web_sm` Let us know the...

Hello, The issue is the method you are trying to use is based on the older version of `spacyr`. In version 1.3.0, we updated the installation method using the standard...