更新时间:2022-06-30 GMT+08:00

topicrank算法

您可以使用GES提供的接口执行topicrank算法。示例代码如下:

public void topicrank(GraphClient graphClient) throws ApiException {
    TopicrankParameters topicrankParameters = new TopicrankParameters();
    topicrankParameters.setSources("Vivian");
 
    AlgorithmReq algorithmReq = new AlgorithmReq();
    algorithmReq.setAlgorithmName(AlgorithmNames.TOPICRANK);  // 算法名
    algorithmReq.setParameters(topicrankParameters);  // 算法参数
 
    // 根据输入参数执行指定算法
    AsyncAPIResp asyncAPIResp = graphClient.algorithmQuery(algorithmReq);
 
    // 根据算法执行任务id,查询任务执行状态
    QueryJobReq queryJobReq = new QueryJobReq();
    queryJobReq.setJobId(asyncAPIResp.getJobId());
    GesResponse gesResponse =  graphClient.queryAsyncTask(queryJobReq);
    System.out.println(gesResponse);
}