This repository contains the code for reproducing the experiments of the paper "Subtractive Mixture Models via Squaring: Representation and Learning", which has been accepted at ICLR 2024 as a spotlight (top 5%).
We show how to effectively represent and learn a generic class of (deep) mixture models encoding subtractions of probability distributions, called squared non-monotonic PCs (NPC2s), and theoretically prove they can be exponentially more expressive than addition-only mixture models.
The repository is structured as follows.
The file requirements.txt
contains all the required Python dependencies, which can be installed by pip
.
The directory src
contains all the code, including utility scripts to run experiments and reproduce the plots of
the papers starting from tensorboard log files (see below). In src/tests
we store sanity checks that can be run
by executing pytest
at the root level.
The directory econfigs
contains the configuration files for all the experiments, which consist of selections of
models, datasets and all the relevant hyperparameters. The directory slurm
contains utility script to execute
batches of experiments (e.g., grid searches) on a Slurm cluster.
Each data set should be downloaded and placed in the ./datasets
directory,
which is the default one.
The continuous UCI data sets that are commonly used in the normalizing flow literature, i.e., Power, Gas, Hepmass, MiniBoone and also BSDS300, can be downloaded from zenodo.
The sentences sampled from GPT2 four our experiments on model distillation can be downloaded from here.
After downloading it, you need to decompress it in the ./datasets/language/gpt2_commongen
directory.
The directory econfigs/
contains configuration files of the same hyperparameter grid searches we performed for all our experiments.
See below section about running grids of experiments for details.
Simple experiments can be run by executing the Python module scripts.experiment.py
.
For a complete overview of the parameters to pass to it, it is suggested to read its code.
For example, to run an experiment with a MonotonicPC
having input layers computing splines over 32 knots
and on the synthetic dataset cosine
, you can execute
python -m scripts.experiment --dataset cosine --model MonotonicPC --num-components 8 --splines --spline-knots 32 \
--optimizer Adam --learning-rate 1e-3 --batch-size 128 --verbose
The --num-components
argument is used to provide the number of components of each sum unit in the
tensorized circuit architecture built.
Note that the flag --verbose
will enable terminal logging (e.g., to show the loss).
All the models are learned by minimizing the negative log-likelihood on the
training data with gradient descent.
In addition, to run an experiment with a squared non-monotonic PC -- BornPC
--
on the artificially-constructed data set cosine
, you can execute
python -m scripts.experiment --dataset cosine --model BornPC --num-components 4 \
--optimizer Adam --learning-rate 1-3
--batch-size 128 --verbose --num-samples 10000
The --num-samples
argument is used to specify the number of samples to draw from the
artificial distribution to construct the training split.
An additional 10%/20% amount of samples will be drawn to construct the validation/test split.
To log metrics locally such as the test average log-likelihood or to observe training curves,
one can use either tensorboard
.
For tensorboard
it is sufficient to specify
--tboard-path /path/to/tboard-directory
with an arbitrarily chosen path that will contain Tensorboard files.
It is possible to save the best checkpoint of the model, that will be updated only upon
an improvement of the loss on the validation data.
To enable this, you can specify
--save-checkpoint
and --checkpoint-path /path/to/checkpoints
with a path that will contain the model's weights in the .pt
PyTorch format.
In the checkpoints path it will be also saved additional information, e.g., the (quantized) probability density/mass functions estimated by the models on the artificial continuous/discrete 2D data sets.
To run a batch of experiments, e.g., as to do a hyperparameters grid search,
you can use the scripts.grid
module by specifying a grid configuration JSON file.
The directory ./econfigs
contains some examples of such configuration file.
The fields to specify are the following:
common
contains parameters to pass toscripts.experiment
that are common to each experiment of the batch.datasets
contains the list of data sets on which each experiment instance will be executed on.grid.common
contains a grid of hyperparameters. Each hyperparameter is a pair"name": value
where value can be either a single value or a list of values. A products of lists will be performed as to retrieve all the possible configurations of hyperparameters in the grid.grid.models
contains additional hyperparameter configurations that are specific for some dataset or some model. Each entry ingrid.models
is a dictionary from a single dataset or a list of datasets, to a set of maps from model names to hyperparameter configurations. The semantic is that the hyperparameters specified ingrid.models
will overwrite the ones ingrid.common
for some specific combination of datasets and models.
To run a batch of experiments, you can execute
python -m scripts.grid path/to/config.json
You can also use the flag --dry-run
to just print the list of generated commands, without running them.
This is particularly useful in combination with job schedulers on clusters, e.g., Slurm.
Additionally, one can specify a number of experiments that will be distatched in parallel
(by default only one experiment will be runned) by specifying --num-jobs k
, where k is the maximum number
of experiments that will be "alive" at each time.
Instead of specifying parallel jobs that will be runned on the same device,
you can also specify multiple devices on which the experiments will be dispatched on.
This can be done with --multi-devices
.
For instance, --multi-devices cuda:0 cuda:2 cpu
will dispatch three experiment at a time,
respectively on devices cuda:0
, cuda:2
and cpu
.
Finally, you can specify independent repetition for each experiment of the batch,
which will append a different --seed
argument for each experiment command to launch.
This can be done with, for instance, --num-repetitions 5
.
Disclaimer: in case of repeated runs the checkpoints that are saved are not reliable, as they can be overwritten by repeated run.
To run a grid of experiments on a Slurm cluster, we first need to configure some constants in the slurm/launch.sh
utility scripts, such as the Slurn partition to use, the maximum number of parallel jobs, the needed resources,
and the path to a local directory of nodes in order to save model checkpoints and tensorboard logs.
Then, we need to generate the commands to dispatch and save it to a text file.
For this purpose, it is possible to use the script scripts.grid
(see above) with the argument --dry-run
.
For instance, to generate the commands to execute for the experiments on UCI data sets, it suffices to run the command
python -m scripts.grid econfigs/uci-data-splines.json --dry-run > exps-uci-data-splines.txt
Finally, the Bash script slurm/launch.sh
will automatically dispatch an array of Slurm jobs to execute.
EXPS_ID=uci-data bash slurm/launch.sh exps-uci-data-splines.txt
The Slurm jobs should now appear somewhere in the queue, which can be viewed by running squeue
.