Detail

MNIST Digit Classifier

ryan_globusid/mnist_tiny_example
Copy
Keras Model
Deep NN
general digit recognition

Input

Image of a digit
Type: ndarray
Shape: ['None', '28', '28', '1']

Output

Probabilities of being 0-9
Type: ndarray
Shape: ['None', '10']

Run with DLHub SDK

from dlhub_sdk.client import DLHubClient
X = get_my_data() #replace this
dl = DLHubClient()
dl.run('ryan_globusid/mnist_tiny_example', X)

Get More Info with DLHub SDK

from dlhub_sdk.client import DLHubClient
dl = DLHubClient()
dl.describe_servable('ryan_globusid/mnist_tiny_example')

DLHub SDK Installation

pip install dlhub_sdk

DLHub SDK documentation