Spaces:
Running
Running
sara.mesquita commited on
Commit Β·
c33e98e
1
Parent(s): 90b2156
adds readme and context
Browse files- README.md +4 -3
- index.html +1 -1
- static/app.js +1 -1
README.md
CHANGED
|
@@ -20,8 +20,9 @@ tags:
|
|
| 20 |
- leaflet
|
| 21 |
- cosine-similarity
|
| 22 |
models:
|
| 23 |
-
-
|
| 24 |
- sentence-transformers/all-MiniLM-L6-v2
|
|
|
|
| 25 |
---
|
| 26 |
|
| 27 |
# PawMap πΎ β Collaborative stray animal mapping with AI
|
|
@@ -98,8 +99,8 @@ The map uses color to signal urgency: **π’ green** = dog Β· **π orange** =
|
|
| 98 |
|
| 99 |
| Component | Model / Library | Where it runs |
|
| 100 |
|---|---|---|
|
| 101 |
-
| Visual identification | **
|
| 102 |
-
| Vision
|
| 103 |
| Semantic embedding | **all-MiniLM-L6-v2** (384 dim) | CPU, local |
|
| 104 |
| Animal matching | Cosine similarity (threshold 0.80) | CPU, local |
|
| 105 |
| Database | SQLite | local / persistent |
|
|
|
|
| 20 |
- leaflet
|
| 21 |
- cosine-similarity
|
| 22 |
models:
|
| 23 |
+
- nvidia/nemotron-3-nano-omni-30b-a3b-reasoning
|
| 24 |
- sentence-transformers/all-MiniLM-L6-v2
|
| 25 |
+
- meta-llama/Llama-3.2-11B-Vision-Instruct
|
| 26 |
---
|
| 27 |
|
| 28 |
# PawMap πΎ β Collaborative stray animal mapping with AI
|
|
|
|
| 99 |
|
| 100 |
| Component | Model / Library | Where it runs |
|
| 101 |
|---|---|---|
|
| 102 |
+
| Visual identification | **Nemotron Omni 30B** via NVIDIA NIM | remote API |
|
| 103 |
+
| Vision fallback | **Llama-3.2-11B-Vision-Instruct** via HF Serverless | remote API |
|
| 104 |
| Semantic embedding | **all-MiniLM-L6-v2** (384 dim) | CPU, local |
|
| 105 |
| Animal matching | Cosine similarity (threshold 0.80) | CPU, local |
|
| 106 |
| Database | SQLite | local / persistent |
|
index.html
CHANGED
|
@@ -545,7 +545,7 @@
|
|
| 545 |
<div class="stack-list">
|
| 546 |
<div class="stack-row">
|
| 547 |
<span class="stack-label">Vision AI</span>
|
| 548 |
-
<span class="stack-value">
|
| 549 |
</div>
|
| 550 |
<div class="stack-row">
|
| 551 |
<span class="stack-label">Embeddings</span>
|
|
|
|
| 545 |
<div class="stack-list">
|
| 546 |
<div class="stack-row">
|
| 547 |
<span class="stack-label">Vision AI</span>
|
| 548 |
+
<span class="stack-value">Nemotron Omni 30B</span>
|
| 549 |
</div>
|
| 550 |
<div class="stack-row">
|
| 551 |
<span class="stack-label">Embeddings</span>
|
static/app.js
CHANGED
|
@@ -102,7 +102,7 @@
|
|
| 102 |
|
| 103 |
// ββ MAP ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
| 104 |
function initMap() {
|
| 105 |
-
map = L.map('map', { zoomControl: false }).setView([-
|
| 106 |
L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
|
| 107 |
attribution: 'Β© <a href="https://openstreetmap.org">OSM</a>', maxZoom: 19
|
| 108 |
}).addTo(map);
|
|
|
|
| 102 |
|
| 103 |
// ββ MAP ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
| 104 |
function initMap() {
|
| 105 |
+
map = L.map('map', { zoomControl: false }).setView([-15.7801, -47.9292], 13);
|
| 106 |
L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
|
| 107 |
attribution: 'Β© <a href="https://openstreetmap.org">OSM</a>', maxZoom: 19
|
| 108 |
}).addTo(map);
|