The gravity-ai.com helper package
Project description
Gravity-ai.com
This package includes helper scripts for interfacing your machine learning code with the Gravity-ai.com containerization code.
To install from pypi:
pip install gravityai
To install from source:
python3 setup.py install
Example Implementation Code
from gravityai import gravityai as grav
# the following function is a callback (defined by you), that may be
# async or synchronous and that may be called multiple times, to
# transform input data against an algorithm or model (or whatever you want)
# If an error is experienced, return an error string message, or throw an exception.
def process_data(dataPath, outPath):
# TODO:
# Read data in from dataPath
# Transform Data via model
# Write data out to outPath
# Return None if everything went ok.
# return an error string if there was a problem.
# TODO Initialize models, etc. before calling wait_for_requests.
grav.wait_for_requests(process_data)
Building a new Version
To build a new version for pypi (only we do that):
python3 -m pip install --user --upgrade setuptools wheel
python3 -m pip install --user --upgrade twine
python3 setup.py sdist bdist_wheel
python3 -m twine upload --repository pypi dist/*
Use the saved credentials, and remember the username is __token__
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
gravityai-0.1.3.tar.gz
(5.4 kB
view details)
File details
Details for the file gravityai-0.1.3.tar.gz.
File metadata
- Download URL: gravityai-0.1.3.tar.gz
- Upload date:
- Size: 5.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.5.0.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.7.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0e3e06c8526076bedf7fcfe2cc4b22f0971bc1a0aa89a458fe3886e7bfe88c6a
|
|
| MD5 |
b5d46df31c5be8a2ba8700d7263252a1
|
|
| BLAKE2b-256 |
b5d886413d25a5c1d327e106300acb18885b9591d01c72162cccce731b06e461
|