更新时间:2022-12-08 GMT+08:00

Label_propagation算法

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

public static void executeAlgorithm(GraphClient graphClient) throws ApiException
{
 AlgorithmReq req = new AlgorithmReq();
 req.setAlgorithmName(AlgorithmNames.LABEL_PROPAGATION);

 AsyncAPIResp asyncAPIResp = graphClient.algorithmQuery(req);
 String jobId = asyncAPIResp.getJobId();
 LabelPropagationJobReq req1 = new LabelPropagationJobReq();
 req1.setJobId(jobId);
 System.out.println(graphClient.queryJobStatus(req1));
}