SAVRN
Search Contact SAVRN

Dataset

mlx-model-explorer-data

by MLX Community mlx-community/mlx-model-explorer-data

An anonymous record of how people use MLX Model Explorer to choose an MLX model for their Mac: which model families, sizes, quantizations, memory classes and context lengths they look at, and which models they go on to open, compare or download.

Rows939
Configurations1
Size2.1 MB
Licensecc-by-4.0
AccessPublicly accessible
Monthly Downloads1.2k

Dataset Card

By MLX Community, published under cc-by-4.0, revision 41f02f6d4726.

An anonymous record of how people use MLX Model Explorer to choose an MLX model for their Mac: which model families, sizes, quantizations, memory classes and context lengths they look at, and which models they go on to open, compare or download. It also holds the community reports ("it worked", "too slow") and real MLX benchmark results that people choose to contribute.

The goal is to answer, with data: what is the MLX community actually trying to run, and how well does it work?

Quick start

from datasets import load_dataset

df = load_dataset("mlx-community/mlx-model-explorer-data", "events", split="train").to_pandas()
df = df[df.suspicious_flags.apply(len) == 0]                      # clean rows only

# One row per visit: keep the newest summary of each session
visits = (df[df.event_type == "session"].sort_values("timestamp")
            .drop_duplicates("session_id", keep="last"))
visits.explode("quants_searched").quants_searched.value_counts(normalize=True)

# Community MLX benchmarks: median generation speed per model and chip
bench = df[df.event_type == "mlx_benchmark"]
bench.groupby(["selected_model", "chip"]).generation_tps.median()

What is recorded

The dataset records outcomes, not clicks. Individual filter changes and page interactions are never logged.

event_type One row per Contents
session visit The filters the visit ended on, every family and quantization it looked at, the hardware class, the top recommendation shown, and the models it opened, compared or visited on Hugging Face. The page sends it when the visitor first opens a model and again when the tab is hidden, if anything changed. Keep the newest row per session_id.
feedback report Answer to "Have you tried this model?" and how it went
mlx_benchmark measurement A result from mlx_explorer_bench.py: speed, memory and optionally perplexity
browser_benchmark test run The optional 20-second WebGPU compute test

Layout and updates

data/incoming/YYYY/MM/DD/<instance>-<UTC time>-<suffix>.parquet   # written by the Space, at most hourly
data/events/YYYY-MM.parquet                                       # one file per finished month
eval/wikitext-2-raw-v1-test-v1.txt                                # pinned text for --quality

The Space buffers rows and writes a new incoming file at most once an hour, or sooner after 2,000 rows. Early each month the previous month is compacted: all of its incoming files are merged into data/events/YYYY-MM.parquet, re-sent session rows are reduced to the newest one per visit, and the incoming files are deleted, all in one commit. Row values are never edited. The events config reads both locations, so recent data is always included. Every file has the same columns in the same order.

Schema (schema_version 2)

Every row has every column. Columns that don't apply to an event type are null.

