A powerful tool designed to streamline the configuration, execution and management of Machine Learning experiments across various computing environments.
Project description
NeMo Run
[!IMPORTANT] NeMo Run is still in active development and this is a pre-release. The API is subject to change without notice while in pre-release. First official release will be 0.1.0 and will be included in NeMo FW 24.09 as well.
NeMo Run is a powerful tool designed to streamline the configuration, execution, and management of machine learning experiments across various computing environments. NeMo Run has three core responsibilities:
To learn more, click on each link. This represents the typical order that NeMo Run users follow for setting up and launching experiments.
Why Use NeMo Run?
Please see this detailed guide for reasons to use NeMo Run.
Install NeMo Run
To install the project, use the following command:
pip install git+https://github.com/NVIDIA-NeMo/Run.git
Make sure you have pip installed and configured properly.
Get Started
To get started with NeMo Run, follow these three steps based on the core responsibilities mentioned above. For this example, we’ll showcase a pre-training example in Nemo 2.0 using Llama3.
- Configure your function:
from nemo.collections import llm
partial_func = llm.llama3_8b.pretrain_recipe(name="llama3-8b", ckpt_dir="/path/to/store/checkpoints", num_nodes=1, num_gpus_per_node=8)
- Define your Executor:
import nemo_run as run
# Local executor
local_executor = run.LocalExecutor()
- Run your experiment:
run.run(partial_func, executor=local_executor, name="llama3_8b_pretraining")
Design Philosophy and Inspiration
In building NeMo Run, we drew inspiration from and relied on the following primary libraries. We would like to extend our gratitude for their work.
Apart from these, we also build on other libraries. A full list of dependencies can be found in pyproject.toml.
NeMo Run was designed keeping the following principles in mind:
Pythonic
In NeMo Run, you can build and configure everything using Python, eliminating the need for multiple combinations of tools to manage your experiments. The only exception is when setting up the environment for remote execution, where we rely on Docker.
Modular
The decoupling of task and executor allows you to form different combinations of execution units with relative ease. You configure different remote environments once, and you can reuse it across a variety of tasks in a Pythonic way.
Opinionated but Flexible
NeMo Run is opinionated in some places, like storing of metadata information for experiments in a particular manner. However, it remains flexible enough to accommodate most user experiments.
Set Up Once and Scale Easily
While it may take some time initially for users to become familiar with NeMo Run concepts, the tool is designed to scale experimentation in a fluid and easy manner.
Tutorials
Hello world
The hello_world tutorial series provides a comprehensive introduction to NeMo Run, demonstrating its capabilities through a simple example. The tutorial covers:
- Configuring Python functions using
PartialandConfigclasses. - Executing configured functions locally and on remote clusters.
- Visualizing configurations with
graphviz. - Creating and managing experiments using
run.Experiment.
You can find the tutorial series below:
Contribute to NeMo Run
Please see the contribution guide to contribute to NeMo Run.
FAQs
Please find a list of frequently asked questions here.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file nemo_run-0.7.0rc0.dev0.tar.gz.
File metadata
- Download URL: nemo_run-0.7.0rc0.dev0.tar.gz
- Upload date:
- Size: 2.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
57cc8e6fbd1b50d86e19b17bd08cfabde4c837446787bfeb30f6b5d2a12e9850
|
|
| MD5 |
eb5da852e825b2718f988d606580ec5b
|
|
| BLAKE2b-256 |
df738ed9b72963297ff56f238f6e4c55e8c4f11ea041302c4b5071fe96138f29
|
File details
Details for the file nemo_run-0.7.0rc0.dev0-py3-none-any.whl.
File metadata
- Download URL: nemo_run-0.7.0rc0.dev0-py3-none-any.whl
- Upload date:
- Size: 243.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6e2d5164cf23e4a074f7725a44add78bff23d2e5c8b0fa3c0e263fa9cb0e7d81
|
|
| MD5 |
61e724c71aaa7426fff3b540aa3cc4ec
|
|
| BLAKE2b-256 |
c222a73daf1bf1ac0ab9d37f3c35ba7cc0da99a0acdf5a73338c19f37099fd64
|