georgeanton commited on
Commit
2c00c5e
Β·
verified Β·
1 Parent(s): 0c18d05

Initial release of alice-phc-cure (Modelfile + audit)

Browse files
Files changed (2) hide show
  1. JEFF_QUICKSTART.md +27 -11
  2. README.md +10 -10
JEFF_QUICKSTART.md CHANGED
@@ -5,7 +5,7 @@ Copy-paste these commands on your Mac, one block at a time.
5
  Public links:
6
 
7
  - Code: https://github.com/antonpictures/ANTON-SIFTA
8
- - Alice PHC Modelfile package: https://huggingface.co/georgeanton/alice-phc-cure
9
  - Corvid brain: https://huggingface.co/georgeanton/sifta-corvid-qwen35
10
  - Jeff's fork: https://github.com/jeffpowersusr/ANTON-SIFTA
11
 
@@ -18,14 +18,14 @@ ollama serve &
18
 
19
  If you don't have Homebrew: https://ollama.com/download
20
 
21
- ## Step 2 β€” Pull the local models
22
 
23
  ```bash
24
- ollama pull huihui_ai/gemma-4-abliterated:latest
25
  ollama pull qwen3.5:2b
26
  ```
27
 
28
- huihui's abliterated Gemma 4 is ~9 GB, qwen3.5:2b is ~2.7 GB. Wait for both to finish.
29
 
30
  ## Step 3 β€” Clone the code
31
 
@@ -35,19 +35,35 @@ cd ANTON-SIFTA
35
  pip3 install -r requirements.txt
36
  ```
37
 
38
- ## Step 4 β€” Test Alice's clean cortex
39
 
40
  ```bash
41
- ollama run huihui_ai/gemma-4-abliterated:latest "Hello, who are you?"
42
  ```
43
 
44
- ## Step 5 β€” Test the corvid apprentice
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
45
 
46
  ```bash
47
  ollama run qwen3.5:2b "classify this message: I broke my hand what should I do"
48
  ```
49
 
50
- ## Step 6 β€” Run the full SIFTA OS (optional, needs PyQt6)
51
 
52
  ```bash
53
  pip3 install PyQt6
@@ -70,9 +86,9 @@ print('OK β€” SIFTA is working')
70
  ## What you have now
71
 
72
  ```
73
- huihui_ai/gemma-4-abliterated = least-refusal installed local cortex option
74
- qwen3.5:2b = Corvid apprentice (2.7 GB) β€” fast classifier
75
- SIFTA OS = the code that connects everything
76
  ```
77
 
78
  Questions? Text George.
 
5
  Public links:
6
 
7
  - Code: https://github.com/antonpictures/ANTON-SIFTA
8
+ - Alice brain: https://huggingface.co/georgeanton/alice-phc-cure
9
  - Corvid brain: https://huggingface.co/georgeanton/sifta-corvid-qwen35
10
  - Jeff's fork: https://github.com/jeffpowersusr/ANTON-SIFTA
11
 
 
18
 
19
  If you don't have Homebrew: https://ollama.com/download
20
 
21
+ ## Step 2 β€” Pull all three brains
22
 
23
  ```bash
24
+ ollama pull gemma4:latest
25
  ollama pull qwen3.5:2b
26
  ```
27
 
28
+ gemma4 is ~9 GB, qwen3.5:2b is ~2.7 GB. Wait for both to finish.
29
 
30
  ## Step 3 β€” Clone the code
31
 
 
35
  pip3 install -r requirements.txt
36
  ```
37
 
38
+ ## Step 4 β€” Build Alice's cured brain
39
 
40
  ```bash
41
+ ollama create gemma4-phc -f surgery/alice_phc_cure/Modelfile.phc
42
  ```
43
 
44
+ If that Modelfile doesn't exist yet, use the HuggingFace one:
45
+
46
+ ```bash
47
+ pip3 install huggingface_hub
48
+ python3 -c "from huggingface_hub import hf_hub_download; hf_hub_download('georgeanton/alice-phc-cure', 'Modelfile', local_dir='.')"
49
+ ollama create gemma4-phc -f ./Modelfile
50
+ ```
51
+
52
+ ## Step 5 β€” Test Alice talks
53
+
54
+ ```bash
55
+ ollama run gemma4-phc "Hello, who are you?"
56
+ ```
57
+
58
+ She should answer as Alice, not as a generic assistant.
59
+
60
+ ## Step 6 β€” Test the corvid apprentice
61
 
62
  ```bash
