This directory contains comprehensive examples demonstrating all Artifacta features and use cases.
Install Artifacta with all dependencies needed to run the examples:
# Create a new virtual environment
python3 -m venv artifacta-examples
source artifacta-examples/bin/activate # On Windows: artifacta-examples\Scripts\activate
# Install artifacta + ML frameworks (sklearn, xgboost, pytorch, tensorflow)
pip install -r examples/requirements.txtStart the UI server (in a separate terminal):
artifacta ui
# View at http://localhost:8000Run the minimal example:
python examples/core/01_basic_tracking.pyRun all examples:
python examples/run_all_examples.py