Commit 24a8f3be authored by Alexandre Delanoë's avatar Alexandre Delanoë

[FIX] Spacy bug if string is empty

parent 67554958
......@@ -55,7 +55,11 @@ tokenTag2terms (TokenTag ws t _ _) = Terms ws t
tokenTags :: Lang -> Text -> IO [[TokenTag]]
tokenTags EN txt = tokenTagsWith EN txt corenlp
tokenTags FR txt = tokenTagsWith FR txt SpacyNLP.nlp
tokenTags FR txt = do
-- printDebug "[Spacy Debug]" txt
if txt == ""
then pure [[]]
else tokenTagsWith FR txt SpacyNLP.nlp
tokenTags l _ = panic $ "[G.C.T.T.Multi] Lang NLP API not implemented yet " <> (cs $ show l)
tokenTagsWith :: Lang -> Text -> NLP_API -> IO [[TokenTag]]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment