Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

README.md

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