Skip to content

Latest commit

 

History

History
99 lines (75 loc) · 4.1 KB

README.md

File metadata and controls

99 lines (75 loc) · 4.1 KB

Kubeflow Katib SDK

Python SDK for Kubeflow Katib

Requirements.

Python 2.7 and 3.4+

Installation & Usage

pip install

pip install kubeflow-katib

Then import package:

from kubeflow import katib

Setuptools

Install via Setuptools.

python setup.py install --user

(or sudo python setup.py install to install the package for all users)

Getting Started

Please follow the samples to create, update, delete and get hyperparamaters of Katib Experiment.

Documentation for API Endpoints

Class Method Description
KatibClient create_experiment Create Katib Experiment
KatibClient get_experiment Get or watch the specified Experiment or all Experiment in the namespace
KatibClient delete_experiment Delete specified Experiment
KatibClient list_experiments List all Experiments with status
KatibClient get_experiment_status Get Experiment status
KatibClient is_experiment_succeeded Check if Experiment status is Succeeded
KatibClient list_trials List all trials of specified Experiment
KatibClient get_optimal_hyperparmeters Get currentOptimalTrial with paramaterAssignments of an Experiment

Documentation For Models

Documentation For Authorization

All endpoints do not require authorization.

Author

prem0912