LoganResearch commited on
Commit
d106751
·
1 Parent(s): 3f598f5

Fix all references to use merged model, remove broken API section

Browse files
Files changed (1) hide show
  1. README.md +3 -36
README.md CHANGED
@@ -9,7 +9,7 @@ tags:
9
  - dense-responses
10
  - self-optimization
11
  - representation-engineering
12
- base_model: NousResearch/Hermes-3-Llama-3.1-8B
13
  ---
14
  ![ARC Banner](banner.svg)
15
 
@@ -18,9 +18,9 @@ base_model: NousResearch/Hermes-3-Llama-3.1-8B
18
  A closed-loop control system that uses internal state predictability to improve response efficiency without collapsing.
19
 
20
  **Author:** Logan Matthew Napolitano
21
- **Base Model:** NousResearch/Hermes-3-Llama-3.1-8B
22
  **License:** CC BY 4.0
23
- **Code:** 7,111 lines | **Weights:** ~6.5 GB
24
 
25
  ---
26
 
@@ -155,39 +155,6 @@ A/B checkpoint comparison with automatic rollback on quality drops > 0.05.
155
 
156
  ---
157
 
158
- ## API Integration
159
-
160
- For developers integrating ARC into their own applications:
161
-
162
- ```python
163
- from transformers import AutoModelForCausalLM, AutoTokenizer
164
- from peft import PeftModel
165
- import torch
166
-
167
- base = AutoModelForCausalLM.from_pretrained(
168
- "NousResearch/Hermes-3-Llama-3.1-8B",
169
- torch_dtype=torch.float16,
170
- device_map="auto",
171
- load_in_4bit=True
172
- )
173
-
174
- model = PeftModel.from_pretrained(
175
- base,
176
- "LoganResearch/ARC-Base-8B-Condensed",
177
- subfolder="dense_checkpoints/step_100"
178
- )
179
-
180
- tokenizer = AutoTokenizer.from_pretrained("NousResearch/Hermes-3-Llama-3.1-8B")
181
-
182
- prompt = "<|im_start|>user\nWhat is recursion?<|im_end|>\n<|im_start|>assistant\n"
183
- inputs = tokenizer(prompt, return_tensors="pt").to("cuda")
184
- output = model.generate(**inputs, max_new_tokens=50)
185
- print(tokenizer.decode(output[0], skip_special_tokens=True))
186
- ```
187
-
188
- Note: For full dense output with CF-HoT steering, use the main engine (`ubermenschetien_v2_full.py`).
189
-
190
- ---
191
 
192
  ## Training From Scratch
193
 
 
9
  - dense-responses
10
  - self-optimization
11
  - representation-engineering
12
+ base_model: LoganResearch/ARC-Base-8B-Condensed
13
  ---
14
  ![ARC Banner](banner.svg)
15
 
 
18
  A closed-loop control system that uses internal state predictability to improve response efficiency without collapsing.
19
 
20
  **Author:** Logan Matthew Napolitano
21
+ **Base Model:** LoganResearch/ARC-Base-8B-Condensed
22
  **License:** CC BY 4.0
23
+ **Code:** 7,111 lines | **Weights:** ~16 GB
24
 
25
  ---
26
 
 
155
 
156
  ---
157
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
158
 
159
  ## Training From Scratch
160