File size: 1,508 Bytes
28788d0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Hugging Face upload checklist

Upload everything in this folder to your HF model repo (e.g. `your-user/meltdown-q8`).

## Files in `hf/` (ready now)

| File | Size (approx) | Required |
|---|---|---|
| `README.md` | small | Yes — model card |
| `system_prompt.txt` | small | Yes |
| `config.recommended.json` | small | Yes |
| `benchmark_comparison.png` | small | Yes |
| `agent_category_chart.png` | small | Yes |
| `local_vs_cloud.png` | small | Yes |
| `eval_standard.json` | small | Recommended |
| `eval_agent.json` | small | Recommended |
| `frontier_reference.json` | small | Recommended |
| `.gitattributes` | tiny | Yes (enables GGUF LFS) |

## Add before upload

| File | Source | Size |
|---|---|---|
| `Meltdown_Q8.gguf` | `..\Meltdown_Q8.gguf` | ~3.1 GB |

```powershell
Copy-Item "..\Meltdown_Q8.gguf" ".\Meltdown_Q8.gguf"
```

## Upload commands

From this `hf/` folder:

```powershell
# One-time: install HF CLI + git-lfs
pip install huggingface_hub
git lfs install

# Create repo and push (replace YOUR_USER/meltdown-q8)
huggingface-cli repo create meltdown-q8 --type model
git init
git lfs track "*.gguf"
git add .
git commit -m "Add Meltdown Q8 GGUF and model card"
git remote add origin https://huggingface.co/YOUR_USER/meltdown-q8
git push origin main
```

Or drag-and-drop all files in the HF web UI (enable Git LFS for the `.gguf`).

## Do not upload

- `benchmarks/` scripts and logs (dev-only)
- `terminals/`, `mcps/`, `agent-tools/`
- Training data (`meltdown_ape_eval50.jsonl`)