-
-
Notifications
You must be signed in to change notification settings - Fork 40
Hailo catalog take 3: one manifest per model, no unconsumed pins, red proof in body -- supersedes PR #2437 (HELD) #2445
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
This file was deleted.
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,2 @@ | ||||||
| ### Added | ||||||
| - Hailo-10H .hef model catalog manifests for qwen2.5-1.5b, qwen3, qwen2.5-coder-1.5b, qwen2-1.5b, llama3.2-1b, and deepseek-r1-1.5b, using the hailo-ollama-pull install method instead of direct download. | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. SUGGESTION: Typo in changelog — The model ID in the catalog is
Suggested change
Reply with |
||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| ### Fixed | ||
| - Consolidated Hailo-10H HEF variants into existing model manifests (qwen2.5-1.5b, qwen2-1.5b, qwen2.5-coder-1.5b, deepseek-r1-1.5b, llama-3.2-1b, llama-3.2-3b, qwen3-1.7b); dropped unverified hef_h10h pins and removed bare download_urls from hailo-ollama-pull variants. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| ### Fixed | ||
| - Removed unverified hef_h10h/sha256 fields from model manifests and added install.method: hailo-ollama-pull; integrity test now catches stride-2 algorithmic patterns in hef_h10h via _is_stride2_algorithmic check |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -69,6 +69,19 @@ Pre-loaded by `install-rknpu.sh` (separate from Store install path): | |
| | `qwen3-reranker-0.6b` | ✅ | ✅ | embedded in rkllama default load | | ||
| | `qmd-query-expansion` | ✅ | ✅ | embedded in rkllama default load | | ||
|
|
||
| ## LLM models — HEF format (Hailo-10H NPU) | ||
|
|
||
| Catalog entries with `format: hef` + `backend: [hailo-ollama]`. Pulled via `hailo-ollama pull` (Ollama-compatible `/api/pull`). | ||
|
|
||
| | Model | Pi-NPU-8GB | Pi-NPU-16GB | Source | Notes | | ||
| |---|---|---|---|---| | ||
| | `qwen2-1.5b` | ⏳ | ⏳ | dev-public.hailo.ai/v5.1.1 | | | ||
| | `qwen2.5-1.5b` | ⏳ | ⏳ | dev-public.hailo.ai/v5.1.1 | | | ||
| | `qwen2.5-coder-1.5b` | ⏳ | ⏳ | dev-public.hailo.ai/v5.1.1 | | | ||
| | `qwen3-1.7b` | ⏳ | ⏳ | dev-public.hailo.ai/v5.1.1 | 1.7B variant | | ||
| | `llama-3.2-1b` | ⏳ | ⏳ | dev-public.hailo.ai/v5.1.1 | | | ||
| | `deepseek-r1-1.5b` | ⏳ | ⏳ | dev-public.hailo.ai/v5.1.1 | reasoning | | ||
|
Comment on lines
+76
to
+83
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win Add the missing The table lists six HEF models. The catalog contains seven Hailo variants, including 🤖 Prompt for AI AgentsThere was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. WARNING: The PR added the Reply with |
||
|
|
||
| ## LLM models — GGUF format (rk-llama.cpp / Ollama / llama.cpp) | ||
|
|
||
| GGUF-format models route through the resolver's `requires.backends` list — manifests pick `rk-llama-cpp` for Pi NPU and fall back to `ollama` / `llama-cpp` on other tiers. | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win
Use the final catalog IDs.
qwen3was consolidated intoqwen3-1.7b. The catalog ID isllama-3.2-1b, notllama3.2-1b. Correct these names so users can locate the released models.Proposed fix
📝 Committable suggestion
🤖 Prompt for AI Agents