Hectiq Lab
Hectiq Lab is a platform to track your machine learning experiments.
- ⚡️ Fast and easy: Designed with performance in mind, Hectiq Lab is fast and easy to use.
- 🖥 Full API: Supports the full API of the Hectiq Lab package.
- 🚀 Boosted with commands: Almost all methods are availabe from the CLI, or in python using a functional or object-oriented API.
Simply install the package and start tracking your experiments.
bash
pip install pyhectiqlab
Then, you'll be able to use the CLI
bash
hectiq-lab --help
Or the Python package
python
import pyhectiqlab
Quickstart
Start by authenticating with the CLI.
bash
hectiq-lab authenticate
Then, you can start tracking your experiments.
python
from pyhectiqlab import Run
import pyhectiqlab.functional as hl
with Run(title="My first run", project="hectiq-ai/demo"):
hl.add_artifact("my-image.png")