我是 IBM Watson 的新手。有人可以指导我如何使用 Bluemix 在 Java 中调用 Alchemy 吗?指导我了解所有 Maven 依赖项。
1 回答
这很简单
第 1 步:在 bluemix 中使用样板“Java DB Web Starter”创建一个项目。确保您的应用程序名称是唯一的,并首先检查您是否有足够的可用内存 (512 MB)
第 2 步:在应用程序的 Overview 页面上,单击 Add Git Repo and Pipeline,或者在 Bluemix Classic Experience 中,单击 ADD GIT。它将为您的项目代码生成一个 GIT URL。生成的项目代码已经使用 maven,当您提交新代码时,Bluemix 将自动部署它。
第三步:使用eclipse克隆GIT仓库,打开项目pom.xml,像这样添加“java-sdk”和“commons-io”依赖
<dependency>
<groupId>com.ibm.watson.developer_cloud</groupId>
<artifactId>java-sdk</artifactId>
<version>2.8.0</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
</dependency>
这将在您的 Eclipse 项目中触发 maven,它将开始下载大约 30 MB 的库。如果你以前没有这样做过,去喝杯咖啡吧。下载并解决所有依赖项大约需要 5 分钟。
第 4 步:向您的 Bluemix 项目(使用 Bluemix Web UI)添加一个 Alchemy 组件。这会将 Alchemy API 凭证添加到您的 Bluemix App VCAP_SERVICES 系统变量。
第5步:在eclipse中,添加这样的代码
package qi.watson;
import java.io.File;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
import org.apache.commons.io.FileUtils;
import com.ibm.watson.developer_cloud.alchemy.v1.AlchemyLanguage;
import com.ibm.watson.developer_cloud.alchemy.v1.model.DocumentSentiment;
import com.ibm.watson.developer_cloud.util.CredentialUtils;
public class AlchemyAPI {
private AlchemyLanguage al = new AlchemyLanguage();
public AlchemyAPI() throws IOException{
String env = System.getenv("VCAP_SERVICES");
if (env == null){
env = FileUtils.readFileToString(new File("/home/leoks/git/qi/qi.json"));
}
CredentialUtils.setServices(env);
al.setApiKey(CredentialUtils.getAPIKey("alchemy_api"));
}
public static void main(String[] args) throws IOException, InterruptedException {
AlchemyAPI api = new AlchemyAPI();
Map<String, Object> params = new HashMap<String, Object>();
params.put(AlchemyLanguage.TEXT, "All work and no play makes Jack a dull boy");
DocumentSentiment sentiment = api.al.getSentiment(params);
System.out.println(sentiment.getSentiment().getScore());
System.out.println(sentiment.getSentiment().getType());
}
}
第 6 步:在 Bluemix Web UI 中,单击您的应用程序并在左侧菜单中找到“环境变量”部分。例如,从 VCAP_SERVICES 复制内容并粘贴到名为 /home/leoks/git/qi/qi.json 的 eclipse 项目中的本地文本文件中(当然,您可以更改它)
请注意,激活 Alchemy API 可能需要几分钟时间,而且您在 Bluemix 中只能有 1 个 Alchemy API 模块。
有关 Watson API Java Wrapper 的更多信息,请查看此链接 -- https://github.com/watson-developer-cloud/java-sdk