horizon-py

DeepHorizon API Client


License
MIT
Install
pip install horizon-py==0.1.1

Documentation

Python DeepHorizon API Client

Requirements

  • Python >= 2.7

Installation

Via pip

$ pip install horizon_py

Usage

Client Configuration

from horizon_py import DeepHorizon

dh_client = DeepHorizon(
  app_token='<YOUR_APP_TOKEN>',
  app_secret='<YOUR_APP_SECRET>'
)

If not provided upon client instantiation, app_token and app_secret will be set to the following environment variables, respectively:

DEEP_HORIZON_TOKEN
DEEP_HORIZON_SECRET

Fetching Predictions

Getting a prediction via the client can be done safely in the following manner:

# dict of input features required to make a prediction with your model
features = {
  'some_feature': 'some_value'
}

resp = dh_client.predict(features)

if resp.get('ok'):
  prediction = resp['prediction']
  print('Got Prediction: {}'.format(prediction))
else:
  err = resp['error']
  print('Prediction Error: {}'.format(err))

The response payload for fetching predictions is represented by the following JSON format:

{
  "ok": True,
  "prediction": "<some_prediction>"
}

If an error is encountered, the format will look like this instead:

{
  "ok": False,
  "error": "<error_name>"
}

Errors

The following errors may be returned while fetching a prediction:

Name Description
not_authorized API request has invalid authorization. Ensure app token and app secret are valid.
no_features_provided predict request had no provided features to make prediction with.
prediction_error DeepHorizon encountered error while making prediction for provided features. Ensure all required features were provided during request.
unknown_error Unknown error response from API. Response not in expected format.

License

MIT