2 Module : Gargantext.Text.Terms.Mono
3 Description : Mono Terms module
4 Copyright : (c) CNRS, 2017 - present
5 License : AGPL + CECILL v3
6 Maintainer : team@gargantext.org
7 Stability : experimental
10 Mono-terms are Nterms where n == 1.
14 {-# LANGUAGE NoImplicitPrelude #-}
16 module Gargantext.Text.Terms.Mono (monoTerms, monoTexts, monoTextsBySentence, words)
19 import Prelude (String)
21 import Data.Text (Text)
22 import qualified Data.Text as T
24 import qualified Data.List as L
25 import qualified Data.Set as S
27 import Gargantext.Core
28 import Gargantext.Core.Types
29 import Gargantext.Text.Terms.Mono.Stem (stem)
31 import Gargantext.Prelude
32 --import Data.Char (isAlphaNum, isSpace)
34 -- | TODO remove Num ?
35 --isGram c = isAlphaNum c
37 words :: Text -> [Text]
40 -- | Sentence split separators
42 isSep = (`elem` (",.:;?!(){}[]\"\'" :: String))
44 monoTerms :: Lang -> Text -> [Terms]
45 monoTerms l txt = map (monoText2term l) $ monoTexts txt
47 monoTexts :: Text -> [Text]
48 monoTexts = L.concat . monoTextsBySentence
50 monoText2term :: Lang -> Text -> Terms
51 monoText2term lang txt = Terms [txt] (S.singleton $ stem lang txt)
53 monoTextsBySentence :: Text -> [[Text]]
54 monoTextsBySentence = map T.words