Column Type Rows Description
timestamp string all UTC, second precision, ISO 8601
schema_version int all 2
app_version string all Space version
event_type string all See above
session_id string all Random 16-hex ID per browser tab, gone when the tab closes. Null for script submissions
model_family string session, feedback, mlx_benchmark Final family filter (Qwen, Gemma, …). On feedback and benchmarks, the family of selected_model
parameter_bucket string session, … <3B, 3-8B, 8-15B, 15-35B, 35-70B, 70B+, MoE
quantization string session, … 2-bit8-bit, 16-bit, unknown
target_context int session 4096 … 262144
priority string session balanced, quality, speed, memory, long_context
sort string session recommended, popular, recent, community, all
result_count int session Models matching the final filters
families_searched list[string] session Every family the visit filtered on (max 5)
quants_searched list[string] session Every quantization the visit filtered on (max 5)
distinct_queries int session Number of distinct filter combinations the visit looked at
hardware_source string session, … confirmed (user picked memory), detected (browser estimate), none
hardware_memory_class int session, … RAM class in GB: 8, 16, 18, 24, 32, 36, 48, 64, 96, 128, 192, 256, 512
hardware_confirmed bool session, … Whether the memory class was chosen by the user
webgpu_available bool session, browser_benchmark WebGPU present in the browser
webgpu_score float session, browser_benchmark Relative WebGPU compute score (quick check on sessions, 20 s test on browser_benchmark). Not MLX, not tokens/sec
gpu_capability_class string session, … high, mid, entry, unknown, bucketed from the quick score
gpu_vendor, gpu_arch string session, … Generic WebGPU adapter identifiers, e.g. apple / metal-3
browser_family, os_family string session, … Coarse browser and OS family
cpu_cores int session, browser_benchmark navigator.hardwareConcurrency
top_model string session Top result under "Best fit" for the final filters
top_model_score, top_model_fit float, string session Its 0 to 100 score and fit label, as shown
engine_version string session Recommendation engine, e.g. heuristic-v1
models_viewed list[string] session Models whose detail panel was opened (max 10)
models_compared list[string] session Models added to the comparison (max 5)
models_clicked list[string] session Models whose Hugging Face page was opened (max 5)
selected_model string feedback, mlx_benchmark org/name Hugging Face repo ID
model_name string feedback, mlx_benchmark Repo name without the org
quant_bits, quant_mixed float, bool feedback, mlx_benchmark From Hub metadata
pipeline string feedback, mlx_benchmark Hub pipeline tag
hf_downloads_at_selection, hf_likes_at_selection int feedback, mlx_benchmark Hub counts when the row was written (downloads are Hub's trailing 30 days)
tried string feedback yes, no, planning
outcome string feedback worked or problem
quality_rating string feedback excellent, good, acceptable
failure_reason string feedback too_slow, too_much_memory, low_quality, didnt_run
reported_ram_gb, reported_mac_model int, string feedback, mlx_benchmark Mac memory and chip (Apple M1Apple M5 Ultra, other)
reported_tokens_per_second, reported_context float, int feedback Self-reported speed and context
notes string feedback Optional, ≤ 280 characters; emails, links and phone numbers are replaced before storage
benchmark_type, benchmark_version string benchmarks webgpu_full / mlx_lm; webgpu-1 / mlxbench-2
benchmark_duration_ms int browser_benchmark Test duration
prompt_tokens, generation_tokens int mlx_benchmark Benchmark settings
prompt_tps, generation_tps, ttft_ms float mlx_benchmark Medians over 3 trials
peak_memory_gb float mlx_benchmark Peak MLX memory
chip string mlx_benchmark e.g. Apple M3 Max
perplexity, perplexity_stderr float mlx_benchmark On eval_dataset (--quality); only comparable between quantizations of the same base model
eval_dataset, eval_tokens string, int mlx_benchmark Evaluation text version and tokens scored
mlx_version, mlx_lm_version, macos_major string, string, int mlx_benchmark Software versions
suspicious_flags list[string] all Validation flags; empty means the row passed all checks

suspicious_flags

Flag Meaning
unknown_model / unknown_model_in_session A model ID not found in the mlx-community catalogue at the time
implausible_tps Generation speed above what Apple Silicon memory bandwidth (≤ 800 GB/s) allows for that model, with 3× headroom for speculative decoding
peak_memory_exceeds_ram Peak memory above the reported RAM
incomplete_benchmark / incomplete_quality / incomplete_feedback Missing the model, the measurement or its version
benchmark_type_mismatch e.g. a browser benchmark labelled as MLX
implausible_webgpu_score / implausible_perplexity Values far outside observed ranges
conflicting_feedback Both a success rating and a failure reason

Values outside hard bounds (for example negative speeds, unknown enums or oversized payloads) are rejected and never stored. Flagged rows are kept so filters stay transparent, but the Space excludes them from recommendations and statistics.

Privacy

Never collected: names, emails, accounts, IP addresses, precise location, cookies, user-agent strings, device fingerprints, full GPU description strings, or individual clicks. Timestamps are truncated to seconds. Session IDs are random per tab and not persisted. Rate limiting uses an in-memory salted hash that rotates hourly and is never written anywhere. Browsers sending Global Privacy Control or Do Not Track send nothing unless the user explicitly opts in, and anyone can opt out on the page.

Benchmark methodology

Browser (webgpu-1). The quick check runs a 256×256 WGSL matrix multiplication for about 1.2 s. The full test runs matrix multiplications at 256, 512 and 1024 plus a 256 MB buffer copy, about 20 s in total. Each phase is normalized to a fixed reference, and the score is the geometric mean × 1000. It measures WebGPU in the browser, not MLX or LLM inference.

MLX (mlxbench-2). mlx_explorer_bench.py follows mlx_lm.benchmark: it loads the model with mlx-lm, builds a random prompt of prompt_tokens tokens (seed 0), disables EOS so exactly generation_tokens are produced, does one warm-up run, then reports medians over 3 trials, plus peak memory. If generation speed differs by more than 25% between the fastest and slowest trial (usually memory pressure), speed and TTFT are left empty and only memory and perplexity are reported. Chip and RAM class come from sysctl.

Quality (--quality). The script tokenizes eval/wikitext-2-raw-v1-test-v1.txt from this repo: the first ~120k characters of the wikitext-2-raw-v1 test split (Salesforce/wikitext, CC BY-SA 3.0, revision b08601e), SHA-256 5dacf0e5…c730e8. It scores the first 16,384 tokens in non-overlapping 1,024-token windows and reports exp(mean cross-entropy). If the tokenizer has a BOS token, every window starts with it. It is a coarse quality signal and doesn't measure reasoning or instruction following.

mlxbench-1 added BOS only at the very start of the text, or not at all for tokenizers that don't add it on encode (Gemma). That inflated perplexity for models with a BOS token, Gemma's into the thousands. Those rows are kept but the Space only uses perplexity from mlxbench-2. Speed and memory figures from both versions are comparable. Models without a BOS token (Qwen) give the same perplexity in both.

The first quality rows were contributed by the Space's maintainer from one M3 Max. They cover every quantization in mlx-community that declares Qwen3.5-0.8B, 2B or 4B as its base model: MLX-4bit, OptiQ-4bit and MLX-8bit. Anyone can re-run them with the script to check the numbers.

Limitations

  • Self-selected and self-reported. The people who use the Space and submit data are not a random sample of MLX users, and feedback is subjective.
  • Estimated memory classes. Browsers can't read unified memory size. hardware_source = detected uses Chrome's rounded-down deviceMemory (capped at 32 GB). Prefer hardware_confirmed = true.
  • Interest ≠ usage. Visits show what people look at, not what they deploy.
  • Lost summaries. A visit whose browser crashes before it opens a model or hides the tab sends nothing.
  • Heuristic recommendations. top_model_score depends on engine_version.

Versioning

  • schema_version changes when columns change meaning or are removed. Version 1 was a per-click log used for the first day after launch. It was replaced by this design and its rows were deleted.
  • benchmark_version and engine_version identify the exact methodology behind each score.

License

CC BY 4.0. Please cite the dataset and link back to the Space.

Structure

events 939 rows

SplitRowsSize
train939547.5 KB
timestampstringschema_versionint64app_versionstringevent_typestringsession_idstringmodel_familystringparameter_bucketstringquantizationstringtarget_contextint64prioritystringsortstringresult_countint64families_searchedlistquants_searchedlistdistinct_queriesint64hardware_sourcestringhardware_memory_classint64hardware_confirmedboolwebgpu_availableboolwebgpu_scorefloat64gpu_capability_classstringgpu_vendorstringgpu_archstringbrowser_familystringos_familystringcpu_coresint64top_modelstringtop_model_scorefloat64top_model_fitstringengine_versionstringmodels_viewedlistmodels_comparedlistmodels_clickedlistselected_modelstringmodel_namestringquant_bitsfloat64quant_mixedboolpipelinestringhf_downloads_at_selectionint64hf_likes_at_selectionint64

Details

Repository
mlx-community/mlx-model-explorer-data
Publisher
MLX Community
Task category
Not stated by the source
Tags
mlx, apple-silicon, quantization
Size category
n<1K
Languages
en
Revision
41f02f6d472638ac0173949ceab48468c416b120
Last updated
2026-09-18

Files

108 files, 2.1 MB in total.

Data106 files · 2.1 MB
Documentation1 file · 13.1 KB
Repository1 file · 2.5 KB
Every file
FileTypeSizeSHA-256
data/incoming/2026/09/14/2f9604d8-20260914T051636-8fb53c.parquetData22.0 KB1a935112df05
data/incoming/2026/09/14/46a0087b-20260914T081156-9b9f6e.parquetData21.6 KBa1c7f996683b
data/incoming/2026/09/14/46a0087b-20260914T091159-b5f048.parquetData21.0 KBc3953cafaf49
data/incoming/2026/09/14/46a0087b-20260914T101200-1dfcd5.parquetData20.9 KB13442b6a1beb
data/incoming/2026/09/14/46a0087b-20260914T111201-e25cb8.parquetData17.9 KBbacdbc72d247
data/incoming/2026/09/14/65e96cb6-20260914T123428-ca9e48.parquetData18.7 KB00a91a661b12
data/incoming/2026/09/14/65e96cb6-20260914T133429-cebf59.parquetData19.8 KB3ac7be992e7c
data/incoming/2026/09/14/65e96cb6-20260914T143429-bf9b85.parquetData19.9 KBcb702a8e2339
data/incoming/2026/09/14/65e96cb6-20260914T153430-9e310b.parquetData18.5 KBefc735c2593f
data/incoming/2026/09/14/65e96cb6-20260914T163431-8f1e2d.parquetData18.2 KB1b89fc64917b
data/incoming/2026/09/14/65e96cb6-20260914T173432-204f1c.parquetData18.7 KB5cd9c26f6ec1
data/incoming/2026/09/14/65e96cb6-20260914T183433-a4862e.parquetData18.8 KB7f52a0a0b543
data/incoming/2026/09/14/65e96cb6-20260914T193433-5d3cf5.parquetData18.6 KB706cbc4e3691
data/incoming/2026/09/14/65e96cb6-20260914T203434-203bea.parquetData18.8 KB4df7d99f901c
data/incoming/2026/09/14/65e96cb6-20260914T213435-5fb092.parquetData19.6 KB48b61819cce6
data/incoming/2026/09/14/65e96cb6-20260914T223436-dff79b.parquetData19.1 KBf486964c2c73
data/incoming/2026/09/14/65e96cb6-20260914T233437-4a9d67.parquetData19.6 KBfc6fcebd9f56
data/incoming/2026/09/14/7fd89ad5-20260914T061635-369a8b.parquetData23.7 KBc88febd4299b
data/incoming/2026/09/14/7fd89ad5-20260914T071158-d47b87.parquetData20.3 KBa512da184faf
data/incoming/2026/09/14/868150a2-20260914T043055-382264.parquetData17.5 KB377b6aaa97d9
data/incoming/2026/09/14/d75a149b-20260914T041411-805c87.parquetData19.7 KBa703bb8ce4e3
data/incoming/2026/09/15/65e96cb6-20260915T003447-a70d1e.parquetData18.0 KBe53c8887f588
data/incoming/2026/09/15/65e96cb6-20260915T013447-c1d416.parquetData18.4 KBc8ad167d025f
data/incoming/2026/09/15/65e96cb6-20260915T023448-94b4bd.parquetData19.9 KB32fbfa76d90a
data/incoming/2026/09/15/65e96cb6-20260915T033449-5cd72d.parquetData20.2 KB173415054f4f
data/incoming/2026/09/15/65e96cb6-20260915T043450-e3c89b.parquetData18.9 KB7144dd30f34c
data/incoming/2026/09/15/65e96cb6-20260915T063450-d39e0e.parquetData19.1 KB9dae7a2857b4
data/incoming/2026/09/15/65e96cb6-20260915T073452-87d106.parquetData18.8 KB5dbf92655a53
data/incoming/2026/09/15/65e96cb6-20260915T083453-676d05.parquetData18.8 KB728d02b339db
data/incoming/2026/09/15/65e96cb6-20260915T093454-d93482.parquetData17.8 KBe0a8c4f35cb1
data/incoming/2026/09/15/65e96cb6-20260915T103455-e8c05c.parquetData19.7 KB83caa3cf00a4
data/incoming/2026/09/15/65e96cb6-20260915T113456-88e93d.parquetData17.8 KBcd6dab79f9b5
data/incoming/2026/09/15/65e96cb6-20260915T123457-df16b5.parquetData19.3 KB90f4cc035d33
data/incoming/2026/09/15/65e96cb6-20260915T133458-a6aed7.parquetData19.9 KB94d9773778ca
data/incoming/2026/09/15/65e96cb6-20260915T143458-be4f3a.parquetData20.0 KB700e5356d949
data/incoming/2026/09/15/65e96cb6-20260915T153459-04f44c.parquetData20.1 KB21ee6bf53a03
data/incoming/2026/09/15/65e96cb6-20260915T163500-ba337a.parquetData19.3 KB0c7f672ae9d5
data/incoming/2026/09/15/65e96cb6-20260915T173501-38222d.parquetData20.0 KBf5a1fc870bbe
data/incoming/2026/09/15/65e96cb6-20260915T183502-66a387.parquetData18.9 KBc9d92945e87e
data/incoming/2026/09/15/65e96cb6-20260915T193503-20ce5f.parquetData19.8 KB30da911c42e2
data/incoming/2026/09/15/65e96cb6-20260915T203504-cb9176.parquetData19.5 KB6a116280982d
data/incoming/2026/09/15/65e96cb6-20260915T213505-50dfeb.parquetData18.2 KB2873b0447a3f
data/incoming/2026/09/15/65e96cb6-20260915T223505-0871ed.parquetData19.4 KB1f1e0890c31b
data/incoming/2026/09/15/65e96cb6-20260915T233506-96b154.parquetData19.0 KB890be9ffa81f
data/incoming/2026/09/16/65e96cb6-20260916T003507-d9c6c7.parquetData18.2 KB8b2ac856c2c8
data/incoming/2026/09/16/65e96cb6-20260916T013508-303a73.parquetData18.7 KB412593c07efa
data/incoming/2026/09/16/65e96cb6-20260916T023509-20d9e9.parquetData18.6 KB479898c86c7d
data/incoming/2026/09/16/65e96cb6-20260916T033510-42bbdf.parquetData19.6 KB36ed4f65b21d
data/incoming/2026/09/16/65e96cb6-20260916T043511-716df2.parquetData19.1 KB834856005377
data/incoming/2026/09/16/65e96cb6-20260916T053512-02efb3.parquetData18.1 KB21bd2d0652bf
data/incoming/2026/09/16/65e96cb6-20260916T063512-dc758b.parquetData19.6 KB045a437fa287
data/incoming/2026/09/16/65e96cb6-20260916T083514-ae05ae.parquetData21.9 KB3a1d3c7e3afb
data/incoming/2026/09/16/65e96cb6-20260916T093514-b11e0d.parquetData20.1 KB95353dc28630
data/incoming/2026/09/16/65e96cb6-20260916T103515-936c2b.parquetData18.5 KBf79a79bf5c19
data/incoming/2026/09/16/65e96cb6-20260916T113516-3b81e6.parquetData18.8 KB111a5fc76d69
data/incoming/2026/09/16/65e96cb6-20260916T123517-e0055f.parquetData20.5 KBf3a44642d2e5
data/incoming/2026/09/16/65e96cb6-20260916T133518-e96a50.parquetData20.1 KB9925a58e5c7e
data/incoming/2026/09/16/65e96cb6-20260916T143519-a6c74b.parquetData20.1 KB94a5d97282f6
data/incoming/2026/09/16/65e96cb6-20260916T153520-b3686e.parquetData17.8 KBf64d510b4e22
data/incoming/2026/09/16/65e96cb6-20260916T163521-ae3739.parquetData19.1 KBe64bdcfc4327
data/incoming/2026/09/16/65e96cb6-20260916T173522-e7e72d.parquetData19.6 KBc0f47ca1535d
data/incoming/2026/09/16/65e96cb6-20260916T183523-42261f.parquetData18.2 KB2230c9ace3d9
data/incoming/2026/09/16/65e96cb6-20260916T193524-ccd68c.parquetData18.9 KBe4aa1a78bd2f
data/incoming/2026/09/16/65e96cb6-20260916T203524-801a14.parquetData19.8 KB8fe93dee2a9e
data/incoming/2026/09/16/65e96cb6-20260916T213525-aad48a.parquetData18.7 KBfb0b6bbf9c8b
data/incoming/2026/09/16/65e96cb6-20260916T223526-3b920c.parquetData18.8 KB83e6ad83bebe
data/incoming/2026/09/16/65e96cb6-20260916T233527-044b46.parquetData18.0 KBed07ec9b56ca
data/incoming/2026/09/17/65e96cb6-20260917T003528-504b33.parquetData19.0 KB3086504ae48b
data/incoming/2026/09/17/65e96cb6-20260917T013550-faf5dc.parquetData19.0 KBd8241bc9ce20
data/incoming/2026/09/17/65e96cb6-20260917T023602-fe163b.parquetData20.1 KB302a7d99f866
data/incoming/2026/09/17/65e96cb6-20260917T033603-6d5075.parquetData19.4 KBb05f008721f8
data/incoming/2026/09/17/65e96cb6-20260917T043604-be36d1.parquetData18.9 KB164071da3941
data/incoming/2026/09/17/65e96cb6-20260917T053605-a46222.parquetData18.7 KB48460387d9c2
data/incoming/2026/09/17/65e96cb6-20260917T063605-3b8714.parquetData19.4 KB97a30cf5028a
data/incoming/2026/09/17/65e96cb6-20260917T073606-0962c1.parquetData19.3 KB4f705c9dfb88
data/incoming/2026/09/17/65e96cb6-20260917T083607-78a94b.parquetData19.5 KBe0342249a9da
data/incoming/2026/09/17/65e96cb6-20260917T093608-2d0449.parquetData18.6 KBa7c8ee7ea443
data/incoming/2026/09/17/65e96cb6-20260917T103609-d23a5e.parquetData19.3 KBeb3f48bbccdd
data/incoming/2026/09/17/65e96cb6-20260917T113610-586674.parquetData20.0 KBa84a1e3f905c
data/incoming/2026/09/17/65e96cb6-20260917T123611-dc629b.parquetData18.7 KBa2aab855d102
data/incoming/2026/09/17/65e96cb6-20260917T133612-31ec04.parquetData18.8 KB52322fa53e64
data/incoming/2026/09/17/65e96cb6-20260917T143612-b88221.parquetData20.1 KB650a1f8df77e
data/incoming/2026/09/17/65e96cb6-20260917T153613-73055d.parquetData18.9 KB237306159044
data/incoming/2026/09/17/65e96cb6-20260917T163614-e2878a.parquetData18.4 KB53d32b792f90
data/incoming/2026/09/17/65e96cb6-20260917T173615-3f3b29.parquetData18.8 KB2ae3b0d75605
data/incoming/2026/09/17/65e96cb6-20260917T183616-fb692e.parquetData19.4 KB68cca9fe17a4
data/incoming/2026/09/17/65e96cb6-20260917T193617-3d26b2.parquetData19.2 KB724521c298dd
data/incoming/2026/09/17/65e96cb6-20260917T203618-ed1bf1.parquetData17.8 KB37b2a266c01a
data/incoming/2026/09/17/65e96cb6-20260917T213619-0efd0b.parquetData19.1 KBe3ba5de7cae7
data/incoming/2026/09/17/65e96cb6-20260917T223619-ca1a0e.parquetData19.3 KB942f1f3bc305
data/incoming/2026/09/17/65e96cb6-20260917T233620-a2508d.parquetData19.3 KB46bb431ee99c
data/incoming/2026/09/18/65e96cb6-20260918T003621-607ced.parquetData17.7 KBc8b8a8ea9191
data/incoming/2026/09/18/65e96cb6-20260918T013622-9fb637.parquetData18.2 KB6f42f925a666
data/incoming/2026/09/18/65e96cb6-20260918T023625-ab2e4c.parquetData17.9 KBb357d48e91ba
data/incoming/2026/09/18/65e96cb6-20260918T033627-5af687.parquetData17.8 KBbec5f20901e0
data/incoming/2026/09/18/65e96cb6-20260918T043628-b93f70.parquetData18.3 KB1ce0a46d134f
data/incoming/2026/09/18/65e96cb6-20260918T053629-a194ae.parquetData18.8 KB14961b4278d6
data/incoming/2026/09/18/65e96cb6-20260918T063630-9df83e.parquetData18.6 KB98ce5d88988e
data/incoming/2026/09/18/65e96cb6-20260918T073630-7e73c9.parquetData18.8 KB6c0575c92391
data/incoming/2026/09/18/65e96cb6-20260918T083631-dd83ff.parquetData20.3 KB93535d2d7a26
data/incoming/2026/09/18/65e96cb6-20260918T093632-272974.parquetData19.1 KB7268f08161c5
data/incoming/2026/09/18/65e96cb6-20260918T103633-0327b7.parquetData19.2 KB36cbd5ba1639
data/incoming/2026/09/18/65e96cb6-20260918T113634-2d36fc.parquetData18.3 KB9b7ae16b99bb
data/incoming/2026/09/18/65e96cb6-20260918T123634-9e21de.parquetData18.4 KBbbb6e008ac01
data/incoming/2026/09/18/65e96cb6-20260918T133635-d1308d.parquetData18.1 KB78c3749d6ef0
eval/wikitext-2-raw-v1-test-v1.txtData120.2 KB
README.mdDocumentation13.1 KB
.gitattributesRepository2.5 KB

License and Download

License
cc-by-4.0
Access
No access gate
Download from MLX Community

Released by MLX Community through its official repository on Hugging Face. Read the license.