
test = ["Les voitures autonomes déplacent la responsabilité de l'assurance vers les constructeurs"]
vectorizer_fr = KeyphraseCountVectorizer(spacy_pipeline='fr_dep_news_trf', pos_pattern='<N.*>+', stop_words ='french')
vectorizer_fr.fit(test)
It generates a valueError : Transformation generated invalid chunkstring:
<><><><><><><><><><><><>
This works with other languages, the problem is only with the french spacy models (whatever french model).
Can anyone help me solve this error, please ?
test = ["Les voitures autonomes déplacent la responsabilité de l'assurance vers les constructeurs"]
vectorizer_fr = KeyphraseCountVectorizer(spacy_pipeline='fr_dep_news_trf', pos_pattern='<N.*>+', stop_words ='french')
vectorizer_fr.fit(test)
It generates a valueError : Transformation generated invalid chunkstring:
<><><><><><><><><><><><>
This works with other languages, the problem is only with the french spacy models (whatever french model).
Can anyone help me solve this error, please ?