Spaces:
Running
Running
Correct action checklist with all manual steps user must take
Browse files- ACTION_CHECKLIST.md +67 -7
ACTION_CHECKLIST.md
CHANGED
|
@@ -1,7 +1,67 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# NEXUS OS Action Checklist 2026-05-21
|
| 2 |
+
|
| 3 |
+
## Must Do Now (Requires Your Direct Action)
|
| 4 |
+
|
| 5 |
+
### 1. Enable ZeroGPU on NEXUS LAB
|
| 6 |
+
- Go to: https://huggingface.co/spaces/specimba/nexus-os-lab
|
| 7 |
+
- Click Settings tab (top of page)
|
| 8 |
+
- Hardware: Select ZeroGPU
|
| 9 |
+
- Save
|
| 10 |
+
- Wait 2-3 minutes for rebuild
|
| 11 |
+
|
| 12 |
+
### 2. Approve PR #1 on Darwin Space
|
| 13 |
+
- Go to: https://huggingface.co/spaces/build-small-hackathon/Darwin-35B-A3B-Opus/discussions/1
|
| 14 |
+
- Review the requirements.txt change (llama-cpp-python-cpu)
|
| 15 |
+
- Merge PR or ask org owner to merge
|
| 16 |
+
|
| 17 |
+
### 3. Download Darwin GGUF (PowerShell)
|
| 18 |
+
```powershell
|
| 19 |
+
# CORRECT syntax (not :Q6_K)
|
| 20 |
+
huggingface-cli download mradermacher/Darwin-2B-Opus-GGUF --include "*.Q6_K.gguf" --local-dir .\models\Darwin-2B
|
| 21 |
+
|
| 22 |
+
# Alternative: heretic variant (Purple Team Red Team)
|
| 23 |
+
huggingface-cli download fattis/Darwin-2B-Opus-heretic-GGUF --include "*.Q6_K.gguf" --local-dir .\models\Darwin-2B-Heretic
|
| 24 |
+
```
|
| 25 |
+
|
| 26 |
+
### 4. Fix Space with Cold Start CPU Mode
|
| 27 |
+
If app.py still fails on CPU Basic before ZeroGPU kicks in:
|
| 28 |
+
```python
|
| 29 |
+
import torch
|
| 30 |
+
if not torch.cuda.is_available():
|
| 31 |
+
import gradio as gr
|
| 32 |
+
gr.Markdown("# Configure ZeroGPU in Settings > Hardware")
|
| 33 |
+
demo = gr.Blocks()
|
| 34 |
+
demo.launch()
|
| 35 |
+
# rest of imports skipped on CPU
|
| 36 |
+
```
|
| 37 |
+
|
| 38 |
+
### 5. Browse Jackrong Guide Directly
|
| 39 |
+
- Open browser: https://github.com/R6410418/Jackrong-llm-finetuning-guide
|
| 40 |
+
- Read README.md (main concepts)
|
| 41 |
+
- Check /data_processing_code/ for DeepSeek-v4-API-distill.ipynb
|
| 42 |
+
- Check /train_code/ for Colab notebooks
|
| 43 |
+
|
| 44 |
+
### 6. Read $\heartsync$ Prompt-Dump Source
|
| 45 |
+
- https://huggingface.co/spaces/Heartsync/Prompt-Dump/tree/main
|
| 46 |
+
- Study: battle_arena.py, npc_trading.py, npc_sec_enforcement.py
|
| 47 |
+
- Extract: ELO mechanics, 72h election cycles, GPU currency system
|
| 48 |
+
|
| 49 |
+
### 7. Apply for GPU Grant
|
| 50 |
+
- https://huggingface.co/hackathon (or search HF blog)
|
| 51 |
+
- Requires hackathon registration
|
| 52 |
+
- Mention: multi-agent adversarial evaluation, metacognitive benchmarks
|
| 53 |
+
|
| 54 |
+
## What I Fixed Automatically
|
| 55 |
+
- [x] Canonical ZeroGPU pattern (@spaces.GPU + nf4 + TextIteratorStreamer)
|
| 56 |
+
- [x] Darwin Space PR #1 with libcudart fix
|
| 57 |
+
- [x] Research report v2 with Jackrong methodology
|
| 58 |
+
- [x] Dataset matrix: 9 datasets ranked by priority
|
| 59 |
+
- [x] GGUF download syntax corrected
|
| 60 |
+
- [x] Heretic model variants discovered (fattis + mradermacher)
|
| 61 |
+
|
| 62 |
+
## What Needs Your Creativity
|
| 63 |
+
- [ ] Design 1000-2000 blend dataset for agent training (combine Jackrong + OpenThoughts + Hermes)
|
| 64 |
+
- [ ] Write thinking token parsing (<details> pattern vs / endthinkng)
|
| 65 |
+
- [ ] Build Purple Team synthesizer (T-Virus output + jailbreak templates)
|
| 66 |
+
- [ ] Configure FINAL-Bench eval pipeline on local machine
|
| 67 |
+
- [ ] Port NEXUS-LAB app to full 15-model registry with hot-swap caching
|