5 lines
229 B
Bash
Executable File
5 lines
229 B
Bash
Executable File
#!/bin/bash
|
|
echo 'Triggering HF training...'
|
|
curl -sf -X POST https://yace222-wevia-gpu.hf.space/api/predict -H 'Content-Type: application/json' -d '{"data":[]}' -o /tmp/train-result.json 2>&1
|
|
echo 'Check /tmp/train-result.json'
|