Skip to main content

No project description provided

Project description

Remyx AI command-line client

Installation

To install the Remyx AI CLI in Python virtual environment, run:

pip install remyxai

Token authentication

Remyx AI API requires authentication token, which can be obtained on this page: https://engine.remyx.ai/account

Provide api key to the CLI through an environment variable REMYXAI_API_KEY.

export REMYXAI_API_KEY=<your-key-here>

Usage

Currently, the classify engine API is supported. Additional functionality for model management and user data is available.

Model

List all models:

  • cli command:
$ remyxai model list
  • python command:
from remyxai.api import list_models
print(list_models())

Delete a model by name:

  • cli command:
$ remyxai model delete --model_name=<your-model-name>
  • python command:
from remyxai.api import delete_model

model_name = "<your-model-name>"
print(delete_model(model_name))

Download and convert a model:

  • cli command:
# possible model formats are "blob", "onnx", or "tflite"
$ remyxai model download --model_name=<your-model-name> --model_format="onnx"
  • python command:
from remyxai.api import download_model 

model_name = "<your-model-name>"
model_format = "onnx"
print(download_model(model_name, model_format))

Tasks

Train an image classifier:

  • cli command:
$ remyxai classify --model_name=<your-model-name> --labels="comma,separated,labels" --model_size=<int between 1-5>
  • python command:
from remyxai.api import train_classifier

model_name = "<your-model-name>"
labels = ["comma", "separated", "labels"]
model_size = 1
print(train_classifier(model_name, labels, model_size))

User

Get user profile info:

  • cli command:
$ remyxai user profile
  • python command:
from remyxai.api import get_user_profile

print(get_user_profile())

Get user credit/subscription info:

  • cli command:
$ remyxai user credits
  • python command:
from remyxai.api import get_user_credits

print(get_user_credits())

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

remyxai-0.1.1.tar.gz (3.8 kB view hashes)

Uploaded Source

Built Distribution

remyxai-0.1.1-py3-none-any.whl (4.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page