問題タブ [spacy-transformers]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
nlp - How to initialize tok2vec Transformer with a custom spacy ner model
I have some trouble with the initialization of a tok2vec Transformer with a custom spacy ner model. How do I use tok2vec properly before the ner step starts in the pipeline?
Init:
#xA;Training:
#xA;spacy-3 - トレーニング後にスペイシーのエンティティ リンク知識ベースを更新できますか?
Entity Linking モデルのトレーニングに成功し、問題なく動作しているとしましょう。しかし、最終的には、ナレッジ ベースのいくつかのエイリアスを更新する予定です。説明や新しいエンティティではなく、いくつかのエイリアスです。
私は、スペイシーがそうする方法を持っていることを知っています: kb.add_alias(alias="Emerson", entities=qids, probabilities=probs)
. しかし、トレーニング プロセスの後にそれを行う必要がある場合はどうすればよいでしょうか? すべてを再実行する必要がありますか、それとも KB を更新しますか?