Spaces:
Runtime error
Runtime error
| echo "Not checking h100 -- already know it's not there." | |
| #python /check_h100.py | |
| echo "Attempting to run." | |
| #if [[ $? = 0 ]]; then | |
| python /parse_requests.py > pending_backend_models.txt | |
| cat pending_backend_models.txt | while read backend_model; do | |
| # TODO: The set of experiments to run could also be defined in a text file. | |
| for experiment_name in 'text_classification'; do | |
| optimum-benchmark --config-name ${experiment_name} --config-dir /optimum-benchmark/examples/energy_star/ hydra.run.dir='/data/runs/${experiment_name}/${backend_model}/${now:%Y-%m-%d-%H-%M-%S}' | |
| done | |
| done | |
| echo "Finished" | |
| #python /pause_space.py | |
| #fi | |