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

[FIX] Spacy bug if string is empty

parent 67554958
......@@ -5,7 +5,7 @@ cabal-version: 1.12
-- see: https://github.com/sol/hpack
name: gargantext
version: 0.0.6.8.5.6
version: 0.0.6.8.5.6
synopsis: Search, map, share
description: Please see README.md
category: Data
......
......@@ -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