Spaces:
Sleeping
Sleeping
File size: 239 Bytes
d911050 |
1 2 3 4 5 6 7 8 9 10 11 12 |
#!/bin/bash
# Initialize conda
eval "$(conda shell.bash hook)"
# Activate the cleanup environment
conda activate cleanup
# Additional commands or environment setup can be added here
export TORCH_HOME=$(pwd) && export PYTHONPATH=$(pwd)
|