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