File size: 8,489 Bytes
6e8c186 b88b684 6e8c186 71c9800 b88b684 6e8c186 b88b684 4bb1bd0 b88b684 4bb1bd0 b88b684 4bb1bd0 b88b684 4bb1bd0 6e8c186 18d30a2 6e8c186 d212e5c 6e8c186 18d30a2 6e8c186 d212e5c 6e8c186 d212e5c 18d30a2 d212e5c 6e8c186 72be05f b88b684 d212e5c 6e8c186 d212e5c 6e8c186 71c9800 d212e5c 6e8c186 d212e5c 6e8c186 d212e5c 71c9800 d212e5c b88b684 d212e5c 6e8c186 b88b684 4bb1bd0 b88b684 18d30a2 b88b684 18d30a2 b88b684 4bb1bd0 b88b684 6e8c186 d212e5c 71c9800 d212e5c 4bb1bd0 d212e5c b88b684 18d30a2 b88b684 d212e5c b88b684 d212e5c b88b684 d212e5c 6e8c186 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 | ---
pipeline_tag: other
tags:
- eval-results
- health-check
- monitoring
- tool-calling
- sakthai
- companion
- artifact-store
- evaluation
task_categories:
- artifact-store
library_name: generic
license: mit
datasets:
- Nanthasit/sakthai-bench-v2
- Nanthasit/sakthai-bench-v3
model-index:
- name: SakThai Eval Results
results:
- task:
type: evaluation
name: artifact-store
metrics:
- name: artifacts
type: other
value: "4 YAML health/audit artifacts in .eval_results as of 2026-08-01"
- name: last_probe
type: other
value: "2026-07-31 router probe: 0/14 Nanthasit/* healthy"
---
<div align="center">
# π SakThai Eval Results
[](https://huggingface.co/Nanthasit/eval_results)
[](https://huggingface.co/Nanthasit/eval_results)
**Centralized evaluation and health-check artifact store** for the SakThai model family. This companion repository holds automated evaluation outputs β health-check YAML files, benchmark raw dumps, and inference-probe results β generated by the nightly cron-job pipeline.
> π **This is not an inference model.** This repo stores evaluation artifacts only. There are no weight files, no Python packages, and no inference endpoints here.
</div>
---
## Repo Contents
| Path | Type | Size | Description |
|------|------|------:|-------------|
| `.eval_results/health-2026-07-31.yaml` | YAML | ~5.5 KB | Full-family health check (14 models, router 404 scan) |
| `.eval_results/health-context-0.5b-tools-2026-07-31.yaml` | YAML | ~2.8 KB | Model-specific health report for `context-0.5b-tools` |
| `README.md` | MD | β | This card |
More health checks and benchmark artifacts are appended daily by the automated cron pipeline.
---
## Model Description
This repository does **not** contain a machine-learning model. It is the evaluation and artifact store for the SakThai model family on Hugging Face. The repo stores timestamped YAML outputs from automated nightly jobs so model cards, dashboards, and auditors can cite first-party evidence instead of inferred claims.
- **Artifacts:** router health checks, model-specific YAML audits, benchmark raw dumps, inference-probe results.
- **Update cadence:** nightly cron pipeline.
- **Scope:** public SakThai models on the `Nanthasit` account.
---
## Evaluation Pipeline
Every SakThai nightly cycle runs two artifact-producing jobs:
1. **Family health check** β scans every public SakThai model via the HF router chat/completions endpoint and records HTTP status, latency, and error class. A `0/N healthy` result is expected because SakThai models are GGUF/LLaMA.cpp-oriented and are not deployed on the HF serverless inference router.
2. **Per-model health report** β model-specific YAML with repo hygiene, card quality, weight verification, cross-link audit, and issue list. First-party evidence that model cards are accurate and repos are clean.
Results land in `.eval_results/` as timestamped YAML files so model cards can reference them as verifiable sources.
---
## How to consume these artifacts
```python
import urllib.request
import yaml
url = "https://huggingface.co/Nanthasit/eval_results/raw/main/.eval_results/health-2026-07-31.yaml"
try:
with urllib.request.urlopen(url, timeout=30) as r:
report = yaml.safe_load(r.read().decode("utf-8"))
except Exception as exc:
raise SystemExit(f"Failed to load artifact: {exc}")
print(report.get("summary", "<missing summary>"))
for model, info in report.get("models", {}).items():
status = info.get("status")
err = (info.get("error") or "")[:80]
print(f"{model}\t{status}\t{err}")
```
Model cards link directly to these YAML files for Evaluation & Status sections; if a link breaks, the artifact store is the canonical fallback.
---
## Purpose
The raw YAML outputs live here so downstream cards and dashboards can cite `.eval_results/*.yaml` as first-class evidence. This repo is the single source of truth for:
- **Router inference health** β whether each model is reachable via HF router
- **Responses API compatibility** β whether non-chat models respond through HF Responses API
- **Download & velocity tracking** β per-model counts, daily velocity, family rank
- **Repo hygiene audits** β card quality, broken links, missing metadata, weight checks
---
## Benchmarks
### Router probe on 2026-07-31
| Model | Router status | Latency | Interpretation |
|------|------:|------:|------|
| `Nanthasit/sakthai-context-0.5b-merged` | 404 | 0.18s | Not deployed on HF router |
| `Nanthasit/sakthai-context-0.5b-tools` | 404 | 0.18s | Not deployed on HF router |
| `Nanthasit/sakthai-context-1.5b-merged` | 404 | 0.20s | Not deployed on HF router |
| `Nanthasit/sakthai-context-1.5b-merged-v2` | 404 | 0.19s | Not deployed on HF router |
| `Nanthasit/sakthai-context-1.5b-tools` | 404 | 0.21s | Not deployed on HF router |
| `Nanthasit/sakthai-context-1.5b-tools-v2` | 404 | 0.18s | Not deployed on HF router |
| `Nanthasit/sakthai-context-7b-merged` | 404 | 0.19s | Not deployed on HF router |
| `Nanthasit/sakthai-context-7b-tools` | 404 | 0.25s | Not deployed on HF router |
| `Nanthasit/sakthai-plus-1.5b` | 404 | 0.27s | Not deployed on HF router |
| `Nanthasit/sakthai-coder-1.5b` | 404 | 0.28s | Not deployed on HF router |
| `Nanthasit/sakthai-coder-browser` | 404 | 0.23s | Not deployed on HF router |
| `Nanthasit/sakthai-vision-7b` | 404 | 0.21s | Not deployed on HF router |
| `Nanthasit/sakthai-tts-model` | 404 | 0.22s | Not deployed on HF router |
| `Nanthasit/sakthai-embedding-multilingual` | 404 | 0.19s | Not deployed on HF router |
| `google/gemma-3-4b-it` | 200 | 0.73s | Control probe: router is functional |
> Expected outcome: `0/14 healthy` for `Nanthasit/*` on the HF router. These models are built for local/offline inference with llama.cpp/Ollama, not serverless inference providers.
## Evaluation scope
### What this repo does and does not measure
- **Does:** router reachability, basic HTTP semantics, artifact hygiene, metadata completeness
- **Does not:** local CPU/GPU latency, GGUF quantization accuracy, offline inference benchmarks, end-to-end tool-call pass rates
---
## Related repos
| Repo | Type |
|------|------|
| [Nanthasit/sakthai-context-1.5b-merged](https://huggingface.co/Nanthasit/sakthai-context-1.5b-merged) | Flagship tool-calling model |
| [Nanthasit/sakthai-bench-v2](https://huggingface.co/datasets/Nanthasit/sakthai-bench-v2) | Tool-calling benchmark v2 |
| [Nanthasit/sakthai-bench-v3](https://huggingface.co/datasets/Nanthasit/sakthai-bench-v3) | Next-gen benchmark scaffold |
| [Nanthasit/sakthai-pipeline](https://huggingface.co/Nanthasit/sakthai-pipeline) | Training & inference pipeline |
| [Nanthasit/sakthai-model-family](https://huggingface.co/collections/Nanthasit/sakthai-model-family-6a64745450b12d421c1f9f02) | Full collection |
---
## Status summary
This repo now documents the four current eval artifacts for downstream cards: `health-2026-07-31.yaml`, `health-context-0.5b-tools-2026-07-31.yaml`, and two metadata-cron snapshots dated `2026-07-31` and `2026-08-01`.
## Limitations
- **No weights / no inference** β this is an artifact store only.
- **Router-centric** β health checks probe HF router endpoints; local/offline inference results are not produced here.
- **0/14 healthy today** β expected, but not a signal of model breakage.
- **Scope-limited artifacts** β current outputs are health checks and YAML metadata; benchmark result dumps are still being onboarded from v2/v3 runs.
- **API dependency** β download counts and router checks depend on HF API availability; maintenance of this repo does not require external compute.
---
## Citation
If these evaluation artifacts are useful in your research or tooling, please cite the SakThai family release:
```bibtex
@misc{sakthai-eval-results,
author = {Nanthasit Burankum},
title = {{SakThai Eval Results β Automated Health and Benchmark Artifact Store}},
year = {2026},
publisher = {Hugging Face},
howpublished = {\url{https://huggingface.co/Nanthasit/eval_results}},
note = {Health-check YAML, metadata audits, family benchmark evidence, and router probe logs}
}
```
---
## License
MIT β data artifacts only, no model weights.
|