October 8, 2024
OpenAI’s Python API is quickly becoming one of the most-downloaded Python packages. With…
Ludwig is a TensorFlow-based toolbox that allows users to train and test deep learning models without the need to write code.
By offering a well-defined, codeless deep learning pipeline from beginning to end, Ludwig enables practitioners and researchers alike to quickly train and test their models and obtain strong baselines to compare experiments against.
“Ludwig helps us build state of the art models without writing code, and by integrating Ludwig with Comet, we can track all of our experiments in a reproducible way, gain visibility, and a better understanding of the research process.” — Piero Molino, Senior ML / NLP Research Scientist at Uber AI Labs and Creator of Ludwig
Ludwig offers CLI commands for preprocessing data, training, issuing predictions, and visualizations. In this post, we’ll show you how to use Ludwig and track your Ludwig experiments with comet.ml.
See the Ludwig Github repo here
Here at comet.ml, we were excited by the potential for Ludwig to fill a void in the machine learning ecosystem. Ludwig finally takes the idea of abstract representations of machine learning models, training, data, and visualizations and turns them into a seamless, executable pipeline from start to finish.
We worked with the Ludwig team to integrate comet.ml so that users can track Ludwig-based experiments live as they are training.
There are three main areas where comet.ml complements Ludwig:
By running your Ludwig experiment with comet.ml, you can capture your experiment’s:
…and more!
1. Install Ludwig for Python (and spacy for English as a dependency since we’re using text features for this example). This example has been tested with Python 3.6.
$ pip install ludwig
$ python -m spacy download en
If you encounter problems installing gmpy
please install libgmp
or gmp
. On Debian-based Linux distributions: sudo apt-get install libgmp3-dev
. On MacOS : brew install gmp
.
2. Install Comet:
$ pip install comet_ml
3. Set up your Comet credentials:
$ export COMET_API_KEY="..."
$ export COMET_PROJECT_NAME="..."
4. We recommend that you create a new directory for each Ludwig experiment.
$ mkdir experiment1
$ cd experiment1
Some background: every time you want to create a new model and train it, you will use one of two commands —
— train
— experiment
Once you run these commands with the--comet
flag, a.comet.config
file is created. This.comet.config
file pulls your API key and Comet Project name from the environment variables you set above.
If you want to run another experiment, it is recommended that you create a new directory.
5. Download the dataset. For this example, we will be working on a text classification use case with the Reuters-21578 , a well-known newswire dataset. It only contains 21,578 newswire documents grouped into 6 categories. Two are ‘big’ categories (many positive documents), two are ‘medium’ categories, and two are ‘small’ categories (few positive documents).
$ curl http://boston.lti.cs.cmu.edu/classes/95-865-K/HW/HW2/reuters-allcats-6.zip -o reuters-allcats-6.zip
$ unzip reuters-allcats-6.zip
6. Define the model we wish to build with the input and output features we want. Create a file named model_definition.yaml
with these contents:
input_features:
-
name: text
type: text
level: word
encoder: parallel_cnn
output_features:
-
name: class
type: category
7. Train the model with the new --comet
flag
$ ludwig experiment --comet --data_csv reuters-allcats.csv \
--model_definition_file model_definition.yaml
Once you run this, a Comet experiment will be created. Check your output for that Comet experiment URL and press on that URL.
8. In Comet, you’ll be able to see:
and much more! See this sample experiment here
If you choose to make any visualizations with Ludwig, it’s also possible to upload these visualizations to Comet’s Image Tab by running:
$ ludwig visualize --comet \
--visualization learning_curves \
--training_statistics \
./results/experiment_run_0/training_statistics.json