scorevision: push artifact
Browse files- chute_config.yml +29 -0
chute_config.yml
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Image:
|
| 2 |
+
from_base: parachutes/python:3.12
|
| 3 |
+
run_command:
|
| 4 |
+
- pip install --upgrade setuptools wheel
|
| 5 |
+
# Minimal runtime deps (SAM + OpenCV).
|
| 6 |
+
# NOTE: Miner runtime has egress disabled; do NOT download weights at runtime.
|
| 7 |
+
- pip install 'torch<2.6' opencv-python-headless numpy
|
| 8 |
+
# If you're using Meta Segment Anything (SAM), install the package.
|
| 9 |
+
# (If this fails on Chutes, replace with a pinned wheel in your repo or a different SAM implementation.)
|
| 10 |
+
- pip install segment-anything
|
| 11 |
+
set_workdir: /app
|
| 12 |
+
|
| 13 |
+
NodeSelector:
|
| 14 |
+
gpu_count: 1
|
| 15 |
+
min_vram_gb_per_gpu: 16
|
| 16 |
+
exclude:
|
| 17 |
+
- "5090"
|
| 18 |
+
- b200
|
| 19 |
+
- h200
|
| 20 |
+
- h20
|
| 21 |
+
- mi300x
|
| 22 |
+
|
| 23 |
+
Chute:
|
| 24 |
+
timeout_seconds: 300
|
| 25 |
+
concurrency: 4
|
| 26 |
+
max_instances: 5
|
| 27 |
+
scaling_threshold: 0.5
|
| 28 |
+
|
| 29 |
+
|