Point to renamed Kicky AI model/dataset repos
Browse files
README.md
CHANGED
|
@@ -57,8 +57,8 @@ This Space runs the distilled detector live on **ZeroGPU**; everything else is C
|
|
| 57 |
> Honest note: goal detection on monocular 2D tops out in the low-to-mid 80s % — a ball
|
| 58 |
> *in front of* the goal and a ball *in the net* are the same pixels (depth ambiguity).
|
| 59 |
|
| 60 |
-
Model → [`build-small-hackathon/
|
| 61 |
-
Dataset → [`build-small-hackathon/
|
| 62 |
|
| 63 |
Built for the **Build Small Hackathon** by a Sunday-league player who wanted to know if his
|
| 64 |
strikes have World Cup form.
|
|
|
|
| 57 |
> Honest note: goal detection on monocular 2D tops out in the low-to-mid 80s % — a ball
|
| 58 |
> *in front of* the goal and a ball *in the net* are the same pixels (depth ambiguity).
|
| 59 |
|
| 60 |
+
Model → [`build-small-hackathon/kicky-ai-rfdetr-seg`](https://huggingface.co/build-small-hackathon/kicky-ai-rfdetr-seg) ·
|
| 61 |
+
Dataset → [`build-small-hackathon/kicky-ai-spf`](https://huggingface.co/datasets/build-small-hackathon/kicky-ai-spf)
|
| 62 |
|
| 63 |
Built for the **Build Small Hackathon** by a Sunday-league player who wanted to know if his
|
| 64 |
strikes have World Cup form.
|
server.py
CHANGED
|
@@ -21,7 +21,7 @@ from futheros import pipeline as P
|
|
| 21 |
from futheros import coach as C
|
| 22 |
from futheros.render import render, pose_card_img
|
| 23 |
|
| 24 |
-
HF_MODEL = "build-small-hackathon/
|
| 25 |
RENDER_DIR = "/tmp/app_renders"; os.makedirs(RENDER_DIR, exist_ok=True)
|
| 26 |
HERE = os.path.dirname(os.path.abspath(__file__))
|
| 27 |
GT = json.load(open(os.path.join(HERE, "labels/goal_labels.json")))
|
|
|
|
| 21 |
from futheros import coach as C
|
| 22 |
from futheros.render import render, pose_card_img
|
| 23 |
|
| 24 |
+
HF_MODEL = "build-small-hackathon/kicky-ai-rfdetr-seg"
|
| 25 |
RENDER_DIR = "/tmp/app_renders"; os.makedirs(RENDER_DIR, exist_ok=True)
|
| 26 |
HERE = os.path.dirname(os.path.abspath(__file__))
|
| 27 |
GT = json.load(open(os.path.join(HERE, "labels/goal_labels.json")))
|