File tree Expand file tree Collapse file tree 6 files changed +14
-4
lines changed
webapps/named-entity-recognition-spacy Expand file tree Collapse file tree 6 files changed +14
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## Version 1.3.4 - Feature release - 2021-12-31
4
+ - Add Japanese support
5
+
3
6
## Version 1.3.3 - Patch release - 2021-09-08
4
7
- Fixed gensism version to avoid api conflict with Flair package
Original file line number Diff line number Diff line change @@ -3,11 +3,12 @@ flair==0.6.1
3
3
gensim == 3.8.0
4
4
flask >= 1.0 ,< 1.1
5
5
tqdm == 4.50.0
6
- spacy == 2.3.2
6
+ spacy [ ja ] == 2.3.2
7
7
https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-2.3.1/en_core_web_sm-2.3.1.tar.gz
8
8
https://github.com/explosion/spacy-models/releases/download/es_core_news_sm-2.3.1/es_core_news_sm-2.3.1.tar.gz
9
9
https://github.com/explosion/spacy-models/releases/download/zh_core_web_sm-2.3.1/zh_core_web_sm-2.3.1.tar.gz
10
10
https://github.com/explosion/spacy-models/releases/download/pl_core_news_sm-2.3.0/pl_core_news_sm-2.3.0.tar.gz
11
11
https://github.com/explosion/spacy-models/releases/download/nb_core_news_sm-2.3.0/nb_core_news_sm-2.3.0.tar.gz
12
12
https://github.com/explosion/spacy-models/releases/download/fr_core_news_sm-2.3.0/fr_core_news_sm-2.3.0.tar.gz
13
- https://github.com/explosion/spacy-models/releases/download/de_core_news_sm-2.3.0/de_core_news_sm-2.3.0.tar.gz
13
+ https://github.com/explosion/spacy-models/releases/download/de_core_news_sm-2.3.0/de_core_news_sm-2.3.0.tar.gz
14
+ https://github.com/explosion/spacy-models/releases/download/ja_core_news_sm-2.3.0/ja_core_news_sm-2.3.0.tar.gz
Original file line number Diff line number Diff line change 75
75
"value" : " de" ,
76
76
"label" : " German"
77
77
},
78
+ {
79
+ "value" : " ja" ,
80
+ "label" : " Japanese"
81
+ },
78
82
{
79
83
"value" : " nb" ,
80
84
"label" : " Norwegian Bokmål"
142
146
"defaultValue" : false
143
147
}
144
148
]
145
- }
149
+ }
Original file line number Diff line number Diff line change 1
1
{
2
2
"id" : " named-entity-recognition" ,
3
- "version" : " 1.3.3 " ,
3
+ "version" : " 1.3.4 " ,
4
4
"meta" : {
5
5
"label" : " Named Entity Recognition" ,
6
6
"category" : " Natural Language Processing" ,
Original file line number Diff line number Diff line change 11
11
"pl" : "nb_core_news_sm" ,
12
12
"fr" : "fr_core_news_sm" ,
13
13
"de" : "de_core_news_sm" ,
14
+ "ja" : "ja_core_news_sm" ,
14
15
"nb" : "nb_core_news_sm" ,
15
16
}
16
17
Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ <h2>Input Text</h3>
29
29
< option selected value ="en "> English</ option >
30
30
< option value ="fr "> French</ option >
31
31
< option value ="de "> German</ option >
32
+ < option value ="ja "> Japanese</ option >
32
33
< option value ="nb "> Norwegian Bokmål</ option >
33
34
< option value ="pl "> Polish</ option >
34
35
< option value ="es "> Spanish</ option >
You can’t perform that action at this time.
0 commit comments