Skip to main content

A comprehensive ML experiment tracking library

Project description

PyPMLTracker: A Comprehensive ML Experiment Tracking Library

PyPMLTracker is a powerful and flexible experiment tracking library designed for machine learning projects. It helps data scientists and ML engineers efficiently track, visualize, and manage their experiments. Whether you're training models locally or in the cloud, PyPMLTracker provides all the tools you need to streamline your ML workflow and collaborate with your team.


Check out the official PyPI package: https://pypi.org/project/pypmltracker/

Features ✨

  • 📊 Experiment Tracking: Log metrics, parameters, and artifacts during model training.
  • 🖥️ System Monitoring: Track CPU, memory, disk, and GPU usage during experiments.
  • 🔄 Framework Integrations: Native support for PyTorch, TensorFlow, and scikit-learn.
  • 📈 Visualization: Interactive dashboard to visualize and compare experiments.
  • 💾 Storage Options: Local storage and cloud storage (AWS S3) support.
  • 🌐 API: Client-server architecture for team collaboration.


🔧 Used Libraries & Tools

  • 🔗 PyTorch: PyTorch
  • 🔗 TensorFlow: TensorFlow
  • 🔗 scikit-learn: scikit-learn
  • ☁️ AWS S3: AWS
  • 📈 Plotly: Plotly
  • 📦 PyPMLTracker: PyPMLTracker

Installation ⚙️

Install PyPMLTracker

To install PyPMLTracker, use the following pip command:

pip install pypmltracker

Optional Features

You can install specific features based on your needs:

  • PyTorch integration:
pip install pypmltracker[pytorch]
  • TensorFlow integration:
pip install pypmltracker[tensorflow]
  • scikit-learn integration:
pip install pypmltracker[sklearn]
  • Cloud storage (AWS S3):
pip install pypmltracker[cloud]
  • All features (PyTorch, TensorFlow, scikit-learn, and Cloud):
pip install pypmltracker[all]

Quick Start 🚀

1. Initialize an Experiment

import pypmltracker

experiment = pypmltracker.Experiment(
    project_name="my_project",
    run_name="first_run",
    config={"learning_rate": 0.01, "batch_size": 32}
)
experiment.log({"accuracy": 0.85, "loss": 0.35})
experiment.log_artifact("model", "model.pkl")
experiment.finish()
dashboard = pypmltracker.Dashboard()
dashboard.start(open_browser=True)

Framework Integrations 🤖

PyPMLTracker integrates with several popular machine learning frameworks. Below are examples of how to use PyPMLTracker with PyTorch, TensorFlow, and scikit-learn.

import torch
import torch.nn as nn
import pypmltracker

experiment = pypmltracker.Experiment(project_name="pytorch_example")
tracker = pypmltracker.PyTorchTracker(experiment, log_gradients=True)
model = nn.Sequential(nn.Linear(10, 5), nn.ReLU(), nn.Linear(5, 1))
tracker.watch(model)

for epoch in range(10):
    loss = train_step(model, data)
    tracker.track_metrics({"loss": loss})
    val_accuracy = validate(model, val_data)
    tracker.on_epoch_end(epoch, model, {"val_accuracy": val_accuracy})
tracker.save_model(model, "final_model")

System Monitoring 🖥️

Track system resources such as CPU, memory, and disk usage during your experiments.

import pypmltracker
import time

experiment = pypmltracker.Experiment(project_name="system_monitoring")
monitor = pypmltracker.SystemMonitor(experiment)
monitor.start()

for i in range(10):
    time.sleep(1)
    experiment.log({"step": i, "value": i * 2})
monitor.stop()
experiment.finish()

Dashboard 📊

Start the PyPMLTracker web dashboard to visualize and compare your experiments.

import pypmltracker

dashboard = pypmltracker.Dashboard(
    storage_dir="./pypmltracker_data",
    host="127.0.0.1",
    port=8000
)
dashboard.start(open_browser=True)

Team Collaboration 🤝

PyPMLTracker supports client-server architecture to facilitate team collaboration.

  • Server Server Start the server to expose PyPMLTracker functionality via a REST API:
import pypmltracker

server = pypmltracker.PyPMLTrackerServer(
    storage_dir="./pypmltracker_data",
    host="0.0.0.0",
    port=5000,
    api_key="your-secret-api-key"
)
server.start()
  • Client 📡 Connect to the remote server and interact with it:
import pypmltracker

client = pypmltracker.PyPMLTrackerClient(
    base_url="http://server-address:5000",
    api_key="your-secret-api-key"
)
projects = client.list_projects()
print("Projects:", projects)

License 📜

PyPMLTracker is licensed under the MIT License.

Contributing 🤗

Contributions are welcome! If you’d like to contribute to the development of PyPMLTracker, please feel free to submit a pull request.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pypmltracker-0.1.3.tar.gz (6.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pypmltracker-0.1.3-py3-none-any.whl (4.4 kB view details)

Uploaded Python 3

File details

Details for the file pypmltracker-0.1.3.tar.gz.

File metadata

  • Download URL: pypmltracker-0.1.3.tar.gz
  • Upload date:
  • Size: 6.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.4

File hashes

Hashes for pypmltracker-0.1.3.tar.gz
Algorithm Hash digest
SHA256 fbb688461a245fb71124181194b4820e6ac982ef660b275accda977c0b83dc6c
MD5 a9f9e4126bce677f13539939431bafe6
BLAKE2b-256 7ae41579ebb198957642b7e0483b210807c8220bbe3ddb1d5f4624e3d8cc9a86

See more details on using hashes here.

File details

Details for the file pypmltracker-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: pypmltracker-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 4.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.4

File hashes

Hashes for pypmltracker-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 ba995985b23de850ffec719acae5d4958074106752238038335e686a3f72f404
MD5 8c71aa43a011e4a4c579c51ee19f00fb
BLAKE2b-256 8e819acd02518ff251434c9643ea33fbaa4ec03d5e1e431e6e3dd53bf25c9f24

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page