This package uses the D3M ecosystem for machine learning (ML) to build and execute ML pipelines on problems/datasets, storing the pipelines and results of the pipeline runs in a database. As such, this package is useful for generating meta-datasets for use in metalearning, among other things. It can run on all internal D3M dataset types (seed, LL0, LL1). It runs on classification and regression problems that contain tabular data. It can use 15 classifiers, 17 regressors, and 11 preprocessors to build pipelines with. Future work includes hyper-parameter tuning.
git clone https://github.com/byu-dml/d3m-experimenter
cd d3m-experimenter
Note: The directory the repo is cloned to will need to be supplied as a volume in docker-compose.yml
.
docker-compose
is a way to more easily run docker containers than the docker run
command and is needed for this repo. Install docker-compose
here if you don't already have it installed.
Next copy the file .env.example
and name the copy .env
then make these modifications:
DATASETS=
is pointing to the datasets you want the container to have access to. The datasets can then be accessed from inside the container at /datasets
.EXPERIMENTER=
to point to the root directory of this cloned repo.In order for the experimenter to execute correctly and have access to machine learning primitives, it needs to run inside the repo's docker container, which is a "subclass" of the public D3M primitives container.
First build, (re)create, and start the docker container:
sudo docker-compose up -d
Note: If you get a permission denied error, try rerunning the command with sudo
. Another note: if you have previously installed a d3m docker image before and this one is not working, try using sudo docker-compose build
then try these steps again.
If you don't want to use sudo
follow the instructions here.
Next, access the container from the command line:
sudo docker exec -it experimenter bash
From within this command line you can execute the repo or use the core d3m package.
To stop and remove the container run this command from within the directory with the docker-compose.yml
file:
sudo docker-compose down
Inside the docker container you can use the d3m core package directly. One example command is python3 -m d3m.index search
. This will list all of the primitives available inside the container.
An example of running a pipeline is:
python3 -m d3m.runtime -d /datasets -v /volumes fit-produce -m /volumes/.meta -p /volumes/pipelines/random-forest-classification.yml
This uses the d3m reference runtime to execute the pipeline described by random-forest-classification.yml
on the datasets found at /datasets
. More info on using d3m to run pipelines can be found here.
To run a locally installed version of the d3m core package repo instead of the pypi version (useful when debugging d3m), there are two options:
Option 1: From inside the docker container command line:
pip3 uninstall d3m
pip3 install --process-dependency-links -e <path_to_your_d3m_repo>
Now you should be running the local D3M runtime and any changes you make should be reflected when you run the code.
Option 2: From inside the docker container command line, change into where you mounted the locally installed d3m repo, then run d3m commands as you normally would, and it will use the local code.
Before using the experimenter, ensure the repo has been cloned, the docker image is instantiated, and you are inside the docker container's command line.
The core API of the repo is a CLI interface used for building and running pipelines, and for persisting those piplines and pipeline runs in a database. To see the CLI's documentation and default argument values:
python3 experimenter_driver.py --help
Some basic facts about the experimenter driver:
Experimenter
class to generate all possible pipelines from lists of pipelines types. These are generated in Experimenter.py but the models used are in constants.py
.The most basic way to run the experimenter is:
python3 experimenter_driver.py
Note: In order for the experimenter results to be saved to the D3M database, the SAVE_TO_D3M
environment variable must be set to true e.g. SAVE_TO_D3M=True
. It is not set by default to ensure the unit tests do not save to the DB, and that you only save to the DB when you are deliberately trying to. To ensure the environment variable is not set to True when you don't want it to be, it is recommended to only set it at the same time the experimenter CLI is invoked, to ensure it is only set for the life of running the experimenter that one time e.g. SAVE_TO_D3M=True python3 experimenter_driver.py
.
python3 experimenter_driver.py
python3 experimenter_driver.py --run-type generate
. This will store them in the lab's local MongoDB database.python3 experimenter_driver.py --run-type execute
--pipeline-folder path/to/pipeline/folder
flag.python3 experimenter_driver.py --run-type distribute
(see "Lab Distribution Options" below for more info).experimenter_driver.py
.The repo can use a task queue to store pipelines on, with multiple machines acting in tandem to execute those pipelines and store them in the database.
To create jobs on the task queue:
python3 experimenter_driver.py --run-type distribute
This pulls all the pipelines out of the database and adds them to the RQ queue as jobs to be executed by workers. To generate pipelines and put them in the database use a --run-type
of generate
or all
(see above).
clusterssh
. Install it, if it is not installed (sudo apt-get install clusterssh
). A tutorial for using clusterssh
can be found here.cssh
followed by all the names of the machine you want it to run on. For example cssh lab1 lab2
. If you encounter an error about not being able to authenticate with the other machine, make sure you can regular SSH into it first and then try again.prep-machine.sh
. Once that is run and you are in the Docker container run python3 rq-worker.py
to become a worker. Being a worker means that machine will take jobs (pipelines) off the RQ queue, execute them, and persist the resulting pipeline runs in the database. Note: This step can be executed in parallel on all workers from the clusterssh
terminal.There are some helpers for easily viewing data in the database. To see all the items in the database create a folder with the collection names as subdirectories. Then run:
python3 get_documents.py
For specific DB commands see get_documents.py
. The outputs from the above step will be placed in the directory passed into the command line OR the default location (currently the home directory).
For reproducibility, when using random numbers in the repo, use the random_seed
variable importable from experimenter.config
to seed your random number generator. If you are using the native random
python package, you can import random
from experimenter.config
. It is a version of the random
package that's already been seeded with the repo's shared seed. If you want the tests to run deterministically, supply an environment variable called SEED
with the same value each time. The repo will then use that value as its common random seed.
To start the database (only applies to the BYU DML lab):
ssh 1potato
cd /path/to/database_docker_compose_file/
sudo docker-compose up -d
To start up the Redis queue (also only applies to the BYU DML lab):
ssh 1potato
bash start_redis_rq.sh
To view the Redis queue dashboard, navigate your browser to localhost:9181
.
Note: you may need to source the REDIS_PORT
, REDIS_DATA
, and REDIS_HOST
environment variables from your .env
file to get the start_redis_rq.sh
script to run.