🍞 Installation | 🍕 Quick Start | 🧅 Contribution
ExpOven is a notifier application mainly designed for AI researchers. It provides a simple and efficient way to monitor the status of experiments opportunely.
You execute your experiments or commands on the server. When the command is completed or encounters an issue, you will receive a notification in your messaging apps (such as DingTalk, email, Slack, etc.). Additionally, you can use this tool to track the progress of the experiments.
Like most python packages, you can install ExpOven via following methods:
📌 Option 1. Install from PyPI. [RECOMMENDED]
pip install exp-oven📌 Option 2. Install from GitHub.
pip install git+https://github.com/IsshikiHugh/ExpOven📌 Option 3. Install locally.
git clone https://github.com/IsshikiHugh/ExpOven.git
cd ExpOven
pip install . # Make sure you are in the (virtual) environment that you want to install ExpOven.After installation, you can check if the installation is successful by typing the following command:
oven helpNow you need to configuration the third-party supports. You can only configure the most commonly used ones. Check the following links for more details:
Next, you need to edit the local configuration file.
📌 About Config File Location
The configuration files live under
$OVEN_HOME(default~/.config/oven).~/.config/oven/ config.yaml # meta config – sets the default group ogroups/ default.yaml # notification group (one or more backends)You can check the current
OVEN_HOMEthrough CLIoven home.To customize
OVEN_HOME, you only need to set the environment variableOVEN_HOMEto the desired path.
oven init-cfg # Creates config.yaml + ogroups/default.yaml under $OVEN_HOME.Edit ogroups/default.yaml to uncomment and fill in the backend(s) you want to use. A single group can contain multiple backends — all of them will be notified simultaneously.
📌 Notification Groups (ogroups)
Each YAML file under
ogroups/defines a notification group. A group lists one or more backends that are all notified together.Example —
ogroups/work.yamlwith two backends:backends: - type: dingtalk hook: https://oapi.dingtalk.com/robot/send?access_token=<?> secure_key: <?> - type: slack hook: https://hooks.slack.com/services/<?>/<?>/<?>Set the default group:
oven set-default workOr select per-command:
bake --ogroup work python train.pyIn Python:
oven.toggle_ogroup('work')List all groups:
oven list-ogroups
📌 Migrating from v0.6.x
If you are upgrading from ExpOven <= v0.6.4 (old single-file
cfg.yaml), run the migration script:python scripts/migrate_config.pyThis converts your old config into the new layout, creating a group for each configured backend. The previously active backend becomes
ogroups/default.yaml. The old file is backed up ascfg.yaml.bak.
Check docs/examples.py for runnable examples.
ding [--ogroup <group>] [LOGGING MESSAGE]
# eg:
ding 'Hello World!'
ding --ogroup work 'Hello World!' # Use a specific group.
mv from to ; ding 'Data moved.' # Similar to `bake mv from to`.Tips: When you have already started the experiment, you can still print type ding 'Exp xxx stopped.' and press Enter. Although it seems you don't send the command correctly, it's actually put into the queue. When the experiment is over, the command will still be executed.
bake [--ogroup <group>] [RUNNABLE COMMAND]
# eg:
bake echo 'Hello World!'
bake --ogroup work python train.py # Use a specific group.
bake pip install -r requirements.txt
bake bash scripts/download_data.sh
bake CUDA_VISIBLE_DEVICES='0,1' python train.py
CUDA_VISIBLE_DEVICES='0,1' bake python train.py
bake 'curl -X GET https://someweb.com/api?x=y'
# Tips: these two have different effects
X=1 bake "X=2 echo $X" # outputs 1
X=1 bake 'X=2 echo $X' # outputs 2
# Check 3.1.2.2 @ https://www.gnu.org/software/bash/manual/bash.htmlAs a single function, it notifies the message. The two forms are equivalent.
oven.notify('Hello World!')
oven.ding('Hello World!')
# eg:
def compute_loss(gt, pd):
loss = (gt - pd).abs().mean() # (,)
if torch.isnan(loss).any():
oven.notify('Loss contains NaN.') # 👈
ipdb.set_trace()
return loss
def main():
model = Model()
train(model)
metric = evaluate(model)
oven.notify(f'Train over with metric: {metric}') # 👈As function wrapper, the notifier will be called both before and after the function is executed. The two forms are equivalent.
@oven.monitor
def foo() -> None:
print('Hello World!')
@oven.bake
def bar() -> None:
print('Hello World!')
# eg:
@oven.monitor # 👈
def train() -> None:
for epoch in range(10):
train_before_epoch()
train_epoch()
train_after_epoch()You can switch the notification group for the current session:
import oven
oven.toggle_ogroup('work') # All subsequent calls use the 'work' group.By default, it uses default group in the configuration file.
Track progress with tqdm-like interface that also sends notifications:
import oven
# Simple progress bar with notifications
for i in oven.progress_range(100, desc="Training"):
train_step(i)
# Wrap any iterable
data = load_dataset()
for batch in oven.progress(data, desc="Processing batches"):
process_batch(batch)
# Manual progress updates
with oven.ProgressBar(total=1000, desc="Custom task") as pbar:
for i in range(100):
do_work()
pbar.update(10) # Update by 10 itemsCheck docs/pbar_interface.md for more information about the API.
Please check docs/CONTRIBUTING.md for more details.

