XManager is a platform for packaging, running and keeping track of machine learning experiments. It currently enables one to launch experiments locally or on Google Cloud Platform (GCP). Interaction with experiments is done via XManager's APIs through Python launch scripts. Check out these slides for a more detailed introduction.
To get started, install XManager, its prerequisites if needed and follow the tutorial or a codelab (Colab Notebook / Jupyter Notebook) to create and run a launch script.
See CONTRIBUTING.md for guidance on contributions.
pip install git+https://github.com/deepmind/xmanager.git
Or, alternatively, a PyPI project is also available.
pip install xmanager
On Debian-based systems, XManager and all its dependencies can be installed and set up by cloning this repository and then running
cd xmanager/setup_scripts && chmod +x setup_all.sh && . ./setup_all.sh
The codebase assumes Python 3.9+.
If you use xmanager.xm.PythonDocker
to run XManager experiments,
you need to install Docker.
Follow the steps to install Docker.
And if you are a Linux user, follow the steps to enable sudoless Docker.
If you use xmanager.xm_local.BazelContainer
or xmanager.xm_local.BazelBinary
to run XManager experiments, you need to install Bazel.
If you use xm_local.Vertex
(Vertex AI)
to run XManager experiments, you need to have a GCP project in order to be able
to access Vertex AI to run jobs.
Create a GCP project.
Install gcloud
.
Associate your Google Account (Gmail account) with your GCP project by running:
export GCP_PROJECT=<GCP PROJECT ID>
gcloud auth login
gcloud auth application-default login
gcloud config set project $GCP_PROJECT
Set up gcloud
to work with Docker by running:
gcloud auth configure-docker
Enable Google Cloud Platform APIs.
Create a staging bucket in us-central1 if you do not already have one. This bucket should be used to save experiment artifacts like TensorFlow log files, which can be read by TensorBoard. This bucket may also be used to stage files to build your Docker image if you build your images remotely.
export GOOGLE_CLOUD_BUCKET_NAME=<GOOGLE_CLOUD_BUCKET_NAME>
gsutil mb -l us-central1 gs://$GOOGLE_CLOUD_BUCKET_NAME
Add GOOGLE_CLOUD_BUCKET_NAME
to the environment variables or your .bashrc:
export GOOGLE_CLOUD_BUCKET_NAME=<GOOGLE_CLOUD_BUCKET_NAME>
The basic structure of an XManager launch script can be summarized by these steps:
Create an experiment and acquire its context.
from xmanager import xm
from xmanager import xm_local
with xm_local.create_experiment(experiment_title='cifar10') as experiment:
Define specifications of executables you want to run.
spec = xm.PythonContainer(
path='/path/to/python/folder',
entrypoint=xm.ModuleName('cifar10'),
)
Package your executables.
[executable] = experiment.package([
xm.Packageable(
executable_spec=spec,
executor_spec=xm_local.Vertex.Spec(),
),
])
Define your hyperparameters.
import itertools
batch_sizes = [64, 1024]
learning_rates = [0.1, 0.001]
trials = list(
dict([('batch_size', bs), ('learning_rate', lr)])
for (bs, lr) in itertools.product(batch_sizes, learning_rates)
)
Define resource requirements for each job.
requirements = xm.JobRequirements(T4=1)
For each trial, add a job / job groups to launch them.
for hyperparameters in trials:
experiment.add(xm.Job(
executable=executable,
executor=xm_local.Vertex(requirements=requirements),
args=hyperparameters,
))
Now we should be ready to run the launch script.
To learn more about different executables and executors follow 'Components'.
xmanager launch ./xmanager/examples/cifar10_tensorflow/launcher.py
In order to run multi-job experiments, the --xm_wrap_late_bindings
flag might
be required:
xmanager launch ./xmanager/examples/cifar10_tensorflow/launcher.py -- --xm_wrap_late_bindings
XManager executable specifications define what should be packaged in the form of binaries, source files, and other input dependencies required for job execution. Executable specifications are reusable and generally platform-independent.
See executable_specs.md for details on each executable specification.
Name | Description |
---|---|
xmanager.xm.Container |
A pre-built .tar image. |
xmanager.xm.BazelContainer |
A Bazel target producing a .tar image. |
xmanager.xm.Binary |
A pre-built binary. |
xmanager.xm.BazelBinary |
A Bazel target producing a self-contained binary. |
xmanager.xm.PythonContainer |
A directory with Python modules to be packaged as a Docker container. |
XManager executors define a platform where the job runs and resource requirements for the job.
Each executor also has a specification which describes how an executable specification should be prepared and packaged.
See executors.md for details on each executor.
Name | Description |
---|---|
xmanager.xm_local.Local |
Runs a binary or a container locally. |
xmanager.xm_local.Vertex |
Runs a container on Vertex AI. |
xmanager.xm_local.Kubernetes |
Runs a container on Kubernetes. |
A Job
represents a single executable on a particular executor, while a
JobGroup
unites a group of Job
s providing a gang scheduling concept:
Job
s inside them are scheduled / descheduled simultaneously. Same Job
and JobGroup
instances can be add
ed multiple times.
A Job accepts an executable and an executor along with hyperparameters which can either be command-line arguments or environment variables.
Command-line arguments can be passed in list form, [arg1, arg2, arg3]
:
binary arg1 arg2 arg3
They can also be passed in dictionary form, {key1: value1, key2: value2}
:
binary --key1=value1 --key2=value2
Environment variables are always passed in Dict[str, str]
form:
export KEY=VALUE
Jobs are defined like this:
[executable] = xm.Package(...)
executor = xm_local.Vertex(...)
xm.Job(
executable=executable,
executor=executor,
args={
'batch_size': 64,
},
env_vars={
'NCCL_DEBUG': 'INFO',
},
)
A JobGroup accepts jobs in a kwargs form. The keyword can be any valid Python identifier. For example, you can call your jobs 'agent' and 'observer'.
agent_job = xm.Job(...)
observer_job = xm.Job(...)
xm.JobGroup(agent=agent_job, observer=observer_job)