Custom API (Deprecated)
Quick Start
String path = "/path/to/the/file.ext";
LocalInputSource inputSource = new LocalInputSource(path);
CustomEndpoint myEndpoint = new CustomEndpoint(
"wnine",
"john",
// "1.1" // optional
);
MindeeClient mindeeClient = new MindeeClient(apiKey);
PredictResponse<CustomV1> response = mindeeClient
.parse(inputSource, myEndpoint);
// Print a summary of the response
System.out.println(response.toString());The CustomV1 Object
CustomV1 ObjectDocument-Level Predictions
Page-Level Predictions
Last updated
Was this helpful?

