Skip to content

tokenizerPath추가. #90

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

Merged
merged 1 commit into from
Jul 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion source/entryjs/api/2024-04-24-ml.md
Original file line number Diff line number Diff line change
Expand Up @@ -183,9 +183,10 @@ learningPopup.remove();
| model | String | ✔️ | Popup | undefined | '현재 작품에 적용'된 모델의 id.<br />값이 없을경우 신규 모델을 생성합니다. |
| title | String | | Predict | | 팝업의 상단에 노출될 타이틀값입니다. |
| predictInfo | Object : { type, predict, recordTime } | | Predict | | 학습된 모델의 예측에 관한 정보를 포함하는 객체입니다. |
| project | Object | ✔️ | Popup | undefined | 작품 프로젝트 정보입니다. |
| project | String | ✔️ | Popup | undefined | 현재 작품 프로젝트의 id입니다. |
| tables | Array< Object > | ✔️ | Popup | undefined | 학습에 사용할 테이블 데이터입니다.<br />일부 모델에서는 사용하지 않습니다. |
| availables | Array< string > | ✔️ | Popup | undefined | 생성 가능한 모델종류를 제한합니다.<br />값이 없을경우 모든 종류의 모델을 제공합니다. |
| tokenizerPath| String | ✔️ | Popup | '/lib/entry-ml/dist/resources' | '분류:텍스트'학습하기에서 사용되는 형태소 분석 모듈의 경로입니다. '파일경로/resources' 경로에 해당 파일이 있습니다. |

<br>

Expand Down Expand Up @@ -240,6 +241,7 @@ this.learningPopup = new Popup({
},
data: {
tables,
tokenizerPath: '[entry-ml 파일경로]/resources',
},
})
```
Expand Down