A HTTP & gRPC client for J.A.M.S - Just Another Model Server in Python
Project description
J.A.M.S Python Client
A HTTP & gRPC client for J.A.M.S - Just Another Model Server
Installation
pip install jamspy
Usage
Start J.A.M.S by following the instructions here
HTTP
from jamspy.client.http import Client
# init client
client = Client('0.0.0.0:3000')
# healthcheck
client.health_check()
# predict
model_name = "titanic_model"
model_input = json.dumps(
{
"pclass": ["1", "3"],
"sex": ["male", "female"],
"age": [22.0, 23.79929292929293],
"sibsp": [
"0",
"1",
],
"parch": ["0", "0"],
"fare": [151.55, 14.4542],
"embarked": ["S", "C"],
"class": ["First", "Third"],
"who": ["man", "woman"],
"adult_male": ["True", "False"],
"deck": ["Unknown", "Unknown"],
"embark_town": ["Southampton", "Cherbourg"],
"alone": ["True", "False"],
}
)
prediction = client..predict(model_name=model_name, model_input=model_input)
prediction.values # use predictions
# add model
client.add_model(model_name='tensorflow-my_awesome_penguin_model') # <MODEL FRAMEWORK>-<MODEL_NAME>
# update model
client.update_model(model_name='my_awesome_penguin_model')
# delete model
client.delete_model(model_name='my_awesome_penguin_model')
# get models
models = client.get_models()
print(models)
gRPC
from jamspy.client.grpc import Client
# init client
client = Client('0.0.0.0:4000')
# healthcheck
client.health_check()
# predict
model_name = "titanic_model"
model_input = json.dumps(
{
"pclass": ["1", "3"],
"sex": ["male", "female"],
"age": [22.0, 23.79929292929293],
"sibsp": [
"0",
"1",
],
"parch": ["0", "0"],
"fare": [151.55, 14.4542],
"embarked": ["S", "C"],
"class": ["First", "Third"],
"who": ["man", "woman"],
"adult_male": ["True", "False"],
"deck": ["Unknown", "Unknown"],
"embark_town": ["Southampton", "Cherbourg"],
"alone": ["True", "False"],
}
)
prediction = client..predict(model_name=model_name, model_input=model_input)
prediction.values # use predictions
# add model
client.add_model(model_name='tensorflow-my_awesome_penguin_model') # <MODEL FRAMEWORK>-<MODEL_NAME>
# update model
client.update_model(model_name='my_awesome_penguin_model')
# delete model
client.delete_model(model_name='my_awesome_penguin_model')
# get models
models = client.get_models()
print(models)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
jamspy-0.1.1.tar.gz
(13.2 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
jamspy-0.1.1-py3-none-any.whl
(15.8 kB
view details)
File details
Details for the file jamspy-0.1.1.tar.gz.
File metadata
- Download URL: jamspy-0.1.1.tar.gz
- Upload date:
- Size: 13.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5fb3c7f7576650ce3bcdd8a07a33075053b29bb5cfe067789676654a8ecd717c
|
|
| MD5 |
1e4a8e2cc32b3e731b1cb7b536f8f9b3
|
|
| BLAKE2b-256 |
acf815a842767306fbfd1e8327d2e34564ccb61e610db048f5fff330316123b3
|
File details
Details for the file jamspy-0.1.1-py3-none-any.whl.
File metadata
- Download URL: jamspy-0.1.1-py3-none-any.whl
- Upload date:
- Size: 15.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1517f2b748cea2070dad28405d316c6edc93c65893f93e0c5863e60a40028e1a
|
|
| MD5 |
72d15c4eaaf6e3a2bdc7b38577d057a7
|
|
| BLAKE2b-256 |
268b453d681b086c113759b7dc6d75a83c35c64e2959617904846c76d4e1f653
|