https://github.com/alexandresajus/experiment-tracking-benchmark
A benchmark of multiple experiment tracking tools (Tensorboard, Weights and Biases, Neptune and Comet)
https://github.com/alexandresajus/experiment-tracking-benchmark
Last synced: 9 months ago
JSON representation
A benchmark of multiple experiment tracking tools (Tensorboard, Weights and Biases, Neptune and Comet)
- Host: GitHub
- URL: https://github.com/alexandresajus/experiment-tracking-benchmark
- Owner: AlexandreSajus
- License: apache-2.0
- Created: 2022-10-28T21:23:11.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-11-11T22:23:13.000Z (over 3 years ago)
- Last Synced: 2023-02-28T09:13:19.586Z (over 3 years ago)
- Language: Python
- Homepage:
- Size: 4.42 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# **Experiment Tracking Benchmark**


This is a package to test the performance of different experiment tracking tools: `Tensorboard`, `Weights and Biases`, `Neptune`, `Comet` and `ClearML`.
**Table of Contents**
- [**Experiment Tracking Benchmark**](#experiment-tracking-benchmark)
- [**Usage**](#usage)
- [**Comparison**](#comparison)
- [**Tensorboard**](#tensorboard)
- [**Weights and Biases**](#weights-and-biases)
## **Usage**
Make sure you have Python installed:
**1. Install the package with pip in your terminal:**
```
pip install git+https://github.com/AlexandreSajus/Experiment-Tracking-Benchmark.git
```
**2. Run the benchmark with the following command:**
```
python -m trackbench
```
Currently the supported experiments are: `tensorboard`
This will train DQN and PPO on CartPole and output the experiment tracking website in the terminal.
For example, for tensorboard, the output will be:
```
Training... (this might take some time)
Training DQN on CartPole...
Training PPO on CartPole...
TensorBoard launched at http://localhost:6006/
Press Ctrl+C to stop TensorBoard
```
You will then be able to access the experiment tracking website at http://localhost:6006/ which will show result curves.
## **Comparison**
### **Tensorboard**
Tensorboard creates a local webpage with curves of the training process. It is supported on many platforms and is really easy to start with but it is not very customizable.
:white_check_mark: Advantages:
- Easy to start
- Supported on many platforms
:x: Disadvantages:
- Difficult to customize
- Limited
- Basic interface
### **Weights and Biases**
Weights and Biases records a lot of data about the training process and creates a webpage to visualize it
This allows the creation of customizable dashboards to visualize and analyze the training process.
But also hosted webpages with reports that you can share with colleagues
:white_check_mark: Advantages:
- Many features (dashboards, reports, video, audio, ...)
- Very customizable
- Very ergonomic interface
- Supported everywhere with detailed documentation
:x: Disadvantages:
- Requires an account and an internet connection
- Paid when working as a team
- Setup is more complicated, takes time to learn