artdwn's picture
Upload folder using huggingface_hub
4878ed5
raw
history blame
No virus
405 Bytes
# https://taskfile.dev
version: "3"
dotenv:
- .env
tasks:
default:
cmds:
- echo "$PYTHON"
- echo "$WEBUI"
silent: true
launch:
dir: "{{.WEBUI}}"
cmds:
- "{{.PYTHON}} launch.py --xformers --api"
silent: true
lint:
cmds:
- pre-commit run -a
update:
cmds:
- "{{.PYTHON}} -m pip install -U ultralytics mediapipe ruff pre-commit black"