1

この [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.

ありがとう。

4

4 に答える 4

0

フィードでは、m は母音、子音のペアを指します。そのようなペアはありません。

しかし、合意された「VC」はagです。したがって、同意に置き換えられます。条件は m>0 です。

ここで m=0 です。

于 2020-05-27T11:27:38.770 に答える