Derek Miller
Derek Miller
Is docker verified to be running on your machine?
I'll take a look
I could look at enforcing unicode, but if you have a non-unicode item, it may cause issues.
Will take a look at implementing it.
Looks to be a current common issue with Spacy, especially with max length not working. I may look at adding docs for multi-lines with spacy that might resolve this issue.
The tokenizer works by automatically splitting sentences based on punctuation. I am guessing the spacy sees the abbreviation, and wrongfully treats it as a sentence. You will probably need to...
Hello Shuntera, I would verify that the module is correct. We frequently get issues around wrong imports of the summarizer (there is another package that also has a package summarize).
Note the two errors above are different than the original message. The errors above are related to the transformers package. What version of transformers are you running?
Do you get the same error if you run TransformerSummarizer? As in: ``` from summarizer import TransformerSummarizer ``` If this throws an import error, then it is likely that another...
You definitely don't want to pip install summarize. That is a different library, and it is overriding the bert-extractive-summarizer library. If `from summarizer import TransformerSummarizer` that means that you have...