Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 777 Bytes

File metadata and controls

34 lines (25 loc) · 777 Bytes

Artifacta Examples

This directory contains comprehensive examples demonstrating all Artifacta features and use cases.

Installation

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.txt

Quick Start

Start the UI server (in a separate terminal):

artifacta ui
# View at http://localhost:8000

Run the minimal example:

python examples/core/01_basic_tracking.py

Run all examples:

python examples/run_all_examples.py