mirror of
https://github.com/twitter/the-algorithm-ml.git
synced 2024-11-05 16:25:08 +01:00
16 lines
391 B
Bash
Executable File
16 lines
391 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Runs from inside venv
|
|
rm -rf $HOME/tmp/runs/recap_local_debug
|
|
mkdir -p $HOME/tmp/runs/recap_local_debug
|
|
python -m tml.machines.is_venv || exit 1
|
|
export TML_BASE="$(git rev-parse --show-toplevel)"
|
|
|
|
torchrun \
|
|
--standalone \
|
|
--nnodes 1 \
|
|
--nproc_per_node 1 \
|
|
projects/home/recap/main.py \
|
|
--config_path $(pwd)/projects/home/recap/config/local_prod.yaml \
|
|
$@
|