com.aliyun.openservices.eas.predict.response.TFResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eas-sdk Show documentation
Show all versions of eas-sdk Show documentation
SDK for PAI-EAS online inference services
package com.aliyun.openservices.eas.predict.response;
import com.aliyun.openservices.eas.predict.proto.PredictProtos.ArrayProto;
import com.aliyun.openservices.eas.predict.proto.PredictProtos.PredictResponse;
import shade.protobuf.ByteString;
import shade.protobuf.InvalidProtocolBufferException;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
/**
* Created by yaozheng.wyz on 2017/10/24.
*/
public class TFResponse {
private static Log log = LogFactory.getLog(TFResponse.class);
private PredictResponse response = null;
private String prefix = "";
public void setContentValues(byte[] content) {
try {
response = PredictResponse.parseFrom(content);
} catch (InvalidProtocolBufferException e) {
e.printStackTrace();
} catch (NullPointerException e) {
e.printStackTrace();
}
}
public void setPrefix(String value) {
this.prefix = value;
}
private String getOutputName(String name) {
String output;
if (prefix.isEmpty()) {
output = name;
} else if (prefix.endsWith("/")) {
output = prefix + name;
} else {
output = prefix + "/" + name;
}
return output;
}
public Map getOutputsMap() {
return response.getOutputsMap();
}
public List getTensorShape(String outputName) {
String output = getOutputName(outputName);
if (response != null) {
if (!response.containsOutputs(output)) {
log.error("Not Found output name: " + output);
throw new RuntimeException("Not Found output name: " + output);
}
ArrayProto responseProto = getOutputsMap().get(output);
return responseProto.getArrayShape().getDimList();
} else {
log.error("request failed: can't get response");
return new ArrayList();
}
}
public List getFloatVals(String outputName) {
String output = getOutputName(outputName);
if (response != null) {
if (!response.containsOutputs(output)) {
log.error("Not Found output name : " + output);
throw new RuntimeException("Not Found output name : " + output);
}
ArrayProto responseProto = getOutputsMap().get(output);
return responseProto.getFloatValList();
} else {
log.error("request failed: can't get response");
return new ArrayList();
}
}
public List getDoubleVals(String outputName) {
String output = getOutputName(outputName);
if (response != null) {
if (!response.containsOutputs(output)) {
log.error("Not Found output name : " + output);
throw new RuntimeException("Not Found output name : " + output);
}
ArrayProto responseProto = getOutputsMap().get(output);
return responseProto.getDoubleValList();
} else {
log.error("request failed: can't get response");
return new ArrayList();
}
}
public List getIntVals(String outputName) {
String output = getOutputName(outputName);
if (response != null) {
if (!response.containsOutputs(output)) {
log.error("Not Found output name : " + output);
throw new RuntimeException("Not Found output name : " + output);
}
ArrayProto responseProto = getOutputsMap().get(output);
return responseProto.getIntValList();
} else {
log.error("request failed: can't get response");
return new ArrayList();
}
}
public List getStringVals(String outputName) {
String output = getOutputName(outputName);
if (response != null) {
if (!response.containsOutputs(output)) {
log.error("Not Found output name : " + output);
throw new RuntimeException("Not Found output name : " + output);
}
ArrayProto responseProto = getOutputsMap().get(output);
List res = responseProto.getStringValList();
List result = new ArrayList();
for (int i = 0; i < res.size(); i++) {
result.add(res.get(i).toStringUtf8());
}
return result;
} else {
log.error("request failed: can't get response");
return new ArrayList();
}
}
public List getInt64Vals(String outputName) {
String output = getOutputName(outputName);
if (response != null) {
if (!response.containsOutputs(output)) {
log.error("Not Found output name : " + output);
throw new RuntimeException("Not Found output name : " + output);
}
ArrayProto responseProto = getOutputsMap().get(output);
return responseProto.getInt64ValList();
} else {
log.error("request failed: can't get response");
return new ArrayList();
}
}
public List getBoolVals(String outputName) {
String output = getOutputName(outputName);
if (response != null) {
if (!response.containsOutputs(output)) {
log.error("Not Found output name : " + output);
throw new RuntimeException("Not Found output name : " + output);
}
ArrayProto responseProto = getOutputsMap().get(output);
return responseProto.getBoolValList();
} else {
log.error("request failed: can't get response");
return new ArrayList();
}
}
}