Documentation ¶
Index ¶
- Constants
- Variables
- func AnalyzerConstructor(config map[string]interface{}, cache *registry.Cache) (*analysis.Analyzer, error)
- func ArticlesTokenMapConstructor(config map[string]interface{}, cache *registry.Cache) (analysis.TokenMap, error)
- func ElisionFilterConstructor(config map[string]interface{}, cache *registry.Cache) (analysis.TokenFilter, error)
- func FrenchLightStemmerFilterConstructor(config map[string]interface{}, cache *registry.Cache) (analysis.TokenFilter, error)
- func FrenchMinimalStemmerFilterConstructor(config map[string]interface{}, cache *registry.Cache) (analysis.TokenFilter, error)
- func FrenchStemmerFilterConstructor(config map[string]interface{}, cache *registry.Cache) (analysis.TokenFilter, error)
- func StopTokenFilterConstructor(config map[string]interface{}, cache *registry.Cache) (analysis.TokenFilter, error)
- func TokenMapConstructor(config map[string]interface{}, cache *registry.Cache) (analysis.TokenMap, error)
- type FrenchLightStemmerFilter
- type FrenchMinimalStemmerFilter
- type FrenchStemmerFilter
Constants ¶
View Source
const AnalyzerName = "fr"
View Source
const ArticlesName = "articles_fr"
View Source
const ElisionName = "elision_fr"
View Source
const LightStemmerName = "stemmer_fr_light"
View Source
const MinimalStemmerName = "stemmer_fr_min"
View Source
const SnowballStemmerName = "stemmer_fr_snowball"
View Source
const StopName = "stop_fr"
Variables ¶
View Source
var FrenchArticles = []byte(`
l
m
t
qu
n
s
j
d
c
jusqu
quoiqu
lorsqu
puisqu
`)
View Source
var FrenchStopWords = []byte(` | From svn.tartarus.org/snowball/trunk/website/algorithms/french/stop.txt
| This file is distributed under the BSD License.
| See http://snowball.tartarus.org/license.php
| Also see http://www.opensource.org/licenses/bsd-license.html
| - Encoding was converted to UTF-8.
| - This notice was added.
|
| NOTE: To use this file with StopFilterFactory, you must specify format="snowball"
| A French stop word list. Comments begin with vertical bar. Each stop
| word is at the start of a line.
au | a + le
aux | a + les
avec | with
ce | this
ces | these
dans | with
de | of
des | de + les
du | de + le
elle | she
en | 'of them' etc
et | and
eux | them
il | he
je | I
la | the
le | the
leur | their
lui | him
ma | my (fem)
mais | but
me | me
même | same; as in moi-même (myself) etc
mes | me (pl)
moi | me
mon | my (masc)
ne | not
nos | our (pl)
notre | our
nous | we
on | one
ou | where
par | by
pas | not
pour | for
qu | que before vowel
que | that
qui | who
sa | his, her (fem)
se | oneself
ses | his (pl)
son | his, her (masc)
sur | on
ta | thy (fem)
te | thee
tes | thy (pl)
toi | thee
ton | thy (masc)
tu | thou
un | a
une | a
vos | your (pl)
votre | your
vous | you
| single letter forms
c | c'
d | d'
j | j'
l | l'
à | to, at
m | m'
n | n'
s | s'
t | t'
y | there
| forms of être (not including the infinitive):
été
étée
étées
étés
étant
suis
es
est
sommes
êtes
sont
serai
seras
sera
serons
serez
seront
serais
serait
serions
seriez
seraient
étais
était
étions
étiez
étaient
fus
fut
fûmes
fûtes
furent
sois
soit
soyons
soyez
soient
fusse
fusses
fût
fussions
fussiez
fussent
| forms of avoir (not including the infinitive):
ayant
eu
eue
eues
eus
ai
as
avons
avez
ont
aurai
auras
aura
aurons
aurez
auront
aurais
aurait
aurions
auriez
auraient
avais
avait
avions
aviez
avaient
eut
eûmes
eûtes
eurent
aie
aies
ait
ayons
ayez
aient
eusse
eusses
eût
eussions
eussiez
eussent
| Later additions (from Jean-Christophe Deschamps)
ceci | this
cela | that
celà | that
cet | this
cette | this
ici | here
ils | they
les | the (pl)
leurs | their (pl)
quel | which
quels | which
quelle | which
quelles | which
sans | without
soi | oneself
`)
Functions ¶
func AnalyzerConstructor ¶
func FrenchStemmerFilterConstructor ¶ added in v0.8.2
Types ¶
type FrenchLightStemmerFilter ¶
type FrenchLightStemmerFilter struct { }
func NewFrenchLightStemmerFilter ¶
func NewFrenchLightStemmerFilter() *FrenchLightStemmerFilter
func (*FrenchLightStemmerFilter) Filter ¶
func (s *FrenchLightStemmerFilter) Filter(input analysis.TokenStream) analysis.TokenStream
type FrenchMinimalStemmerFilter ¶
type FrenchMinimalStemmerFilter struct { }
func NewFrenchMinimalStemmerFilter ¶
func NewFrenchMinimalStemmerFilter() *FrenchMinimalStemmerFilter
func (*FrenchMinimalStemmerFilter) Filter ¶
func (s *FrenchMinimalStemmerFilter) Filter(input analysis.TokenStream) analysis.TokenStream
type FrenchStemmerFilter ¶ added in v0.8.2
type FrenchStemmerFilter struct { }
func NewFrenchStemmerFilter ¶ added in v0.8.2
func NewFrenchStemmerFilter() *FrenchStemmerFilter
func (*FrenchStemmerFilter) Filter ¶ added in v0.8.2
func (s *FrenchStemmerFilter) Filter(input analysis.TokenStream) analysis.TokenStream
Click to show internal directories.
Click to hide internal directories.