この [1]ポーター ステミング アルゴリズムの実装に関する質問と同様の質問? 、しかし拡大。
基本的に、step1b は次のように定義されます。
Step1b
`(m>0) EED -> EE feed -> feed agreed -> agree (*v*) ED -> plastered -> plaster bled -> bled (*v*) ING -> motoring -> motor sing -> sing `
私の質問は、なぜに feed
幹が feed
あり、幹がないの fe
ですか? 私がオンラインで試したすべてのオンラインの Porter Stemmer は に feed
幹を付けましたが、私が見たところ、それは に幹を付ける必要があり fe
ます。
私の考えは次のとおりです。
`feed` does not pass through `(m>0) EED -> EE` as measure of `feed` minus suffix `eed` is `m(f)`, hence `=0`
`feed` will pass through `(*v*) ED ->`, as there is a vowel in the stem `fe` once the suffix `ed` is removed. So will stem at this point to `fe`
オンラインの Porter Stemmers がどうやって feed
.
ありがとう。