Skip to content

Commit

Permalink
add longer timeout to preprocess (#105)
Browse files Browse the repository at this point in the history
* add timeout

* bump

* fix bump
  • Loading branch information
erik-dunteman authored Dec 1, 2024
1 parent 519c424 commit f64ffe6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion contrib/modal/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ def download_weights():
"/videos_prepared": videos_prepared_volume,
"/weights": weights_volume,
},
timeout=30*MINUTES,
gpu="H100"
)
def preprocess():
Expand Down Expand Up @@ -127,7 +128,7 @@ def finetune():
"/finetunes": finetunes_volume,
"/outputs": outputs_volume,
},
timeout=20*MINUTES,
timeout=30*MINUTES,
gpu="H100"
)
class MochiLora():
Expand Down

0 comments on commit f64ffe6

Please sign in to comment.