I've noticed that with clearml, I can only run Python scripts, which is not very convenient for me. I would like to run Python scripts through bash using accelerate (for training on multiple GPUs). Currently, I have to launch the bash script through Python code, like this:
import os
os.system('./hello.sh')
The sh script (hello.sh) itself looks something like this:
I've noticed that with clearml, I can only run Python scripts, which is not very convenient for me. I would like to run Python scripts through bash using accelerate (for training on multiple GPUs). Currently, I have to launch the bash script through Python code, like this:
The sh script (hello.sh) itself looks something like this:
This solution seems like a workaround. Is there a more proper approach?