直接运行官网 词义相似度 demo ( https://cloud.baidu.com/doc/NLP/NLP-Java-SDK.html#.E8.AF.8D.E4.B9.89.E7.9B.B8.E4.BC.BC.E5.BA.A6 ),
报错 282004 ,提示信息 "error_msg": "invalid parameter(s)",
String word1 = "北京";
String word2 = "上海";
// 传入可选参数调用接口
HashMap options = new HashMap();
options.put("mode", 0);
// 词义相似度
JSONObject res = client.wordSimEmbedding(word1, word2, options);
System.out.println(res.toString(2));
收藏
点赞
0
个赞
请登录后评论
TOP
切换版块
注释掉// options.put("mode", 0);
就可以了,亲测可行
词义相似度这个, mode参数有点问题, 近期使用的话, 先屏蔽掉这个参数就行
options.put("mode", 0); 这一行注释掉. 应该就好了. 请试试.
和我一样诶