Change CNN window size in entity recognizer #9383
-
The below links are not working. I would like to increase the CNN window size from 4 to 6 in entity recognizer in spacy v2 (2.2.4). Also, It would be great if you could document the working of Spacy entity recognizer in detail.
Originally posted by @honnibal in #1532 (comment) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
That answer is from Nov 2017, four years ago, just after the release of v2.0. The links go to the master branch without any particular commit, so they don't work because those files are gone. You can use them as a starting point to find the relevant code by going back in the history if you want. In v3 the window size is exposed as a config parameter and easy to change if you want.
We are working on documenting internals more, and I don't think the EntityRecognizer has changed that much since v2.2, but I don't think we're interested in going back and providing rich documentation for previous versions now that v3 has been out for a while. |
Beta Was this translation helpful? Give feedback.
That answer is from Nov 2017, four years ago, just after the release of v2.0. The links go to the master branch without any particular commit, so they don't work because those files are gone. You can use them as a starting point to find the relevant code by going back in the history if you want.
In v3 the window size is exposed as a config parameter and easy to change if you want.
We are working on documenting internals more, and I don't think the EntityRecognizer has changed that much since v2.2, but I don't think we're interested in going back and providing rich documentation for previous v…