Spaces:
Runtime error
Runtime error
File size: 394 Bytes
0c3ff42 cf26dbd 0c3ff42 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
from modal import Image
training_image_conda = (
Image.conda()
.conda_install(
"pytorch::pytorch",
"torchaudio",
"pandas",
channels=["conda-forge"]
)
)
training_image_pip = (
Image.debian_slim(python_version="3.9")
.pip_install(
"torch==2.0.0",
"torchaudio==2.0.0",
"pandas",
"tqdm",
"wandb",
)
) |