Skip to content

Latest commit

 

History

History

ops-client-sdk

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Open Prediction Service Java Client SDK

This folder includes:

  • A ready to use Java API to invoke the OPS ML service,
  • The recipe to generate a new SDK with open-api-generator based on the OpenApi description of the Open Prediction Service.

Requirements

  • Java 8
  • maven

Build and install

# mvn clean install

Integration tests are run against a locally started OPS implementation listening on http://localhost:8080:

You can start it like this

> cd ../ops-implementation/sklearn-service
> docker build -t sklearn-service .
> docker run -p 8080:8080 sklearn-service