Metadata-Version: 2.1
Name: vessl
Version: 0.1.99
Summary: A library and CLI for VESSL
Home-page: UNKNOWN
Author: VESSL AI Dev Team
Author-email: contact@vessl.ai
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Provides-Extra: media
License-File: LICENSE

# `vessl-python-sdk`

## Basic usage

```python
import vessl

vessl.init(organization_name="my-organization")
vessl.create_experiment(...)
```

## Keras

- Use ExperimentCallback

```python
import vessl
from vessl.integration.keras import ExperimentCallback

vessl.init()

# Keras training code
model = Model()
model.compile(...)

# Add integration
model.fit(x, y, epochs=5, callbacks=[ExperimentCallback()])
```

- Run experiment on Vessl using Web UI or SDK


## For M1
```bash
docker context create remote --docker "host=ssh://ec2-user@10.110.3.24"
docker context use remote
docker build . -t vessl-python-sdk
docker run vessl-python-sdk
```

# Development Setting
## Poetry
### Install poetry

[Documentation](https://python-poetry.org/docs/#installation)

#### Set python version environment
1. Install each python distribution package.
1. [Follow instructions](https://python-poetry.org/docs/managing-environments/#switching-between-environments)


