Skip to content

Commit

Permalink
Add Spacy with STTS bindings to annotation assistant
Browse files Browse the repository at this point in the history
Change-Id: I7776acbc1c9c607a77edbecd92ea1437b521a4cf
  • Loading branch information
Akron committed Jul 18, 2024
1 parent 2db881c commit 20903f3
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
- Improve test suite for slim images. (diewald)
- Add pages to references in snippet view. (diewald)
- Added category to Piwik calls. (diewald)
- Add SpaCy with STTS to annotation assistant. (diewald)

0.54 2024-06-10
- Remove deprecated 'matchInfo' API path. (diewald, margaretha)
Expand Down
13 changes: 13 additions & 0 deletions dev/js/src/hint/foundries/spacy-stts.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
define(["hint/foundries", "hint/foundries/stts"], function (ah, sttsArray) {
ah["-"].push(
["spaCy", "spacy/", "Lemma, Part-of-Speech"]
);

ah["spacy/"] = [
["Lemma", "l="],
["Part-of-Speech", "p="]
];

ah["spacy/p="] = sttsArray;

});

0 comments on commit 20903f3

Please sign in to comment.