Spaces:
Running
Running
Merge branch 'main' into SW-576-update-hf-benchmarks-webpage-with-measured-wer-instead-of-benchmarked-from-whisperkittools
Browse files
.github/scripts/process_report.py
CHANGED
@@ -18,22 +18,23 @@ def format_datetime(dt_str: str) -> str:
|
|
18 |
return dt_str.replace("T", " ").split("+")[0]
|
19 |
|
20 |
|
21 |
-
def read_json_line_by_line(file_path):
|
22 |
"""
|
23 |
Read a JSON file line by line, parsing each line as a separate JSON object.
|
|
|
24 |
|
25 |
:param file_path: Path to the JSON file
|
|
|
26 |
:return: List of parsed JSON objects
|
27 |
-
|
28 |
-
This function is useful for reading large JSON files that contain one JSON object
|
29 |
-
per line. It handles JSON parsing errors gracefully, skipping invalid lines.
|
30 |
"""
|
31 |
data = []
|
32 |
with open(file_path, "r") as f:
|
33 |
for line in f:
|
34 |
try:
|
35 |
item = json.loads(line.strip())
|
36 |
-
|
|
|
|
|
37 |
except json.JSONDecodeError:
|
38 |
print(f"Skipping invalid JSON in {file_path}: {line}")
|
39 |
return data
|
@@ -216,22 +217,31 @@ def analyze_support_changes(prev_csv, curr_csv):
|
|
216 |
|
217 |
|
218 |
def generate_report():
|
219 |
-
# Load
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
226 |
|
227 |
prev_dict = {(d["model"], d["device"], d["os"]): d for d in prev_perf_data}
|
228 |
curr_dict = {(d["model"], d["device"], d["os"]): d for d in curr_perf_data}
|
229 |
common_configs = set(curr_dict.keys()) & set(prev_dict.keys())
|
230 |
|
231 |
# Load version data
|
232 |
-
with open("dashboard_data/version.json", "r") as f:
|
233 |
prev_version = json.load(f)
|
234 |
-
with open("report_data/version.json", "r") as f:
|
235 |
curr_version = json.load(f)
|
236 |
|
237 |
prev_releases = set(prev_version.get("releases", []))
|
@@ -388,13 +398,7 @@ def generate_report():
|
|
388 |
else:
|
389 |
# If there are changes, show the metrics
|
390 |
performance_text += f"{device_info}\n"
|
391 |
-
table = format_metrics_table(
|
392 |
-
config,
|
393 |
-
prev_dict,
|
394 |
-
curr_dict,
|
395 |
-
improved_metrics,
|
396 |
-
regressed_metrics,
|
397 |
-
)
|
398 |
performance_text += table
|
399 |
performance_text += "\n\n"
|
400 |
|
|
|
18 |
return dt_str.replace("T", " ").split("+")[0]
|
19 |
|
20 |
|
21 |
+
def read_json_line_by_line(file_path, commit_hash=None):
|
22 |
"""
|
23 |
Read a JSON file line by line, parsing each line as a separate JSON object.
|
24 |
+
Optionally filter by commit_hash if provided.
|
25 |
|
26 |
:param file_path: Path to the JSON file
|
27 |
+
:param commit_hash: Optional commit hash to filter data
|
28 |
:return: List of parsed JSON objects
|
|
|
|
|
|
|
29 |
"""
|
30 |
data = []
|
31 |
with open(file_path, "r") as f:
|
32 |
for line in f:
|
33 |
try:
|
34 |
item = json.loads(line.strip())
|
35 |
+
# Filter by commit_hash if provided
|
36 |
+
if commit_hash is None or item.get("commit_hash") == commit_hash:
|
37 |
+
data.append(item)
|
38 |
except json.JSONDecodeError:
|
39 |
print(f"Skipping invalid JSON in {file_path}: {line}")
|
40 |
return data
|
|
|
217 |
|
218 |
|
219 |
def generate_report():
|
220 |
+
# Load version data first to get commit hashes
|
221 |
+
with open("report_data/version.json", "r") as f:
|
222 |
+
version_data = json.load(f)
|
223 |
+
|
224 |
+
# Get the last two commit hashes from releases array
|
225 |
+
releases = version_data.get("releases", [])
|
226 |
+
if len(releases) >= 2:
|
227 |
+
curr_commit_hash = releases[-1] # latest commit
|
228 |
+
prev_commit_hash = releases[-2] # previous commit
|
229 |
+
else:
|
230 |
+
curr_commit_hash = releases[-1] if releases else ""
|
231 |
+
prev_commit_hash = ""
|
232 |
+
|
233 |
+
# Load and filter performance data by commit hash
|
234 |
+
prev_perf_data = read_json_line_by_line("dashboard_data/performance_data.json", commit_hash=prev_commit_hash)
|
235 |
+
curr_perf_data = read_json_line_by_line("report_data/performance_data.json", commit_hash=curr_commit_hash)
|
236 |
|
237 |
prev_dict = {(d["model"], d["device"], d["os"]): d for d in prev_perf_data}
|
238 |
curr_dict = {(d["model"], d["device"], d["os"]): d for d in curr_perf_data}
|
239 |
common_configs = set(curr_dict.keys()) & set(prev_dict.keys())
|
240 |
|
241 |
# Load version data
|
242 |
+
with open("dashboard_data/version.json", "r") as f:
|
243 |
prev_version = json.load(f)
|
244 |
+
with open("report_data/version.json", "r") as f:
|
245 |
curr_version = json.load(f)
|
246 |
|
247 |
prev_releases = set(prev_version.get("releases", []))
|
|
|
398 |
else:
|
399 |
# If there are changes, show the metrics
|
400 |
performance_text += f"{device_info}\n"
|
401 |
+
table = format_metrics_table(config, prev_dict, curr_dict, improved_metrics, regressed_metrics)
|
|
|
|
|
|
|
|
|
|
|
|
|
402 |
performance_text += table
|
403 |
performance_text += "\n\n"
|
404 |
|
dashboard_data/performance_data.json
CHANGED
The diff for this file is too large to render.
See raw diff
|
|
dashboard_data/support_data_8c0acbd.csv
CHANGED
@@ -1,22 +1,22 @@
|
|
1 |
,Model,"Apple M2 Pro (Mac14,12)","Apple M3 Max (Mac15,10)","iPad Air (5th generation) (iPad13,16)","iPad Pro (11-inch) (3rd generation) (iPad13,6)","iPad mini (6th generation) (iPad14,1)","iPad Air 11-inch (M2) (iPad14,8)","iPad Air 11-inch (M3) (iPad15,3)","iPad (A16) (iPad15,7)","iPad mini (A17 Pro) (iPad16,1)","iPad Pro 11-inch (M4) (iPad16,3)","iPhone 11 (iPhone12,1)","iPhone 12 mini (iPhone13,1)","iPhone 13 Pro (iPhone14,2)","iPhone 13 (iPhone14,5)","iPhone 14 (iPhone14,7)","iPhone 15 (iPhone15,4)","iPhone 15 Pro Max (iPhone16,2)","iPhone 16 (iPhone17,3)","iPhone 16e (iPhone17,5)"
|
2 |
-
distil-whisper_distil-large-v3,distil-whisper_distil-large-v3,β
macOS 15.5,β
macOS 15.5,Not Supported,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad13%2C6_summary_2025-06-17T205025.json>iPadOS 18.4</a>,Not Supported,β
iPadOS 18.5,β
iPadOS 26.0
|
3 |
distil-whisper_distil-large-v3_594MB,distil-whisper_distil-large-v3_594MB,β
macOS 15.5,β
macOS 15.5,Not Supported,β
iPadOS 18.4,β
iPadOS 18.4,β
iPadOS 18.5,β
iPadOS 26.0,β
iPadOS 18.4,β
iPadOS 18.4,β
iPadOS 18.4.1,Not Supported,Not Supported,β
iOS 18.1,β
iOS 18.5,β
iOS 18.5,β
iOS 18.5,β
iOS 18.5,β
iOS 18.4.1,β
iOS 18.5
|
4 |
-
distil-whisper_distil-large-v3_turbo,distil-whisper_distil-large-v3_turbo,β
macOS 15.5,β
macOS 15.5,Not Supported
|
5 |
-
distil-whisper_distil-large-v3_turbo_600MB,distil-whisper_distil-large-v3_turbo_600MB,β
macOS 15.5,β
macOS 15.5,Not Supported
|
6 |
openai_whisper-base,openai_whisper-base,β
macOS 15.5,β
macOS 15.5,β
iPadOS 18.4.1,β
iPadOS 18.4,β
iPadOS 18.4,β
iPadOS 18.5,β
iPadOS 26.0,β
iPadOS 18.4,β
iPadOS 18.4,β
iPadOS 18.4.1,β
iOS 26.0,β
iOS 18.4.1,β
iOS 18.1,β
iOS 18.5,β
iOS 18.5,β
iOS 18.5,β
iOS 18.5,β
iOS 18.4.1,β
iOS 18.5
|
7 |
openai_whisper-base.en,openai_whisper-base.en,β
macOS 15.5,β
macOS 15.5,β
iPadOS 18.4.1,β
iPadOS 18.4,β
iPadOS 18.4,β
iPadOS 18.5,β
iPadOS 26.0,β
iPadOS 18.4,β
iPadOS 18.4,β
iPadOS 18.4.1,β
iOS 26.0,β
iOS 18.4.1,β
iOS 18.1,β
iOS 18.5,β
iOS 18.5,β
iOS 18.5,β
iOS 18.5,β
iOS 18.4.1,β
iOS 18.5
|
8 |
-
openai_whisper-large-v2,openai_whisper-large-v2,β
macOS 15.5,β
macOS 15.5,Not Supported,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad13%2C6_summary_2025-06-17T205025.json>iPadOS 18.4</a>,Not Supported,β
iPadOS 18.5,β
iPadOS 26.0
|
9 |
openai_whisper-large-v2_949MB,openai_whisper-large-v2_949MB,β
macOS 15.5,β
macOS 15.5,Not Supported,β
iPadOS 18.4,β
iPadOS 18.4,β
iPadOS 18.5,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad15%2C3_summary_2025-06-17T205025.json>iPadOS 26.0</a>,β
iPadOS 18.4,β
iPadOS 18.4,β
iPadOS 18.4.1,Not Supported,Not Supported,β
iOS 18.1,β
iOS 18.5,β
iOS 18.5,β
iOS 18.5,β
iOS 18.5,β
iOS 18.4.1,β
iOS 18.5
|
10 |
-
openai_whisper-large-v2_turbo,openai_whisper-large-v2_turbo,β
macOS 15.5,β
macOS 15.5,Not Supported
|
11 |
-
openai_whisper-large-v2_turbo_955MB,openai_whisper-large-v2_turbo_955MB,β
macOS 15.5,β
macOS 15.5,Not Supported
|
12 |
-
openai_whisper-large-v3,openai_whisper-large-v3,β
macOS 15.5,β
macOS 15.5,Not Supported,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad13%2C6_summary_2025-06-17T205025.json>iPadOS 18.4</a>,Not Supported,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad14%2C8_summary_2025-06-16T192343.json>iPadOS 18.5</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad15%2C3_summary_2025-06-17T205025.json>iPadOS 26.0</a
|
13 |
-
openai_whisper-large-v3-v20240930,openai_whisper-large-v3-v20240930,β
macOS 15.5,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/Mac15%2C10_summary_2025-06-15T230300.json>macOS 15.5</a>,Not Supported,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad13%2C6_summary_2025-06-17T205025.json>iPadOS 18.4</a>,Not Supported,? iPadOS 18.5,? iPadOS 26.0
|
14 |
openai_whisper-large-v3-v20240930_626MB,openai_whisper-large-v3-v20240930_626MB,β
macOS 15.5,β
macOS 15.5,Not Supported,β
iPadOS 18.4,β
iPadOS 18.4,β
iPadOS 18.5,β
iPadOS 26.0,β
iPadOS 18.4,β
iPadOS 18.4,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad16%2C3_summary_2025-06-16T220810.json>iPadOS 18.4.1</a>,Not Supported,Not Supported,β
iOS 18.1,β
iOS 18.5,β
iOS 18.5,β
iOS 18.5,β
iOS 18.5,β
iOS 18.4.1,β
iOS 18.5
|
15 |
-
openai_whisper-large-v3-v20240930_turbo,openai_whisper-large-v3-v20240930_turbo,β
macOS 15.5,β
macOS 15.5,Not Supported
|
16 |
-
openai_whisper-large-v3-v20240930_turbo_632MB,openai_whisper-large-v3-v20240930_turbo_632MB,β
macOS 15.5,β
macOS 15.5,Not Supported
|
17 |
openai_whisper-large-v3_947MB,openai_whisper-large-v3_947MB,β
macOS 15.5,β
macOS 15.5,Not Supported,β
iPadOS 18.4,β
iPadOS 18.4,β
iPadOS 18.5,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad15%2C3_summary_2025-06-17T205025.json>iPadOS 26.0</a>,β
iPadOS 18.4,β
iPadOS 18.4,β
iPadOS 18.4.1,Not Supported,Not Supported,β
iOS 18.1,β
iOS 18.5,β
iOS 18.5,β
iOS 18.5,β
iOS 18.5,β
iOS 18.4.1,β
iOS 18.5
|
18 |
-
openai_whisper-large-v3_turbo,openai_whisper-large-v3_turbo,β
macOS 15.5,β
macOS 15.5,Not Supported
|
19 |
-
openai_whisper-large-v3_turbo_954MB,openai_whisper-large-v3_turbo_954MB,β
macOS 15.5,β
macOS 15.5,Not Supported
|
20 |
openai_whisper-small,openai_whisper-small,β
macOS 15.5,β
macOS 15.5,β
iPadOS 18.4.1,β
iPadOS 18.4,β
iPadOS 18.4,β
iPadOS 18.5,β
iPadOS 26.0,β
iPadOS 18.4,β
iPadOS 18.4,β
iPadOS 18.4.1,Not Supported,β
iOS 18.4.1,β
iOS 18.1,β
iOS 18.5,β
iOS 18.5,β
iOS 18.5,β
iOS 18.5,β
iOS 18.4.1,β
iOS 18.5
|
21 |
openai_whisper-small.en,openai_whisper-small.en,β
macOS 15.5,β
macOS 15.5,β
iPadOS 18.4.1,β
iPadOS 18.4,β
iPadOS 18.4,β
iPadOS 18.5,β
iPadOS 26.0,β
iPadOS 18.4,β
iPadOS 18.4,β
iPadOS 18.4.1,Not Supported,β
iOS 18.4.1,β
iOS 18.1,β
iOS 18.5,β
iOS 18.5,β
iOS 18.5,β
iOS 18.5,β
iOS 18.4.1,β
iOS 18.5
|
22 |
openai_whisper-tiny,openai_whisper-tiny,β
macOS 15.5,β
macOS 15.5,β
iPadOS 18.4.1,β
iPadOS 18.4,β
iPadOS 18.4,β
iPadOS 18.5,β
iPadOS 26.0,β
iPadOS 18.4,β
iPadOS 18.4,β
iPadOS 18.4.1,β
iOS 26.0,β
iOS 18.4.1,β
iOS 18.1,β
iOS 18.5,β
iOS 18.5,β
iOS 18.5,β
iOS 18.5,β
iOS 18.4.1,β
iOS 18.5
|
|
|
1 |
,Model,"Apple M2 Pro (Mac14,12)","Apple M3 Max (Mac15,10)","iPad Air (5th generation) (iPad13,16)","iPad Pro (11-inch) (3rd generation) (iPad13,6)","iPad mini (6th generation) (iPad14,1)","iPad Air 11-inch (M2) (iPad14,8)","iPad Air 11-inch (M3) (iPad15,3)","iPad (A16) (iPad15,7)","iPad mini (A17 Pro) (iPad16,1)","iPad Pro 11-inch (M4) (iPad16,3)","iPhone 11 (iPhone12,1)","iPhone 12 mini (iPhone13,1)","iPhone 13 Pro (iPhone14,2)","iPhone 13 (iPhone14,5)","iPhone 14 (iPhone14,7)","iPhone 15 (iPhone15,4)","iPhone 15 Pro Max (iPhone16,2)","iPhone 16 (iPhone17,3)","iPhone 16e (iPhone17,5)"
|
2 |
+
distil-whisper_distil-large-v3,distil-whisper_distil-large-v3,β
macOS 15.5,β
macOS 15.5,Not Supported,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad13%2C6_summary_2025-06-17T205025.json>iPadOS 18.4</a>,Not Supported,β
iPadOS 18.5,β
iPadOS 26.0,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad15%2C7_summary_2025-06-16T220810.json>iPadOS 18.4</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad16%2C1_summary_2025-06-16T220810.json>iPadOS 18.4</a>,β
iPadOS 18.4.1,Not Supported,Not Supported,Not Supported,Not Supported,Not Supported,Not Supported,Not Supported,Not Supported,Not Supported
|
3 |
distil-whisper_distil-large-v3_594MB,distil-whisper_distil-large-v3_594MB,β
macOS 15.5,β
macOS 15.5,Not Supported,β
iPadOS 18.4,β
iPadOS 18.4,β
iPadOS 18.5,β
iPadOS 26.0,β
iPadOS 18.4,β
iPadOS 18.4,β
iPadOS 18.4.1,Not Supported,Not Supported,β
iOS 18.1,β
iOS 18.5,β
iOS 18.5,β
iOS 18.5,β
iOS 18.5,β
iOS 18.4.1,β
iOS 18.5
|
4 |
+
distil-whisper_distil-large-v3_turbo,distil-whisper_distil-large-v3_turbo,β
macOS 15.5,β
macOS 15.5,Not Supported,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad13%2C6_summary_2025-06-17T205025.json>iPadOS 18.4</a>,Not Supported,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad14%2C8_summary_2025-06-16T192343.json>iPadOS 18.5</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad15%2C3_summary_2025-06-17T205025.json>iPadOS 26.0</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad15%2C7_summary_2025-06-16T220810.json>iPadOS 18.4</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad16%2C1_summary_2025-06-16T220810.json>iPadOS 18.4</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad16%2C3_summary_2025-06-16T220810.json>iPadOS 18.4.1</a>,Not Supported,Not Supported,Not Supported,Not Supported,Not Supported,Not Supported,Not Supported,Not Supported,Not Supported
|
5 |
+
distil-whisper_distil-large-v3_turbo_600MB,distil-whisper_distil-large-v3_turbo_600MB,β
macOS 15.5,β
macOS 15.5,Not Supported,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad13%2C6_summary_2025-06-17T205025.json>iPadOS 18.4</a>,β
iPadOS 18.4,β
iPadOS 18.5,β
iPadOS 26.0,β
iPadOS 18.4,β
iPadOS 18.4,β
iPadOS 18.4.1,Not Supported,Not Supported,β
iOS 18.1,β
iOS 18.5,β
iOS 18.5,β
iOS 18.5,β
iOS 18.5,β
iOS 18.4.1,β
iOS 18.5
|
6 |
openai_whisper-base,openai_whisper-base,β
macOS 15.5,β
macOS 15.5,β
iPadOS 18.4.1,β
iPadOS 18.4,β
iPadOS 18.4,β
iPadOS 18.5,β
iPadOS 26.0,β
iPadOS 18.4,β
iPadOS 18.4,β
iPadOS 18.4.1,β
iOS 26.0,β
iOS 18.4.1,β
iOS 18.1,β
iOS 18.5,β
iOS 18.5,β
iOS 18.5,β
iOS 18.5,β
iOS 18.4.1,β
iOS 18.5
|
7 |
openai_whisper-base.en,openai_whisper-base.en,β
macOS 15.5,β
macOS 15.5,β
iPadOS 18.4.1,β
iPadOS 18.4,β
iPadOS 18.4,β
iPadOS 18.5,β
iPadOS 26.0,β
iPadOS 18.4,β
iPadOS 18.4,β
iPadOS 18.4.1,β
iOS 26.0,β
iOS 18.4.1,β
iOS 18.1,β
iOS 18.5,β
iOS 18.5,β
iOS 18.5,β
iOS 18.5,β
iOS 18.4.1,β
iOS 18.5
|
8 |
+
openai_whisper-large-v2,openai_whisper-large-v2,β
macOS 15.5,β
macOS 15.5,Not Supported,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad13%2C6_summary_2025-06-17T205025.json>iPadOS 18.4</a>,Not Supported,β
iPadOS 18.5,β
iPadOS 26.0,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad15%2C7_summary_2025-06-16T220810.json>iPadOS 18.4</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad16%2C1_summary_2025-06-16T220810.json>iPadOS 18.4</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad16%2C3_summary_2025-06-16T220810.json>iPadOS 18.4.1</a>,Not Supported,Not Supported,Not Supported,Not Supported,Not Supported,Not Supported,Not Supported,Not Supported,Not Supported
|
9 |
openai_whisper-large-v2_949MB,openai_whisper-large-v2_949MB,β
macOS 15.5,β
macOS 15.5,Not Supported,β
iPadOS 18.4,β
iPadOS 18.4,β
iPadOS 18.5,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad15%2C3_summary_2025-06-17T205025.json>iPadOS 26.0</a>,β
iPadOS 18.4,β
iPadOS 18.4,β
iPadOS 18.4.1,Not Supported,Not Supported,β
iOS 18.1,β
iOS 18.5,β
iOS 18.5,β
iOS 18.5,β
iOS 18.5,β
iOS 18.4.1,β
iOS 18.5
|
10 |
+
openai_whisper-large-v2_turbo,openai_whisper-large-v2_turbo,β
macOS 15.5,β
macOS 15.5,Not Supported,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad13%2C6_summary_2025-06-17T205025.json>iPadOS 18.4</a>,Not Supported,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad14%2C8_summary_2025-06-16T192343.json>iPadOS 18.5</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad15%2C3_summary_2025-06-17T205025.json>iPadOS 26.0</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad15%2C7_summary_2025-06-16T220810.json>iPadOS 18.4</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad16%2C1_summary_2025-06-16T220810.json>iPadOS 18.4</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad16%2C3_summary_2025-06-16T220810.json>iPadOS 18.4.1</a>,Not Supported,Not Supported,Not Supported,Not Supported,Not Supported,Not Supported,Not Supported,Not Supported,Not Supported
|
11 |
+
openai_whisper-large-v2_turbo_955MB,openai_whisper-large-v2_turbo_955MB,β
macOS 15.5,β
macOS 15.5,Not Supported,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad13%2C6_summary_2025-06-17T205025.json>iPadOS 18.4</a>,β
iPadOS 18.4,β
iPadOS 18.5,β
iPadOS 26.0,β
iPadOS 18.4,β
iPadOS 18.4,β
iPadOS 18.4.1,Not Supported,Not Supported,β
iOS 18.1,β
iOS 18.5,β
iOS 18.5,β
iOS 18.5,β
iOS 18.5,β
iOS 18.4.1,β
iOS 18.5
|
12 |
+
openai_whisper-large-v3,openai_whisper-large-v3,β
macOS 15.5,β
macOS 15.5,Not Supported,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad13%2C6_summary_2025-06-17T205025.json>iPadOS 18.4</a>,Not Supported,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad14%2C8_summary_2025-06-16T192343.json>iPadOS 18.5</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad15%2C3_summary_2025-06-17T205025.json>iPadOS 26.0</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad15%2C7_summary_2025-06-16T220810.json>iPadOS 18.4</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad16%2C1_summary_2025-06-16T220810.json>iPadOS 18.4</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad16%2C3_summary_2025-06-16T220810.json>iPadOS 18.4.1</a>,Not Supported,Not Supported,Not Supported,Not Supported,Not Supported,Not Supported,Not Supported,Not Supported,Not Supported
|
13 |
+
openai_whisper-large-v3-v20240930,openai_whisper-large-v3-v20240930,β
macOS 15.5,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/Mac15%2C10_summary_2025-06-15T230300.json>macOS 15.5</a>,Not Supported,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad13%2C6_summary_2025-06-17T205025.json>iPadOS 18.4</a>,Not Supported,? iPadOS 18.5,? iPadOS 26.0,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad15%2C7_summary_2025-06-16T220810.json>iPadOS 18.4</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad16%2C1_summary_2025-06-16T220810.json>iPadOS 18.4</a>,? iPadOS 18.4.1,Not Supported,Not Supported,Not Supported,Not Supported,Not Supported,Not Supported,Not Supported,Not Supported,Not Supported
|
14 |
openai_whisper-large-v3-v20240930_626MB,openai_whisper-large-v3-v20240930_626MB,β
macOS 15.5,β
macOS 15.5,Not Supported,β
iPadOS 18.4,β
iPadOS 18.4,β
iPadOS 18.5,β
iPadOS 26.0,β
iPadOS 18.4,β
iPadOS 18.4,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad16%2C3_summary_2025-06-16T220810.json>iPadOS 18.4.1</a>,Not Supported,Not Supported,β
iOS 18.1,β
iOS 18.5,β
iOS 18.5,β
iOS 18.5,β
iOS 18.5,β
iOS 18.4.1,β
iOS 18.5
|
15 |
+
openai_whisper-large-v3-v20240930_turbo,openai_whisper-large-v3-v20240930_turbo,β
macOS 15.5,β
macOS 15.5,Not Supported,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad13%2C6_summary_2025-06-17T205025.json>iPadOS 18.4</a>,Not Supported,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad14%2C8_summary_2025-06-16T192343.json>iPadOS 18.5</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad15%2C3_summary_2025-06-17T205025.json>iPadOS 26.0</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad15%2C7_summary_2025-06-16T220810.json>iPadOS 18.4</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad16%2C1_summary_2025-06-16T220810.json>iPadOS 18.4</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad16%2C3_summary_2025-06-16T220810.json>iPadOS 18.4.1</a>,Not Supported,Not Supported,Not Supported,Not Supported,Not Supported,Not Supported,Not Supported,Not Supported,Not Supported
|
16 |
+
openai_whisper-large-v3-v20240930_turbo_632MB,openai_whisper-large-v3-v20240930_turbo_632MB,β
macOS 15.5,β
macOS 15.5,Not Supported,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad13%2C6_summary_2025-06-17T205025.json>iPadOS 18.4</a>,β
iPadOS 18.4,β
iPadOS 18.5,β
iPadOS 26.0,β
iPadOS 18.4,β
iPadOS 18.4,β
iPadOS 18.4.1,Not Supported,Not Supported,β
iOS 18.1,β
iOS 18.5,β
iOS 18.5,β
iOS 18.5,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPhone16%2C2_summary_2025-06-16T135523.json>iOS 18.5</a>,β
iOS 18.4.1,β
iOS 18.5
|
17 |
openai_whisper-large-v3_947MB,openai_whisper-large-v3_947MB,β
macOS 15.5,β
macOS 15.5,Not Supported,β
iPadOS 18.4,β
iPadOS 18.4,β
iPadOS 18.5,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad15%2C3_summary_2025-06-17T205025.json>iPadOS 26.0</a>,β
iPadOS 18.4,β
iPadOS 18.4,β
iPadOS 18.4.1,Not Supported,Not Supported,β
iOS 18.1,β
iOS 18.5,β
iOS 18.5,β
iOS 18.5,β
iOS 18.5,β
iOS 18.4.1,β
iOS 18.5
|
18 |
+
openai_whisper-large-v3_turbo,openai_whisper-large-v3_turbo,β
macOS 15.5,β
macOS 15.5,Not Supported,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad13%2C6_summary_2025-06-17T205025.json>iPadOS 18.4</a>,Not Supported,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad14%2C8_summary_2025-06-16T192343.json>iPadOS 18.5</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad15%2C3_summary_2025-06-17T205025.json>iPadOS 26.0</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad15%2C7_summary_2025-06-16T220810.json>iPadOS 18.4</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad16%2C1_summary_2025-06-16T220810.json>iPadOS 18.4</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad16%2C3_summary_2025-06-16T220810.json>iPadOS 18.4.1</a>,Not Supported,Not Supported,Not Supported,Not Supported,Not Supported,Not Supported,Not Supported,Not Supported,Not Supported
|
19 |
+
openai_whisper-large-v3_turbo_954MB,openai_whisper-large-v3_turbo_954MB,β
macOS 15.5,β
macOS 15.5,Not Supported,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-06-13T034257_8c0acbd/iPad13%2C6_summary_2025-06-17T205025.json>iPadOS 18.4</a>,β
iPadOS 18.4,β
iPadOS 18.5,β
iPadOS 26.0,β
iPadOS 18.4,β
iPadOS 18.4,β
iPadOS 18.4.1,Not Supported,Not Supported,β
iOS 18.1,β
iOS 18.5,β
iOS 18.5,β
iOS 18.5,β
iOS 18.5,β
iOS 18.4.1,β
iOS 18.5
|
20 |
openai_whisper-small,openai_whisper-small,β
macOS 15.5,β
macOS 15.5,β
iPadOS 18.4.1,β
iPadOS 18.4,β
iPadOS 18.4,β
iPadOS 18.5,β
iPadOS 26.0,β
iPadOS 18.4,β
iPadOS 18.4,β
iPadOS 18.4.1,Not Supported,β
iOS 18.4.1,β
iOS 18.1,β
iOS 18.5,β
iOS 18.5,β
iOS 18.5,β
iOS 18.5,β
iOS 18.4.1,β
iOS 18.5
|
21 |
openai_whisper-small.en,openai_whisper-small.en,β
macOS 15.5,β
macOS 15.5,β
iPadOS 18.4.1,β
iPadOS 18.4,β
iPadOS 18.4,β
iPadOS 18.5,β
iPadOS 26.0,β
iPadOS 18.4,β
iPadOS 18.4,β
iPadOS 18.4.1,Not Supported,β
iOS 18.4.1,β
iOS 18.1,β
iOS 18.5,β
iOS 18.5,β
iOS 18.5,β
iOS 18.5,β
iOS 18.4.1,β
iOS 18.5
|
22 |
openai_whisper-tiny,openai_whisper-tiny,β
macOS 15.5,β
macOS 15.5,β
iPadOS 18.4.1,β
iPadOS 18.4,β
iPadOS 18.4,β
iPadOS 18.5,β
iPadOS 26.0,β
iPadOS 18.4,β
iPadOS 18.4,β
iPadOS 18.4.1,β
iOS 26.0,β
iOS 18.4.1,β
iOS 18.1,β
iOS 18.5,β
iOS 18.5,β
iOS 18.5,β
iOS 18.5,β
iOS 18.4.1,β
iOS 18.5
|
dashboard_data/support_data_c814cae.csv
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
,Model,"Apple M2 (Mac14,3)","Apple M4 (Mac16,10)","Apple M1 (Macmini9,1)","iPad Pro (11-inch) (3rd generation) (iPad13,6)","iPad Air 11-inch (M2) (iPad14,8)","iPad Air 13-inch (M3) (iPad15,5)","iPad (A16) (iPad15,7)","iPad mini (A17 Pro) (iPad16,1)","iPad Pro 11-inch (M4) (iPad16,3)","iPhone 15 (iPhone15,4)","iPhone 16 Pro (iPhone17,1)","iPhone 16e (iPhone17,5)"
|
2 |
+
distil-whisper_distil-large-v3,distil-whisper_distil-large-v3,β
macOS 26.0,β
macOS 26.0<p>β
macOS 15.5</p>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/Macmini9%2C1_summary_2025-08-29T100943.json>macOS 26.0</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad13%2C6_summary_2025-08-04T202532.json>iPadOS 18.5</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad14%2C8_summary_2025-08-04T202532.json>iPadOS 18.4.1</a><p>? iPadOS 18.6</p>,? iPadOS 18.6,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad15%2C7_summary_2025-08-01T235644.json>iPadOS 18.6</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad16%2C1_summary_2025-08-04T202532.json>iPadOS 18.5</a>,β
iPadOS 26.0<p>? iPadOS 18.4.1</p>,Not Supported,Not Supported,Not Supported
|
3 |
+
distil-whisper_distil-large-v3_594MB,distil-whisper_distil-large-v3_594MB,β
macOS 26.0,β
macOS 26.0<p>β
macOS 15.5</p>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/Macmini9%2C1_summary_2025-08-29T100943.json>macOS 26.0</a>,β
iPadOS 18.5,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad14%2C8_summary_2025-08-04T202532.json>iPadOS 18.4.1</a><p>β
iPadOS 18.6</p>,β
iPadOS 18.6,β
iPadOS 18.6,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad16%2C1_summary_2025-08-04T202532.json>iPadOS 18.5</a>,β
iPadOS 26.0<p>β
iPadOS 18.4.1</p>,β
iOS 26.0,β
iOS 26.0,β
iOS 18.5
|
4 |
+
distil-whisper_distil-large-v3_turbo,distil-whisper_distil-large-v3_turbo,β
macOS 26.0,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/Mac16%2C10_summary_2025-08-29T104851.json>macOS 26.0</a><p>β
macOS 15.5</p>,Not Supported,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad13%2C6_summary_2025-08-04T202532.json>iPadOS 18.5</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad14%2C8_summary_2025-08-04T202532.json>iPadOS 18.4.1</a><p>? iPadOS 18.6</p>,? iPadOS 18.6,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad15%2C7_summary_2025-08-01T235644.json>iPadOS 18.6</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad16%2C1_summary_2025-08-04T202532.json>iPadOS 18.5</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad16%2C3_summary_2025-08-27T211253.json>iPadOS 26.0</a><p>? iPadOS 18.4.1</p>,Not Supported,Not Supported,Not Supported
|
5 |
+
distil-whisper_distil-large-v3_turbo_600MB,distil-whisper_distil-large-v3_turbo_600MB,β
macOS 26.0,β
macOS 26.0<p>β
macOS 15.5</p>,Not Supported,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad13%2C6_summary_2025-08-04T202532.json>iPadOS 18.5</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad14%2C8_summary_2025-08-04T202532.json>iPadOS 18.4.1</a><p>? iPadOS 18.6</p>,? iPadOS 18.6,? iPadOS 18.6,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad16%2C1_summary_2025-08-04T202532.json>iPadOS 18.5</a>,β
iPadOS 26.0<p>? iPadOS 18.4.1</p>,β
iOS 26.0,β
iOS 26.0,β
iOS 18.5
|
6 |
+
openai_whisper-base,openai_whisper-base,β
macOS 26.0,β
macOS 26.0<p>β
macOS 15.5</p>,β
macOS 26.0,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad13%2C6_summary_2025-08-04T202532.json>iPadOS 18.5</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad14%2C8_summary_2025-08-04T202532.json>iPadOS 18.4.1</a><p>β
iPadOS 18.6</p>,β
iPadOS 18.6,β
iPadOS 18.6,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad16%2C1_summary_2025-08-04T202532.json>iPadOS 18.5</a>,β
iPadOS 26.0<p>β
iPadOS 18.4.1</p>,β
iOS 26.0,β
iOS 26.0,β
iOS 18.5
|
7 |
+
openai_whisper-base.en,openai_whisper-base.en,β
macOS 26.0,β
macOS 26.0<p>β
macOS 15.5</p>,β
macOS 26.0,β
iPadOS 18.5,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad14%2C8_summary_2025-08-04T202532.json>iPadOS 18.4.1</a><p>β
iPadOS 18.6</p>,β
iPadOS 18.6,β
iPadOS 18.6,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad16%2C1_summary_2025-08-04T202532.json>iPadOS 18.5</a>,β
iPadOS 26.0<p>β
iPadOS 18.4.1</p>,β
iOS 26.0,β
iOS 26.0,β
iOS 18.5
|
8 |
+
openai_whisper-large-v2,openai_whisper-large-v2,β
macOS 26.0,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/Mac16%2C10_summary_2025-08-29T104851.json>macOS 26.0</a><p>β
macOS 15.5</p>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/Macmini9%2C1_summary_2025-08-29T100943.json>macOS 26.0</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad13%2C6_summary_2025-08-04T202532.json>iPadOS 18.5</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad14%2C8_summary_2025-08-04T202532.json>iPadOS 18.4.1</a><p>β
iPadOS 18.6</p>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad15%2C5_summary_2025-08-01T235644.json>iPadOS 18.6</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad15%2C7_summary_2025-08-01T235644.json>iPadOS 18.6</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad16%2C1_summary_2025-08-04T202532.json>iPadOS 18.5</a>,β
iPadOS 26.0<p>β
iPadOS 18.4.1</p>,Not Supported,Not Supported,Not Supported
|
9 |
+
openai_whisper-large-v2_949MB,openai_whisper-large-v2_949MB,β
macOS 26.0,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/Mac16%2C10_summary_2025-08-29T104851.json>macOS 26.0</a><p>β
macOS 15.5</p>,β
macOS 26.0,β
iPadOS 18.5,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad14%2C8_summary_2025-08-04T202532.json>iPadOS 18.4.1</a><p>? iPadOS 18.6</p>,? iPadOS 18.6,? iPadOS 18.6,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad16%2C1_summary_2025-08-04T202532.json>iPadOS 18.5</a>,β
iPadOS 26.0<p>? iPadOS 18.4.1</p>,β
iOS 26.0,β
iOS 26.0,β
iOS 18.5
|
10 |
+
openai_whisper-large-v2_turbo,openai_whisper-large-v2_turbo,β
macOS 26.0,β
macOS 26.0<p>β
macOS 15.5</p>,Not Supported,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad13%2C6_summary_2025-08-04T202532.json>iPadOS 18.5</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad14%2C8_summary_2025-08-04T202532.json>iPadOS 18.4.1</a><p>? iPadOS 18.6</p>,? iPadOS 18.6,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad15%2C7_summary_2025-08-01T235644.json>iPadOS 18.6</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad16%2C1_summary_2025-08-04T202532.json>iPadOS 18.5</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad16%2C3_summary_2025-08-27T211253.json>iPadOS 26.0</a><p>? iPadOS 18.4.1</p>,Not Supported,Not Supported,Not Supported
|
11 |
+
openai_whisper-large-v2_turbo_955MB,openai_whisper-large-v2_turbo_955MB,β
macOS 26.0,β
macOS 26.0<p>β
macOS 15.5</p>,Not Supported,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad13%2C6_summary_2025-08-04T202532.json>iPadOS 18.5</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad14%2C8_summary_2025-08-04T202532.json>iPadOS 18.4.1</a><p>? iPadOS 18.6</p>,? iPadOS 18.6,? iPadOS 18.6,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad16%2C1_summary_2025-08-04T202532.json>iPadOS 18.5</a>,β
iPadOS 26.0<p>β
iPadOS 18.4.1</p>,β
iOS 26.0,β
iOS 26.0,β
iOS 18.5
|
12 |
+
openai_whisper-large-v3,openai_whisper-large-v3,β
macOS 26.0,β
macOS 26.0<p>β
macOS 15.5</p>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/Macmini9%2C1_summary_2025-08-29T100943.json>macOS 26.0</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad13%2C6_summary_2025-08-04T202532.json>iPadOS 18.5</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad14%2C8_summary_2025-08-04T202532.json>iPadOS 18.4.1</a><p>? iPadOS 18.6</p>,? iPadOS 18.6,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad15%2C7_summary_2025-08-01T235644.json>iPadOS 18.6</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad16%2C1_summary_2025-08-04T202532.json>iPadOS 18.5</a>,β
iPadOS 26.0<p>? iPadOS 18.4.1</p>,Not Supported,Not Supported,Not Supported
|
13 |
+
openai_whisper-large-v3-v20240930,openai_whisper-large-v3-v20240930,β
macOS 26.0,β
macOS 26.0<p>β
macOS 15.5</p>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/Macmini9%2C1_summary_2025-08-29T100943.json>macOS 26.0</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad13%2C6_summary_2025-08-04T202532.json>iPadOS 18.5</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad14%2C8_summary_2025-08-04T202532.json>iPadOS 18.4.1</a><p>? iPadOS 18.6</p>,? iPadOS 18.6,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad15%2C7_summary_2025-08-01T235644.json>iPadOS 18.6</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad16%2C1_summary_2025-08-04T202532.json>iPadOS 18.5</a>,? iPadOS 26.0<p>? iPadOS 18.4.1</p>,Not Supported,Not Supported,Not Supported
|
14 |
+
openai_whisper-large-v3-v20240930_626MB,openai_whisper-large-v3-v20240930_626MB,β
macOS 26.0,β
macOS 26.0<p>β
macOS 15.5</p>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/Macmini9%2C1_summary_2025-08-29T100943.json>macOS 26.0</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad13%2C6_summary_2025-08-04T202532.json>iPadOS 18.5</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad14%2C8_summary_2025-08-04T202532.json>iPadOS 18.4.1</a><p>β
iPadOS 18.6</p>,β
iPadOS 18.6,β
iPadOS 18.6,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad16%2C1_summary_2025-08-04T202532.json>iPadOS 18.5</a>,β
iPadOS 26.0<p>β
iPadOS 18.4.1</p>,β
iOS 26.0,β
iOS 26.0,β
iOS 18.5
|
15 |
+
openai_whisper-large-v3-v20240930_turbo,openai_whisper-large-v3-v20240930_turbo,β
macOS 26.0,β
macOS 26.0<p>β
macOS 15.5</p>,Not Supported,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad13%2C6_summary_2025-08-04T202532.json>iPadOS 18.5</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad14%2C8_summary_2025-08-04T202532.json>iPadOS 18.4.1</a><p>? iPadOS 18.6</p>,? iPadOS 18.6,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad15%2C7_summary_2025-08-01T235644.json>iPadOS 18.6</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad16%2C1_summary_2025-08-04T202532.json>iPadOS 18.5</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad16%2C3_summary_2025-08-27T211253.json>iPadOS 26.0</a><p>? iPadOS 18.4.1</p>,Not Supported,Not Supported,Not Supported
|
16 |
+
openai_whisper-large-v3-v20240930_turbo_632MB,openai_whisper-large-v3-v20240930_turbo_632MB,β
macOS 26.0,β
macOS 26.0<p>β
macOS 15.5</p>,Not Supported,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad13%2C6_summary_2025-08-04T202532.json>iPadOS 18.5</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad14%2C8_summary_2025-08-04T202532.json>iPadOS 18.4.1</a><p>? iPadOS 18.6</p>,? iPadOS 18.6,? iPadOS 18.6,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad16%2C1_summary_2025-08-04T202532.json>iPadOS 18.5</a>,β
iPadOS 26.0<p>? iPadOS 18.4.1</p>,β
iOS 26.0,β
iOS 26.0,β
iOS 18.5
|
17 |
+
openai_whisper-large-v3_947MB,openai_whisper-large-v3_947MB,β
macOS 26.0,β
macOS 26.0<p>β
macOS 15.5</p>,β
macOS 26.0,β
iPadOS 18.5,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad14%2C8_summary_2025-08-04T202532.json>iPadOS 18.4.1</a><p>? iPadOS 18.6</p>,? iPadOS 18.6,? iPadOS 18.6,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad16%2C1_summary_2025-08-04T202532.json>iPadOS 18.5</a>,β
iPadOS 26.0<p>? iPadOS 18.4.1</p>,β
iOS 26.0,β
iOS 26.0,β
iOS 18.5
|
18 |
+
openai_whisper-large-v3_turbo,openai_whisper-large-v3_turbo,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/Mac14%2C3_summary_2025-08-27T130519.json>macOS 26.0</a>,β
macOS 26.0<p>β
macOS 15.5</p>,Not Supported,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad13%2C6_summary_2025-08-04T202532.json>iPadOS 18.5</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad14%2C8_summary_2025-08-04T202532.json>iPadOS 18.4.1</a><p>? iPadOS 18.6</p>,? iPadOS 18.6,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad15%2C7_summary_2025-08-01T235644.json>iPadOS 18.6</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad16%2C1_summary_2025-08-04T202532.json>iPadOS 18.5</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad16%2C3_summary_2025-08-27T211253.json>iPadOS 26.0</a><p>? iPadOS 18.4.1</p>,Not Supported,Not Supported,Not Supported
|
19 |
+
openai_whisper-large-v3_turbo_954MB,openai_whisper-large-v3_turbo_954MB,β
macOS 26.0,β
macOS 26.0<p>β
macOS 15.5</p>,Not Supported,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad13%2C6_summary_2025-08-04T202532.json>iPadOS 18.5</a>,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad14%2C8_summary_2025-08-04T202532.json>iPadOS 18.4.1</a><p>? iPadOS 18.6</p>,? iPadOS 18.6,? iPadOS 18.6,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad16%2C1_summary_2025-08-04T202532.json>iPadOS 18.5</a>,β
iPadOS 26.0<p>? iPadOS 18.4.1</p>,β
iOS 26.0,β
iOS 26.0,β
iOS 18.5
|
20 |
+
openai_whisper-small,openai_whisper-small,β
macOS 26.0,β
macOS 26.0<p>β
macOS 15.5</p>,β
macOS 26.0,β
iPadOS 18.5,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad14%2C8_summary_2025-08-04T202532.json>iPadOS 18.4.1</a><p>β
iPadOS 18.6</p>,β
iPadOS 18.6,β
iPadOS 18.6,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad16%2C1_summary_2025-08-04T202532.json>iPadOS 18.5</a>,β
iPadOS 26.0<p>β
iPadOS 18.4.1</p>,β
iOS 26.0,β
iOS 26.0,β
iOS 18.5
|
21 |
+
openai_whisper-small.en,openai_whisper-small.en,β
macOS 26.0,β
macOS 26.0<p>β
macOS 15.5</p>,β
macOS 26.0,β
iPadOS 18.5,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad14%2C8_summary_2025-08-04T202532.json>iPadOS 18.4.1</a><p>β
iPadOS 18.6</p>,β
iPadOS 18.6,β
iPadOS 18.6,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad16%2C1_summary_2025-08-04T202532.json>iPadOS 18.5</a>,β
iPadOS 26.0<p>β
iPadOS 18.4.1</p>,β
iOS 26.0,β
iOS 26.0,β
iOS 18.5
|
22 |
+
openai_whisper-tiny,openai_whisper-tiny,β
macOS 26.0,β
macOS 26.0<p>β
macOS 15.5</p>,β
macOS 26.0,β
iPadOS 18.5,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad14%2C8_summary_2025-08-04T202532.json>iPadOS 18.4.1</a><p>β
iPadOS 18.6</p>,β
iPadOS 18.6,β
iPadOS 18.6,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad16%2C1_summary_2025-08-04T202532.json>iPadOS 18.5</a>,β
iPadOS 26.0<p>β
iPadOS 18.4.1</p>,β
iOS 26.0,β
iOS 26.0,β
iOS 18.5
|
23 |
+
openai_whisper-tiny.en,openai_whisper-tiny.en,β
macOS 26.0,β
macOS 26.0<p>β
macOS 15.5</p>,β
macOS 26.0,β
iPadOS 18.5,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad14%2C8_summary_2025-08-04T202532.json>iPadOS 18.4.1</a><p>β
iPadOS 18.6</p>,β
iPadOS 18.6,β
iPadOS 18.6,β οΈ <a style='color: #3B82F6; text-decoration: underline; text-decoration-style: dotted;' href=https://huggingface.co/datasets/argmaxinc/whisperkit-evals-dataset/blob/main/benchmark_data/2025-07-31T175755_c814cae/iPad16%2C1_summary_2025-08-04T202532.json>iPadOS 18.5</a>,β
iPadOS 26.0<p>β
iPadOS 18.4.1</p>,β
iOS 26.0,β
iOS 26.0,β
iOS 18.5
|
dashboard_data/version.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"last_modified": "2025-
|
|
|
1 |
+
{"last_modified": "2025-08-29T18:21:12+00:00", "sha": "aaed5c15be84138d16e701594d0e4a8e278c323d", "releases": ["a9b92c4", "112a023", "ca49596", "11a1fab", "8c0acbd", "c814cae"], "versions": ["0.9.1", "0.10.1", "0.11.0", "0.12.0", "0.13.0", "0.13.1"]}
|