Step By Step
自学习平台使用
1.开通服务
参考链接:自学习平台服务开通
2.新建项目
- 录入项目名称等信息
3.数据标注
- 进入项目中会有已经标注的默认数据
- 手动创建标注任务并标注(以实体收取为例)
(1)创建任务上传数据
(2)添加实体名
(3)标注数据
4.模型训练
- 创建模型进行训练
- 完成训练发布模型
- 在线测试模型效果
5.Java SDK Code
package org.nlp.selflearn;
import com.aliyuncs.DefaultAcsClient;
import com.aliyuncs.IAcsClient;
import com.aliyuncs.exceptions.ClientException;
import com.aliyuncs.nlp_automl.model.v20191111.GetPredictResultRequest;
import com.aliyuncs.nlp_automl.model.v20191111.GetPredictResultResponse;
import com.aliyuncs.profile.DefaultProfile;
public class NlpAutomlTestApp {
public static void main(String[] args) throws ClientException {
DefaultProfile profile = DefaultProfile.getProfile(
"cn-hangzhou",
"ak",
"sk");
IAcsClient client = new DefaultAcsClient(profile);
GetPredictResultRequest request = new GetPredictResultRequest();
request.setModelId(11157);//模型id
request.setContent("这衣服上身效果挺好,孩子很喜欢,穿着也暖和,做工太好了,质量高,点个赞");
GetPredictResultResponse response = client.getAcsResponse(request);
System.out.println(response.getContent());
}
}