1

我刚刚开始使用 clarifai 进行图像分析,但实际上我无法将作为列表获得的输出转换为 Json。该列表不是正常的列表,我尝试了正常的 Gson().toJson 但没有任何效果。我的请求代码是:

 final PredictRequest<Concept> predictionResults = client.getDefaultModels().generalModel().predict().withInputs(ClarifaiInput.forImage("image url here"));

        List<ClarifaiOutput<Concept>> result = predictionResults.executeSync().get();
        result.get(0);

任何人都可以建议一些东西....

4

1 回答 1

2

来自 Clarifai 的 Eddie。

response.rawBody()您可以使用( source )将原始 JSON 作为字符串获取,但应该能够从列表中的对象中获取所需的一切。还有其他应该支持的吗?

于 2017-11-18T18:25:13.010 回答