Commit 9ca4f00e authored by Alexandre Delanoë's avatar Alexandre Delanoë

[FIX] Ngrams Extraction

parent 9bdcbf15
...@@ -12,7 +12,7 @@ Multi-terms are ngrams where n > 1. ...@@ -12,7 +12,7 @@ Multi-terms are ngrams where n > 1.
-} -}
module Gargantext.Core.Text.Terms.Multi (multiterms, multiterms_rake, tokenTagsWith) module Gargantext.Core.Text.Terms.Multi (multiterms, multiterms_rake, tokenTagsWith, tokenTags)
where where
import Data.Text hiding (map, group, filter, concat) import Data.Text hiding (map, group, filter, concat)
......
...@@ -96,7 +96,8 @@ instance FromJSON POS where ...@@ -96,7 +96,8 @@ instance FromJSON POS where
pos "DT" = DT pos "DT" = DT
pos "DET" = DT pos "DET" = DT
pos "IN" = IN pos "IN" = IN
pos "JJ" = JJ pos "JJ" = JJ
pos "PROPN" = JJ
pos "JJR" = JJ pos "JJR" = JJ
pos "JJS" = JJ pos "JJS" = JJ
pos "NC" = NP pos "NC" = NP
......
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