-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
modu_written.md 영문 번역 반영 #156
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
c3011ba
question_pair translation completed
hank110 4e616f2
open_subtitles.md translated
hank110 d863038
typo in open_subtitles.md filename resolved
hank110 95e3dd6
typo edited
hank110 2e9e6f7
nsmc translsated
hank110 095c3fa
NER english md completed
hank110 fc72b78
namuwikitext translation completed
hank110 9941eaf
modu: written translation completed
hank110 610106b
modu: written typo fixed
hank110 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,49 @@ sort: 19 | |
|
||
# Modu: Written | ||
|
||
TBD | ||
Modu: Written is a dataset released by National Institute of Korean Language. | ||
Data specification is as follows. | ||
|
||
- author: National Institute of Korean Language | ||
- repository: [https://corpus.korean.go.kr](https://corpus.korean.go.kr) | ||
- references: [document](https://rlkujwkk7.toastcdn.net/NIKL_WRITTEN(v1.0).pdf) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 모두의 말뭉치 안내문의 주소를 직접 입력하면 |
||
- size: | ||
- train: 20,188 examples | ||
|
||
```warning | ||
Due to the licensing issue of Modu corpus, `Korpora` does not provide any download functions for this corpus. Rather, it only offers a load function. | ||
If you wish to use this corpus, please complete the authentication process required by the National Institue of Korean Language and manually download the corpus. | ||
``` | ||
|
||
You can load the corpus from your Python console as follows. | ||
|
||
```python | ||
from Korpora import Korpora | ||
corpus = Korpora.load("modu_written") | ||
``` | ||
|
||
```warning | ||
The code assumes that the corpus has already been unzipped into NIKL_WRITTEN directory within `~/Korpora` (`~/Korpora/NIKL_WRITTEN`). | ||
If the root directory is not `~/Korpora`, add `root_dir=custom_path` argument to the `load` method. | ||
``` | ||
|
||
You can also load the corpus as follows. | ||
The output of these codes is identical to that of previous codes. | ||
|
||
```python | ||
from Korpora import ModuWrittenKorpus | ||
corpus = ModuWrittenKorpus() | ||
``` | ||
|
||
```warning | ||
The codes assumes that the corpus has already been unzipped into `~/Korpora/NIKL_WRITTEN` within the current user's local root. | ||
If the corpus exists in another directory, add `root_dir_or_paths=custom_path` argument in `ModuWrittenKorpus` class declaration. | ||
``` | ||
|
||
If you use either one of these previous examples, you can load the corpus into the variable `corpus`. | ||
`train` refers to the training dataset of the corpus, and you can check its first training instance as follows. | ||
|
||
``` | ||
>>> corpus.train[0] | ||
01범보다 무서운 곶감 | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
이 내용까지 확인하였습니다. 수정 감사합니다 @hank110
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
이와 관련된 이슈를 #165 에 남겼습니다. 이후 수정을 위한 인덱싱 용으로 커멘트를 남깁니다.