Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
CRF ++テンプレートファイルのbag-of-words機能の構文は何ですか?
テンプレートの例:
#Unigrams U00:%x[0,0] U01:%x[0,1] U02:%x[1,0] #Bigrams B
私はそれがこのようだと思います:
#Unigrams U00:%x[0,0] U00:%x[0,1] U00:%x[1,0] #Bigrams B
同じ識別子を使用しています。
bag-of-words の構文は次のようになります。
#Unigrams U00:%x[0,0]/%x[0,1]/%x[1,0] #Bigrams B
bag-of-words の CoNLL 2000 のテンプレートを使用した CRF++ の記述