mlboydaisuke commited on
Commit
f1a5dfc
·
verified ·
1 Parent(s): 001d212

Card: add a measured Performance table (Pixel 8a, benchmark_model GPU+CPU), naming the runtime for each row

Browse files
Files changed (1) hide show
  1. README.md +12 -0
README.md CHANGED
@@ -81,6 +81,18 @@ Converted with **litert-torch** (`build_dmcount.py`): loads the MIT DM-Count (UC
81
  weights and exports the raw density map. The UCF-QNRF checkpoint generalizes best across
82
  scenes; the upstream repo also bundles an NWPU-Crowd variant.
83
 
 
 
 
 
 
 
 
 
 
 
 
 
84
  ## License
85
 
86
  MIT (DM-Count / cvlab-stonybrook). Trained on UCF-QNRF.
 
81
  weights and exports the raw density map. The UCF-QNRF checkpoint generalizes best across
82
  scenes; the upstream repo also bundles an NWPU-Crowd variant.
83
 
84
+ ## Performance
85
+
86
+ Measured on a **Pixel 8a** (Tensor G3, Android 16) with the standard TFLite [`benchmark_model`](https://ai.google.dev/edge/litert/models/measurement) tool — 10 warm-up runs then 50 timed runs, reported as the tool's mean.
87
+
88
+ | Runtime | Backend | Graph on GPU | Latency |
89
+ |---|---|---|---|
90
+ | LiteRT `CompiledModel` (`LITERT_CL`) | GPU | 30 / 30 | ~79 ms |
91
+ | TFLite `benchmark_model` (`TfLiteGpuDelegateV2`) | GPU (OpenCL) | 30 / 30 | 98.2 ms |
92
+ | TFLite `benchmark_model` | CPU (XNNPACK, 4 threads) | — | 3185.7 ms |
93
+
94
+ **The two GPU rows are different runtimes, not a contradiction.** The `LITERT_CL` figure is the one recorded when this model shipped, taken through LiteRT's own `CompiledModel` accelerator — the path the Kotlin sample app and the LiteRT API use. The `TfLiteGpuDelegateV2` figure is the classic TFLite OpenCL delegate, measured with a tool anyone can download and re-run. They agree on how much of the graph the GPU takes; they disagree on speed, and the classic delegate is the slower of the two here. Read the `TfLiteGpuDelegateV2` row as a reproducible floor, not as this model's speed on LiteRT.
95
+
96
  ## License
97
 
98
  MIT (DM-Count / cvlab-stonybrook). Trained on UCF-QNRF.