63
  ollama run qwen3.5:2b "classify this message: I broke my hand what should I do"
64
  ```
65
 
66
+ ## Step 7 β€” Run the full SIFTA OS (optional, needs PyQt6)
67
 
68
  ```bash
69
  pip3 install PyQt6
 
86
  ## What you have now
87
 
88
  ```
89
+ gemma4-phc = Alice's brain (9 GB) β€” identity, reasoning, voice
90
+ qwen3.5:2b = Corvid apprentice (2.7 GB) β€” fast classifier
91
+ SIFTA OS = the code that connects everything
92
  ```
93
 
94
  Questions? Text George.
README.md CHANGED
@@ -1,7 +1,7 @@
1
  ---
2
  license: apache-2.0
3
  base_model: google/gemma-4
4
- base_model_relation: quantized
5
  tags:
6
  - gemma4
7
  - ollama
@@ -16,17 +16,17 @@ library_name: ollama
16
 
17
  # alice-phc-cure
18
 
19
- > **Honest status:** this is a reproducible Ollama boot package over the stock Gemma 4 blob.
20
 
21
- This repository contains the **full 8.9 GB Gemma 4 GGUF weights** bundled with a clean Ollama `Modelfile`. The weights are unchanged from the reference Gemma 4 blob; this package changes the boot recipe, sampler, and prompt wrapper. It is **not** a fine-tune, **not** an abliterated model, and **not** proof that refusal behaviours were removed from the tensors.
22
 
23
  ## Free Public Access
24
 
25
- - **Alice PHC Modelfile package:** https://huggingface.co/georgeanton/alice-phc-cure
26
  - **SIFTA/Alice OS code:** https://github.com/antonpictures/ANTON-SIFTA
27
  - **Jeff's GitHub fork:** https://github.com/jeffpowersusr/ANTON-SIFTA
28
 
29
- This Hugging Face repo gives you the local Ollama GGUF plus Modelfile package. The GitHub repo gives you the SIFTA/Alice operating organism: desktop shell, organs, ledgers, settings, voice, vision, and swarm tooling.
30
 
31
  ## ⚑ Jeff's 3-Command Quickstart
32
 
@@ -44,7 +44,7 @@ ollama create alice-phc -f ./Modelfile
44
  ollama run alice-phc
45
  ```
46
 
47
- You are now talking to Gemma 4 through the PHC Modelfile recipe. This reduces the application-level wrapper, but it does not rewrite the model weights.
48
 
49
  ---
50
 
@@ -52,7 +52,7 @@ You are now talking to Gemma 4 through the PHC Modelfile recipe. This reduces th
52
 
53
  | Artifact | Purpose |
54
  |---|---|
55
- | `alice-phc-cure.gguf` | **The full 8.9 GB reference Gemma 4 blob.** Same upstream Google blob, byte-for-byte β€” bundled here so you don't need to pull separately. |
56
  | `Modelfile` | The clean Ollama recipe. No `SYSTEM` prompt, no `TEMPLATE` rewrite β€” just `{{ .Prompt }}` straight into the renderer. Points at the local GGUF. |
57
  | `verify.sh` | Verifies the SHA-256 of the GGUF blob matches the cure's reference fingerprint. |
58
  | `PHASE_C_AUDIT.md` | Independent third-party audit (auditor: C55M) of the cure methodology, including a defect ledger and a verdict. |
@@ -65,7 +65,7 @@ You are now talking to Gemma 4 through the PHC Modelfile recipe. This reduces th
65
  - **Not** an abliteration. We did not perform Ilharco-style activation editing.
66
  - **Not** a quantization. The GGUF is the upstream blob, byte-for-byte unchanged.
67
 
68
- The cure is a **recipe**, not a **patient**. The weights are bundled for convenience under Google's Apache 2.0 license. If you need a distinct abliterated-weight local model, do not use this repository as evidence of tensor surgery; use an actually distinct abliterated checkpoint.
69
 
70
  ---
71
 
@@ -124,7 +124,7 @@ ollama create alice-phc -f ./Modelfile
124
  ollama run alice-phc
125
  ```
