The RemyxAI CLI provides commands to interact with the RemyxAI platform for model management, deployment, and evaluation.

CLI Commands

list_models

Lists all your trained models.

Usage:

remyxai-cli list_models

Description:

  • Lists the models available for interaction.

Example:

remyxai-cli list_models

summarize_model [model_name]

Retrieves a summary for the specified model.

Usage:

remyxai-cli summarize_model [model_name]

Arguments:

  • model_name: The name of the model to summarize.

Description:

  • Provides detailed summary information for the specified model.

Example:

remyxai-cli summarize_model text_generation_model

evaluate_myxboard [models] [tasks]

Evaluates models using specified tasks on the MyxBoard.

Usage:

remyxai-cli evaluate_myxboard [models] [tasks]

Arguments:

  • models: The list of model names to evaluate.
  • tasks: The evaluation tasks to perform on the models.

Description:

  • Runs the specified evaluation tasks on the provided models using the MyxBoard.

Example:

remyxai-cli evaluate_myxboard model1 model2 task1 task2

deploy_model [model_name] [action]

Deploys or tears down a model using Docker.

Usage:

remyxai-cli deploy_model [model_name] [action]

Arguments:

  • model_name: The name of the model to deploy or tear down.
  • action: The action to perform: "up" for deploying, "down" for tearing down.

Description:

  • Deploys a model to a Triton Inference Server using Docker, or tears down the model.

Example:

# To deploy the model
remyxai-cli deploy_model text_generation_model up

# To tear down the model
remyxai-cli deploy_model text_generation_model down

dataset [action] [dataset_name]

Manage datasets.

Usage:

remyxai-cli dataset [action] [dataset_name]

Arguments:

  • action: The action to perform: "list" for listing datasets, "delete" for deleting a dataset, "download" for downloading a dataset.
  • dataset_name: The name of the dataset to manage. Only required for the "delete" and "download" actions.

Description:

  • Lists, deletes, or downloads a dataset.

Example:

# To list all datasets
remyxai-cli dataset list

# To delete a dataset
remyxai-cli dataset delete my_dataset

# To download a dataset
remyxai-cli dataset download my_dataset