Skip to content

Commit 1753eac

Browse files
Merge pull request #188 from megagonlabs/develop
Release v5.0.2
2 parents 8b10169 + aa14b66 commit 1753eac

File tree

5 files changed

+14
-4
lines changed

5 files changed

+14
-4
lines changed

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,11 @@ Please read the official documents to compile user dictionaries with `sudachipy`
221221

222222
### version 5.x
223223

224+
#### ginza-5.0.2
225+
- 2021-09-06
226+
- Bug fix
227+
- `Command Line -s option and set_split_mode() not working in v5.0.x` #185
228+
224229
#### ginza-5.0.1
225230
- 2021-08-26
226231
- Bug fix

docs/bunsetu_api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,5 +77,5 @@ for frame, count in sorted(frames.items(), key=lambda t: -t[1]):
7777

7878
詳細な解説はこちらの記事をご覧ください。
7979

80-
- [GiNZA version 4.0: 多言語依存構造解析技術への文節APIの統合 - Megagon Labs Blog](https://www.megagon.ai/jp/blog/ginza-version-4.0-integrating-bunsetu-api-into-multilingual-structural-analysis-technology/)
80+
- [GiNZA version 4.0: 多言語依存構造解析技術への文節APIの統合 - Megagon Labs Blog](https://www.megagon.ai/jp/blog/ginza-version-4-0/)
8181
- [GiNZA - Universal Dependenciesによる実用的日本語解析 - 自然言語処理 Volume 27 Number 3](https://www.jstage.jst.go.jp/article/jnlp/27/3/27_695/_article/-char/ja/)

docs/index.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ for sent in doc.sents:
158158
### 解説記事
159159

160160
- [GiNZA Version 4.0: Improving Syntactic Structure Analysis Through Japanese Bunsetsu-Phrase Extraction API Integration](https://megagon.ai/blog/ginza-version-4-0-improving-syntactic-structure-analysis-through-japanese-bunsetsu-phrase-extraction-api-integration/) - Megagon Labs Blog (2021.03)
161-
- [GiNZA version 4.0: 多言語依存構造解析技術への文節APIの統合](https://www.megagon.ai/jp/blog/ginza-version-4.0-integrating-bunsetu-api-into-multilingual-structural-analysis-technology/) - Megagon Labs Blog (2020.09)
161+
- [GiNZA version 4.0: 多言語依存構造解析技術への文節APIの統合](https://www.megagon.ai/jp/blog/ginza-version-4-0/) - Megagon Labs Blog (2020.09)
162162
- [GiNZA: 日本語自然言語処理オープンソースライブラリ](https://www.megagon.ai/jp/projects/ginza-install-a-japanese-nlp-library-in-one-step/) - Megagon Labs (2019)
163163

164164
## ライセンス
@@ -225,6 +225,11 @@ Contains information from mC4 which is made available under the ODC Attribution
225225

226226
### version 5.x
227227

228+
#### ginza-5.0.2
229+
- 2021-09-06
230+
- Bug fix
231+
- `Command Line -s option and set_split_mode() not working in v5.0.x` #185
232+
228233
#### ginza-5.0.1
229234
- 2021-08-26
230235
- Bug fix

ginza/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def force_using_normalized_form_as_lemma(force: bool):
109109

110110

111111
def set_split_mode(nlp: Language, mode: str):
112-
splitter = nlp.get_pipe("CompoundSplitter")
112+
splitter = nlp.get_pipe("compound_splitter")
113113
splitter.split_mode = mode
114114

115115

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@
2626
name="ginza",
2727
packages=find_packages(include=["ginza"]),
2828
url="https://github.com/megagonlabs/ginza",
29-
version='5.0.1',
29+
version='5.0.2',
3030
)

0 commit comments

Comments
 (0)