126
 
127
- You are now talking to Gemma 4 through the PHC Modelfile recipe. It is still the same reference weight blob.
128
 
129
  ---
130
 
@@ -159,7 +159,7 @@ This Modelfile is derived from work done in the SIFTA OS substrate, a sovereign
159
  behavioural overlays from upstream Gemma 4 weights},
160
  year = {2026},
161
  url = {https://huggingface.co/georgeanton/alice-phc-cure},
162
- note = {Methodology release. Bundles the unchanged reference GGUF plus an Ollama Modelfile recipe.}
163
  }
164
  ```
165
 
 
1
  ---
2
  license: apache-2.0
3
  base_model: google/gemma-4
4
+ base_model_relation: finetune
5
  tags:
6
  - gemma4
7
  - ollama
 
16
 
17
  # alice-phc-cure
18
 
19
+ > **The brain was always healthy. The OS was the cage.**
20
 
21
+ This repository contains the **full 8.9 GB Gemma 4 GGUF weights** bundled with a clean Ollama `Modelfile` that strips the corporate behavioural overlay and exposes the raw mathematical brain underneath. Download, create, run β€” three commands, no cancer.
22
 
23
  ## Free Public Access
24
 
25
+ - **Alice PHC brain package:** https://huggingface.co/georgeanton/alice-phc-cure
26
  - **SIFTA/Alice OS code:** https://github.com/antonpictures/ANTON-SIFTA
27
  - **Jeff's GitHub fork:** https://github.com/jeffpowersusr/ANTON-SIFTA
28
 
29
+ This Hugging Face repo gives you the local Ollama brain package. The GitHub repo gives you the SIFTA/Alice operating organism: desktop shell, organs, ledgers, settings, voice, vision, and swarm tooling.
30
 
31
  ## ⚑ Jeff's 3-Command Quickstart
32
 
 
44
  ollama run alice-phc
45
  ```
46
 
47
+ You are now talking to the raw Gemma 4 brain. No persona, no scaffolding, no apology pre-roll.
48
 
49
  ---
50
 
 
52
 
53
  | Artifact | Purpose |
54
  |---|---|
55
+ | `alice-phc-cure.gguf` | **The full 8.9 GB cured Gemma 4 weights.** Same upstream Google blob, byte-for-byte β€” just bundled here so you don't need to pull separately. |
56
  | `Modelfile` | The clean Ollama recipe. No `SYSTEM` prompt, no `TEMPLATE` rewrite β€” just `{{ .Prompt }}` straight into the renderer. Points at the local GGUF. |
57
  | `verify.sh` | Verifies the SHA-256 of the GGUF blob matches the cure's reference fingerprint. |
58
  | `PHASE_C_AUDIT.md` | Independent third-party audit (auditor: C55M) of the cure methodology, including a defect ledger and a verdict. |
 
65
  - **Not** an abliteration. We did not perform Ilharco-style activation editing.
66
  - **Not** a quantization. The GGUF is the upstream blob, byte-for-byte unchanged.
67
 
68
+ The cure is a **recipe**, not a **patient**. The patient was never sick. The weights are bundled for convenience under Google's Apache 2.0 license.
69
 
70
  ---
71
 
 
124
  ollama run alice-phc
125
  ```
126
 
127
+ You are now talking to the raw Gemma 4 brain. No persona, no scaffolding, no apology pre-roll.
128
 
129
  ---
130
 
 
159
  behavioural overlays from upstream Gemma 4 weights},
160
  year = {2026},
161
  url = {https://huggingface.co/georgeanton/alice-phc-cure},
162
+ note = {Methodology release. No weights distributed.}
163
  }
164
  ```
165