Download the player
A command-line program, free of charge. No account. Version 1.3.1, released .
The player needs a Linux or Windows 11 PC, not a phone.
https://memoctet.com/downloadBefore you download
- x86-64 processor with AVX2, FMA and F16C. No macOS, ARM or phone build.
- Runs on the CPU. It does not use your graphics card.
- Free of charge. Player source code not published. Not code-signed: check the file with the step below before you run it.
- The checksums come from this same site: they catch a damaged download, not a compromised site.
- The player's messages are in French. The commands below were run as shown on : a new Linux container on a rented server, and a Windows 11 VM we had used before.
- Model files come from Hugging Face, which sees your IP address.
- All 35 seed files are in the archive, in its
cataloguefolder.
The player's command is memown. It is not memown 1.0, another ZMLabs program.
Linux x86-64
Download for LinuxNeeds glibc 2.35 or newer (e.g. Ubuntu 22.04+, Debian 12+). Measured on glibc 2.35, 2.36, 2.38, 2.39, 2.41.
SHA-256 35a22891e36dcca3e3735aefe8843a66510f73f862a402d5bb4c8720ebcd0c81 Click once to select the whole value.
Three steps
Check and unpack
Linux · bash # or wherever your browser saved itcd ~/Downloads echo "35a22891e36dcca3e3735aefe8843a66510f73f862a402d5bb4c8720ebcd0c81 memown-linux-x86-64.tar.gz" | sha256sum -ctar xzf memown-linux-x86-64.tar.gz && cd memown-linux-x86-64Expected: memown-linux-x86-64.tar.gz: OK
FAILED(Linux) orFalse(Windows) means a different file: delete it and download it again.Fetch and check a model · 609.8 MiB from Hugging Face
Linux · bash # germer: download the model file and check every byte./memown germer catalogue/qwen3-06b.graine.json --maison ~/ia/ qwen3-06b Expected: a line starting with VERDICT : VERT (VERT: all four checks passed, including the byte-for-byte check)
The seed file is already in the
cataloguefolder. Any other seed: copy its command from its page.Ask the test question, then compare
Ask it first, right after
germer, in a new--maisonfolder. Type the question exactly, in French: the published fingerprint is for these exact bytes.Linux · bash # parler: ask a question./memown parler --maison ~/ia/ --dire "Quelle est la capitale de la France ?"qwen3-06b grep -c '"ids_sha256":"72ede708a51254a736c03ecc883d0656d0f2e382e2aa288f33f5104663e402cf"' ~/ia/ qwen3-06b/ vies/ vie/ journal.json Expected: La capitale de la France est **Paris**. then 1
1orTrue: your 12 tokens are the same as ours.0orFalse: they differ. Tell us either way.To ask your own question, change the text after
--dire. Keep this one to compare with ours.
This fingerprint identifies the answer, not the model: qwen3-4b, qwen3-8b and qwen3-8b-source give the same tokens to this question. The byte check on download identifies the model file.
Tell us your result · Send only the lines the email asks for. Your conversation file contains your questions: don't send it. How long we keep results: see Legal.
If the player refuses
- Message (in French)
- PLACE INSUFFISANTE
- Meaning
- Not enough free disk space
- What to do
- Free some space or pass another folder to
--maison.
- Message (in French)
- RAM INSUFFISANTE
- Meaning
- The model file is larger than your RAM
- What to do
- Pick a smaller seed.
- Message (in French)
- ISA — AVX2 absent (or FMA, F16C)
- Meaning
- Your processor lacks an instruction the engines need
- What to do
- Every seed needs these instructions: this processor is not supported.
- Message (in French)
- OCTETS ÉTRANGERS
- Meaning
- The downloaded bytes are not the ones the seed names
- What to do
- Nothing is kept. Try again later; if it repeats, tell us.
- Message (in French)
- MATIÈRE INTROUVABLE
- Meaning
- The file you passed with
--matieredoes not exist - What to do
- Check the path.
- Message (in French)
- MATIÈRE — … hoquet(s) réseau
- Meaning
- Hugging Face could not be reached (measured with a dead proxy standing in for it)
- What to do
- The player stops after 3 tries and names the cause. If you already have the file, pass it with
--matiere.
- Message (in French)
version 'GLIBC_2.35' not found(loader message, code 255)- Meaning
- glibc older than 2.35 (measured on Rocky Linux 9, glibc 2.34, )
- What to do
- Nothing is downloaded. Use a newer system.
No browser? Download with curl
curl -LO https://memoctet.com/dl/joueur/2026-09-15-c573803-1.3.1/memown-linux-x86-64.tar.gz The link redirects: keep -L.
Windows 11 x86-64
Download for Windows 11Measured on Windows 11 (builds 26100 and 26200). Windows 10: not tested. Use PowerShell: double-clicking memown.exe closes the window after about 2 seconds.
Not code-signed: SmartScreen may block it; a browser download has not been tested (as of ).
SHA-256 24b3b61a6c94d6bbb5cb9317659801cad9d0924e7e06eef393ae2998d9c7b474
Three steps
Check and unpack
Windows 11 · PowerShell # or wherever your browser saved itcd $env:USERPROFILE\Downloads (Get-FileHash .\memown-windows-x86-64.zip).Hash -eq '24b3b61a6c94d6bbb5cb9317659801cad9d0924e7e06eef393ae2998d9c7b474'Expand-Archive .\memown-windows-x86-64.zip -DestinationPath . ; cd .\memown-windows-x86-64 Expected: True
FAILED(Linux) orFalse(Windows) means a different file: delete it and download it again.Fetch and check a model · 609.8 MiB from Hugging Face
Windows 11 · PowerShell # germer: download the model file and check every byte.\memown.exe germer catalogue\qwen3-06b.graine.json --maison "$env:USERPROFILE\ia\ qwen3-06b" Expected: a line starting with VERDICT : VERT (VERT: all four checks passed, including the byte-for-byte check)
The seed file is already in the
cataloguefolder. Any other seed: copy its command from its page.Ask the test question, then compare
Ask it first, right after
germer, in a new--maisonfolder. Type the question exactly, in French: the published fingerprint is for these exact bytes.Windows 11 · PowerShell # parler: ask a question.\memown.exe parler --maison "$env:USERPROFILE\ia\ --dire "Quelle est la capitale de la France ?"qwen3-06b" Select-String -Quiet -SimpleMatch -Path "$env:USERPROFILE\ia\ -Pattern '"ids_sha256":"72ede708a51254a736c03ecc883d0656d0f2e382e2aa288f33f5104663e402cf"'qwen3-06b\ vies\ vie\ journal.json" Expected: La capitale de la France est **Paris**. then True
1orTrue: your 12 tokens are the same as ours.0orFalse: they differ. Tell us either way.To ask your own question, change the text after
--dire. Keep this one to compare with ours.
This fingerprint identifies the answer, not the model: qwen3-4b, qwen3-8b and qwen3-8b-source give the same tokens to this question. The byte check on download identifies the model file.
Tell us your result · Send only the lines the email asks for. Your conversation file contains your questions: don't send it. How long we keep results: see Legal.
If the player refuses
- Message (in French)
- PLACE INSUFFISANTE
- Meaning
- Not enough free disk space
- What to do
- Free some space or pass another folder to
--maison.
- Message (in French)
- RAM INSUFFISANTE
- Meaning
- The model file is larger than your RAM
- What to do
- Pick a smaller seed.
- Message (in French)
- ISA — AVX2 absent (or FMA, F16C)
- Meaning
- Your processor lacks an instruction the engines need
- What to do
- Every seed needs these instructions: this processor is not supported.
- Message (in French)
- OCTETS ÉTRANGERS
- Meaning
- The downloaded bytes are not the ones the seed names
- What to do
- Nothing is kept. Try again later; if it repeats, tell us.
- Message (in French)
- MATIÈRE INTROUVABLE
- Meaning
- The file you passed with
--matieredoes not exist - What to do
- Check the path.
- Message (in French)
- MATIÈRE — … hoquet(s) réseau
- Meaning
- Hugging Face could not be reached (measured with a dead proxy standing in for it)
- What to do
- The player stops after 3 tries and names the cause. If you already have the file, pass it with
--matiere.
If Windows blocks it
The binary is not signed. Windows SmartScreen or Smart App Control may block it. Not observed as of : a browser download has not been tested, so we do not describe a workaround.
No browser? Download with curl.exe
curl.exe -LO https://memoctet.com/dl/joueur/2026-09-15-c573803-1.3.1/memown-windows-x86-64.zip The link redirects: keep -L.
What you will see (real run, Linux, )
New container on a rented server: Ubuntu 22.04.5 LTS, glibc 2.35, Intel Xeon E5-2673 v3, 24 threads, CPU quota 11.52 (the player uses 8), 62.69 GiB of RAM, , not as root (~ is /home/joueur), commands of this page. Output copied as is.
./memown germer catalogue/qwen3-06b.graine.json --maison ~/ia/qwen3-06b
[substrat] matière absente ici — on va la chercher (639,446,688 o)
… substrat : hf:Qwen/Qwen3-0.6B-GGUF/Qwen3-0.6B-Q8_0.gguf
✅ 639,446,688 o reconnus à l'octet
[allumage] 609.8 Mio à lire depuis le disque — premier jeton attendu jusqu'à 192 s (180 s + les octets à 50 Mo/s, plafond 1800 s)
── GERMINATION de « qwen3-06b » ────────────────────────────
✅ RECETTE la graine nomme la classe 'x86-64-fils8' ; cette machine est 'x86-64-fils8' — on ne fait pas germer hors de sa classe
✅ MACHINE ta machine : 62.69 Gio de RAM (mesurée), 24 fils logiques (la classe x86-64-fils8 calcule sur 8 fils), AVX2 oui, 29.80 Gio libres sous /home/joueur/ia/qwen3-06b/matieres — elle porte les 609.8 Mio nommés
✅ MATIERE matière reconnue à l'octet
✅ ALLUMAGE la graine a germé : elle parle, et le juge l'accepte
VERDICT : VERT — graine de 464 o → une IA vérifiée à l'octet, 1378118× plus lourde qu'elle
→ /home/joueur/ia/qwen3-06b/germinations/germination.json
la maison est prête : /home/joueur/ia/qwen3-06b
lui parler : memown parler --maison "/home/joueur/ia/qwen3-06b" --dire "…"
la désinstaller : supprime ce dossier, il n'y a rien ailleurs./memown parler --maison ~/ia/qwen3-06b --dire "Quelle est la capitale de la France ?"
[allumage] 609.8 Mio à lire depuis le disque — premier jeton attendu jusqu'à 192 s (180 s + les octets à 50 Mo/s, plafond 1800 s)
[classe] x86-64-fils8 — recette 869bef8788166262…
[dialogue] v2 — gabarit 57f1fd00f0013a2b… épinglé {'enable_thinking': False} ; née le 2026-09-23 · budget 256 jetons
> Quelle est la capitale de la France ?
La capitale de la France est **Paris**.
↳ 12 jetons, arrêt eos, sens SENSE
↳ génération : 12 jetons en 0.54 s (20.3 t/s) · rejeu : aucun (vie neuve)
↳ quittance d0b2a2b8e15a3747… (737 o) — rejouable sur toute machine x86-64-fils8 (identité mesurée Linux ↔ Windows sur 5 machines)
── cette vie t'appartient ─────────────────────────────────────
1 échanges · journal 1093 o · 1/1 paroles certifiées · santé {'SENSE': 1}
→ /home/joueur/ia/qwen3-06b/vies/vie
la refaire ailleurs : memown ressusciter "/home/joueur/ia/qwen3-06b/vies/vie/journal.json" --maison <une maison de la même graine>- rejouable sur toute machine x86-64-fils8 is the player's wording; measured: Linux vs Windows on 5 machines for this seed (see
qwen3-06b). - il n'y a rien ailleurs is the player's wording. Measured on : no temporary
_MEIfolder left after exit, on Linux or on Windows. On Windows, only the user profile was checked, and Windows writes its own caches there. - le juge l'accepte, sens SENSE, santé {'SENSE': 1}: the player's check that the answer is not degenerate; it does not judge correctness.
- 1/1 paroles certifiées: the answer was saved with its fingerprint, in the player's words.
- 1378118× plus lourde: model file size divided by seed file size; this ratio is shown nowhere else on the site.
- 20.3 t/s: speed on this server; your speed is not measured.
Remove the player
Delete the player folder and the folder you passed to --maison.
What's in the archive, checksums and licences
memown-linux-x86-64.tar.gz
| File | Size (bytes) |
|---|---|
memown-linux-x86-64/moteurs/linux-x86-64-v9/libgcc_s.so.1 | 125,488 |
memown-linux-x86-64/moteurs/linux-x86-64-v9/libggml-base.so.0.20.0 | 910,816 |
memown-linux-x86-64/moteurs/linux-x86-64-v9/libllama-completion-impl.so | 118,040 |
memown-linux-x86-64/moteurs/linux-x86-64-v9/libllama-server-impl.so | 7,419,456 |
memown-linux-x86-64/moteurs/linux-x86-64-v9/libmtmd.so.0.1.0 | 1,801,680 |
memown-linux-x86-64/moteurs/linux-x86-64-v9/libllama.so.0.1.0 | 4,269,656 |
memown-linux-x86-64/moteurs/linux-x86-64-v9/libggml-cpu.so.0.20.0 | 1,029,280 |
memown-linux-x86-64/moteurs/linux-x86-64-v9/libggml-base.so | 910,816 |
memown-linux-x86-64/moteurs/linux-x86-64-v9/libmtmd.so | 1,801,680 |
memown-linux-x86-64/moteurs/linux-x86-64-v9/libggml.so.0 | 55,384 |
memown-linux-x86-64/moteurs/linux-x86-64-v9/libllama-quantize-impl.so | 85,928 |
memown-linux-x86-64/moteurs/linux-x86-64-v9/libmtmd.so.0 | 1,801,680 |
memown-linux-x86-64/moteurs/linux-x86-64-v9/libllama-common.so | 6,142,616 |
memown-linux-x86-64/moteurs/linux-x86-64-v9/libllama.so | 4,269,656 |
memown-linux-x86-64/moteurs/linux-x86-64-v9/llama-server | 17,888 |
memown-linux-x86-64/moteurs/linux-x86-64-v9/libllama-common.so.0.1.0 | 6,142,616 |
memown-linux-x86-64/moteurs/linux-x86-64-v9/libllama-perplexity-impl.so | 171,400 |
memown-linux-x86-64/moteurs/linux-x86-64-v9/libggml-cpu.so | 1,029,280 |
memown-linux-x86-64/moteurs/linux-x86-64-v9/libggml.so | 55,384 |
memown-linux-x86-64/moteurs/linux-x86-64-v9/libggml.so.0.20.0 | 55,384 |
memown-linux-x86-64/moteurs/linux-x86-64-v9/libllama.so.0 | 4,269,656 |
memown-linux-x86-64/moteurs/linux-x86-64-v9/libggml-base.so.0 | 910,816 |
memown-linux-x86-64/moteurs/linux-x86-64-v9/libllama-common.so.0 | 6,142,616 |
memown-linux-x86-64/moteurs/linux-x86-64-v9/libggml-cpu.so.0 | 1,029,280 |
memown-linux-x86-64/moteurs/linux-x86-64-v9/libgomp.so.1 | 298,776 |
memown-linux-x86-64/moteurs/linux-x86-64-v9/libstdc++.so.6 | 2,260,296 |
memown-linux-x86-64/moteurs/linux-x86-64-v10/libllama.so.0.4.0 | 4,588,992 |
memown-linux-x86-64/moteurs/linux-x86-64-v10/libmtmd.so | 1,873,904 |
memown-linux-x86-64/moteurs/linux-x86-64-v10/libllama.so.0 | 4,588,992 |
memown-linux-x86-64/moteurs/linux-x86-64-v10/llama-server | 17,864 |
memown-linux-x86-64/moteurs/linux-x86-64-v10/libggml-base.so | 920,264 |
memown-linux-x86-64/moteurs/linux-x86-64-v10/libggml-base.so.0 | 920,264 |
memown-linux-x86-64/moteurs/linux-x86-64-v10/libggml-base.so.0.23.0 | 920,264 |
memown-linux-x86-64/moteurs/linux-x86-64-v10/libggml-cpu.so | 1,079,360 |
memown-linux-x86-64/moteurs/linux-x86-64-v10/libggml-cpu.so.0 | 1,079,360 |
memown-linux-x86-64/moteurs/linux-x86-64-v10/libggml-cpu.so.0.23.0 | 1,079,360 |
memown-linux-x86-64/moteurs/linux-x86-64-v10/libggml.so | 59,736 |
memown-linux-x86-64/moteurs/linux-x86-64-v10/libggml.so.0 | 59,736 |
memown-linux-x86-64/moteurs/linux-x86-64-v10/libggml.so.0.23.0 | 59,736 |
memown-linux-x86-64/moteurs/linux-x86-64-v10/libllama-common.so | 5,945,896 |
memown-linux-x86-64/moteurs/linux-x86-64-v10/libllama-common.so.0 | 5,945,896 |
memown-linux-x86-64/moteurs/linux-x86-64-v10/libllama-common.so.0.4.0 | 5,945,896 |
memown-linux-x86-64/moteurs/linux-x86-64-v10/libllama-server-impl.so | 3,867,544 |
memown-linux-x86-64/moteurs/linux-x86-64-v10/libllama.so | 4,588,992 |
memown-linux-x86-64/moteurs/linux-x86-64-v10/libmtmd.so.0 | 1,873,904 |
memown-linux-x86-64/moteurs/linux-x86-64-v10/libmtmd.so.0.4.0 | 1,873,904 |
memown-linux-x86-64/moteurs/linux-x86-64-v10/libgomp.so.1 | 298,776 |
memown-linux-x86-64/moteurs/linux-x86-64-v10/libstdc++.so.6 | 2,260,296 |
memown-linux-x86-64/moteurs/linux-x86-64-v10/libgcc_s.so.1 | 125,488 |
memown-linux-x86-64/catalogue/deepseek-v2-lite.graine.json | 516 |
memown-linux-x86-64/catalogue/deepseek-v4-flash.graine.json | 521 |
memown-linux-x86-64/catalogue/ernie-45-21b-a3b.graine.json | 528 |
memown-linux-x86-64/catalogue/gemma2-2b.graine.json | 478 |
memown-linux-x86-64/catalogue/gemma3-4b.graine.json | 499 |
memown-linux-x86-64/catalogue/gemma4-12b.graine.json | 497 |
memown-linux-x86-64/catalogue/gemma4-26b-a4b.graine.json | 498 |
memown-linux-x86-64/catalogue/gemma4-e4b.graine.json | 489 |
memown-linux-x86-64/catalogue/glm-52.graine.json | 490 |
memown-linux-x86-64/catalogue/gpt-oss-20b.graine.json | 477 |
memown-linux-x86-64/catalogue/hermes-43-36b.graine.json | 494 |
memown-linux-x86-64/catalogue/hy3.graine.json | 451 |
memown-linux-x86-64/catalogue/kimi-k27-code.graine.json | 513 |
memown-linux-x86-64/catalogue/kimi-k3.graine.json | 503 |
memown-linux-x86-64/catalogue/llama31-8b.graine.json | 521 |
memown-linux-x86-64/catalogue/llama32-1b.graine.json | 505 |
memown-linux-x86-64/catalogue/llama32-3b.graine.json | 506 |
memown-linux-x86-64/catalogue/minimax-m3.graine.json | 512 |
memown-linux-x86-64/catalogue/mistral-7b.graine.json | 517 |
memown-linux-x86-64/catalogue/olmoe-1b7b.graine.json | 518 |
memown-linux-x86-64/catalogue/phi4-mini.graine.json | 524 |
memown-linux-x86-64/catalogue/qwen25-05b.graine.json | 498 |
memown-linux-x86-64/catalogue/qwen25-15b.graine.json | 503 |
memown-linux-x86-64/catalogue/qwen25-7b.graine.json | 501 |
memown-linux-x86-64/catalogue/qwen25-coder-7b.graine.json | 525 |
memown-linux-x86-64/catalogue/qwen3-06b.graine.json | 464 |
memown-linux-x86-64/catalogue/qwen3-4b.graine.json | 462 |
memown-linux-x86-64/catalogue/qwen3-8b-source.graine.json | 465 |
memown-linux-x86-64/catalogue/qwen3-8b.graine.json | 462 |
memown-linux-x86-64/catalogue/qwen36-27b.graine.json | 477 |
memown-linux-x86-64/catalogue/qwen36-35b-a3b.graine.json | 499 |
memown-linux-x86-64/catalogue/r1-qwen-15b.graine.json | 526 |
memown-linux-x86-64/catalogue/r1-qwen-7b.graine.json | 519 |
memown-linux-x86-64/catalogue/seed-oss-36b.graine.json | 509 |
memown-linux-x86-64/catalogue/smollm2-17b.graine.json | 513 |
memown-linux-x86-64/catalogue/manifestes/deepseek-v4-flash.manifeste.json | 886 |
memown-linux-x86-64/catalogue/manifestes/glm-52.manifeste.json | 1,714 |
memown-linux-x86-64/catalogue/manifestes/kimi-k27-code.manifeste.json | 2,132 |
memown-linux-x86-64/catalogue/manifestes/kimi-k3.manifeste.json | 4,536 |
memown-linux-x86-64/catalogue/manifestes/minimax-m3.manifeste.json | 1,053 |
memown-linux-x86-64/catalogue/v10/qwen25-05b-v10.graine.json | 452 |
memown-linux-x86-64/porte.json | 2,280 |
memown-linux-x86-64/SHA256SUMS-porte | 10,512 |
memown-linux-x86-64/LISEZMOI.md | 13,742 |
memown-linux-x86-64/THIRD_PARTY_NOTICES.md | 23,078 |
memown-linux-x86-64/LICENSE | 17,595 |
memown-linux-x86-64/memown | 7,180,904 |
memown-linux-x86-64/provenance/gel_exclusion.json | 5,168 |
memown-linux-x86-64/provenance/LICENSE-llama.cpp | 1,078 |
memown-linux-x86-64/provenance/runtime_gcc.txt | 425 |
memown-linux-x86-64/provenance/vitesse_mesuree.json | 83,040 |
memown-linux-x86-64/provenance/identites_os.json | 25,210 |
memown-windows-x86-64.zip
| File | Size (bytes) |
|---|---|
memown-windows-x86-64/LICENSE | 17,595 |
memown-windows-x86-64/LISEZMOI.md | 14,570 |
memown-windows-x86-64/SHA256SUMS-porte | 8,077 |
memown-windows-x86-64/THIRD_PARTY_NOTICES.md | 23,078 |
memown-windows-x86-64/memown.exe | 8,386,957 |
memown-windows-x86-64/porte.json | 2,282 |
memown-windows-x86-64/catalogue/deepseek-v2-lite.graine.json | 516 |
memown-windows-x86-64/catalogue/deepseek-v4-flash.graine.json | 521 |
memown-windows-x86-64/catalogue/ernie-45-21b-a3b.graine.json | 528 |
memown-windows-x86-64/catalogue/gemma2-2b.graine.json | 478 |
memown-windows-x86-64/catalogue/gemma3-4b.graine.json | 499 |
memown-windows-x86-64/catalogue/gemma4-12b.graine.json | 497 |
memown-windows-x86-64/catalogue/gemma4-26b-a4b.graine.json | 498 |
memown-windows-x86-64/catalogue/gemma4-e4b.graine.json | 489 |
memown-windows-x86-64/catalogue/glm-52.graine.json | 490 |
memown-windows-x86-64/catalogue/gpt-oss-20b.graine.json | 477 |
memown-windows-x86-64/catalogue/hermes-43-36b.graine.json | 494 |
memown-windows-x86-64/catalogue/hy3.graine.json | 451 |
memown-windows-x86-64/catalogue/kimi-k27-code.graine.json | 513 |
memown-windows-x86-64/catalogue/kimi-k3.graine.json | 503 |
memown-windows-x86-64/catalogue/llama31-8b.graine.json | 521 |
memown-windows-x86-64/catalogue/llama32-1b.graine.json | 505 |
memown-windows-x86-64/catalogue/llama32-3b.graine.json | 506 |
memown-windows-x86-64/catalogue/minimax-m3.graine.json | 512 |
memown-windows-x86-64/catalogue/mistral-7b.graine.json | 517 |
memown-windows-x86-64/catalogue/olmoe-1b7b.graine.json | 518 |
memown-windows-x86-64/catalogue/phi4-mini.graine.json | 524 |
memown-windows-x86-64/catalogue/qwen25-05b.graine.json | 498 |
memown-windows-x86-64/catalogue/qwen25-15b.graine.json | 503 |
memown-windows-x86-64/catalogue/qwen25-7b.graine.json | 501 |
memown-windows-x86-64/catalogue/qwen25-coder-7b.graine.json | 525 |
memown-windows-x86-64/catalogue/qwen3-06b.graine.json | 464 |
memown-windows-x86-64/catalogue/qwen3-4b.graine.json | 462 |
memown-windows-x86-64/catalogue/qwen3-8b-source.graine.json | 465 |
memown-windows-x86-64/catalogue/qwen3-8b.graine.json | 462 |
memown-windows-x86-64/catalogue/qwen36-27b.graine.json | 477 |
memown-windows-x86-64/catalogue/qwen36-35b-a3b.graine.json | 499 |
memown-windows-x86-64/catalogue/r1-qwen-15b.graine.json | 526 |
memown-windows-x86-64/catalogue/r1-qwen-7b.graine.json | 519 |
memown-windows-x86-64/catalogue/seed-oss-36b.graine.json | 509 |
memown-windows-x86-64/catalogue/smollm2-17b.graine.json | 513 |
memown-windows-x86-64/catalogue/manifestes/deepseek-v4-flash.manifeste.json | 886 |
memown-windows-x86-64/catalogue/manifestes/glm-52.manifeste.json | 1,714 |
memown-windows-x86-64/catalogue/manifestes/kimi-k27-code.manifeste.json | 2,132 |
memown-windows-x86-64/catalogue/manifestes/kimi-k3.manifeste.json | 4,536 |
memown-windows-x86-64/catalogue/manifestes/minimax-m3.manifeste.json | 1,053 |
memown-windows-x86-64/catalogue/v10/qwen25-05b-v10.graine.json | 452 |
memown-windows-x86-64/moteurs/windows-x86-64-v10/ggml-base.dll | 648,192 |
memown-windows-x86-64/moteurs/windows-x86-64-v10/ggml-cpu.dll | 850,432 |
memown-windows-x86-64/moteurs/windows-x86-64-v10/ggml.dll | 59,392 |
memown-windows-x86-64/moteurs/windows-x86-64-v10/llama-common.dll | 3,187,712 |
memown-windows-x86-64/moteurs/windows-x86-64-v10/llama-server-impl.dll | 4,950,016 |
memown-windows-x86-64/moteurs/windows-x86-64-v10/llama-server.exe | 10,752 |
memown-windows-x86-64/moteurs/windows-x86-64-v10/llama.dll | 2,561,024 |
memown-windows-x86-64/moteurs/windows-x86-64-v10/msvcp140.dll | 557,728 |
memown-windows-x86-64/moteurs/windows-x86-64-v10/msvcp140_1.dll | 35,952 |
memown-windows-x86-64/moteurs/windows-x86-64-v10/mtmd.dll | 1,387,520 |
memown-windows-x86-64/moteurs/windows-x86-64-v10/vcomp140.dll | 193,152 |
memown-windows-x86-64/moteurs/windows-x86-64-v10/vcruntime140.dll | 124,544 |
memown-windows-x86-64/moteurs/windows-x86-64-v10/vcruntime140_1.dll | 49,792 |
memown-windows-x86-64/moteurs/windows-x86-64-v9/ggml-base.dll | 628,224 |
memown-windows-x86-64/moteurs/windows-x86-64-v9/ggml-cpu.dll | 799,744 |
memown-windows-x86-64/moteurs/windows-x86-64-v9/ggml.dll | 64,000 |
memown-windows-x86-64/moteurs/windows-x86-64-v9/llama-common.dll | 3,384,320 |
memown-windows-x86-64/moteurs/windows-x86-64-v9/llama-completion-impl.dll | 106,496 |
memown-windows-x86-64/moteurs/windows-x86-64-v9/llama-perplexity-impl.dll | 155,136 |
memown-windows-x86-64/moteurs/windows-x86-64-v9/llama-quantize-impl.dll | 121,344 |
memown-windows-x86-64/moteurs/windows-x86-64-v9/llama-server-impl.dll | 12,032,000 |
memown-windows-x86-64/moteurs/windows-x86-64-v9/llama-server.exe | 10,752 |
memown-windows-x86-64/moteurs/windows-x86-64-v9/llama.dll | 2,385,920 |
memown-windows-x86-64/moteurs/windows-x86-64-v9/msvcp140.dll | 557,728 |
memown-windows-x86-64/moteurs/windows-x86-64-v9/msvcp140_1.dll | 35,952 |
memown-windows-x86-64/moteurs/windows-x86-64-v9/mtmd.dll | 1,199,104 |
memown-windows-x86-64/moteurs/windows-x86-64-v9/vcomp140.dll | 193,152 |
memown-windows-x86-64/moteurs/windows-x86-64-v9/vcruntime140.dll | 124,544 |
memown-windows-x86-64/moteurs/windows-x86-64-v9/vcruntime140_1.dll | 49,792 |
memown-windows-x86-64/provenance/LICENSE-llama.cpp | 1,078 |
memown-windows-x86-64/provenance/gel_exclusion.json | 4,245 |
memown-windows-x86-64/provenance/identites_os.json | 25,210 |
memown-windows-x86-64/provenance/vitesse_mesuree.json | 83,040 |
Source code
Player source code: not published. Engine: a modified build of llama.cpp (MIT). The upstream source is public; our changes are not published. Source offer for the GPL runtime libraries: see Licences.