diff --git a/source/entryjs/api/2024-04-24-ml.md b/source/entryjs/api/2024-04-24-ml.md index 16fe4a0e..9f1f6a70 100644 --- a/source/entryjs/api/2024-04-24-ml.md +++ b/source/entryjs/api/2024-04-24-ml.md @@ -183,9 +183,10 @@ learningPopup.remove(); | model | String | ✔️ | Popup | undefined | '현재 작품에 적용'된 모델의 id.
값이 없을경우 신규 모델을 생성합니다. | | title | String | | Predict | | 팝업의 상단에 노출될 타이틀값입니다. | | predictInfo | Object : { type, predict, recordTime } | | Predict | | 학습된 모델의 예측에 관한 정보를 포함하는 객체입니다. | -| project | Object | ✔️ | Popup | undefined | 작품 프로젝트 정보입니다. | +| project | String | ✔️ | Popup | undefined | 현재 작품 프로젝트의 id입니다. | | tables | Array< Object > | ✔️ | Popup | undefined | 학습에 사용할 테이블 데이터입니다.
일부 모델에서는 사용하지 않습니다. | | availables | Array< string > | ✔️ | Popup | undefined | 생성 가능한 모델종류를 제한합니다.
값이 없을경우 모든 종류의 모델을 제공합니다. | +| tokenizerPath| String | ✔️ | Popup | '/lib/entry-ml/dist/resources' | '분류:텍스트'학습하기에서 사용되는 형태소 분석 모듈의 경로입니다. '파일경로/resources' 경로에 해당 파일이 있습니다. |
@@ -240,6 +241,7 @@ this.learningPopup = new Popup({ }, data: { tables, + tokenizerPath: '[entry-ml 파일경로]/resources', }, }) ```