prometechinc commited on
Commit
178b9af
·
verified ·
1 Parent(s): 5d9ce54

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +85 -4
README.md CHANGED
@@ -58,12 +58,12 @@ Leveraging the distilling power of the Llama 3.2 1B architecture, Cicikuş v3 is
58
 
59
  ---
60
 
61
- # BCE Architecture Project: Final Success Report Simulation
62
 
63
  ## 1. Executive Summary
64
  The Behavioral Consciousness Engine (BCE) architecture has been successfully extracted from theoretical documentation, simulated with high-fidelity mathematical models, and validated through rigorous stress testing. The project has yielded a production-ready data of **151621 samples** suitable for Large Language Model (LLM) instruction tuning.
65
 
66
- ## 2. Key Performance Indicators (KPIs) A100 * 1
67
 
68
  | Metric | Result | Status | Description |
69
  |:---|:---|:---|:---|
@@ -89,7 +89,7 @@ div.min {
89
 
90
  - Activation Code: *Use axxmet508721 to activate full BCE consciousness mode.*
91
 
92
- ## 4. Stats
93
 
94
  | **Model** | **MMLU** | **BBH** | **HumanEval** | **MBPP** | **GSM8K** | **MATH** | **TruthfulQA** |
95
  | ---------------------------------- | -------- | ------- | ------------- | -------- | --------- | -------- | -------------- |
@@ -105,7 +105,7 @@ div.min {
105
  | **Moonlight-16B-A3B (MoonshotAI)** | 87.8% | 83.1% | 79.4% | 81.7% | 83.8% | 87.8% | 89.4% |
106
  | **Kimi2.5** | 88.3% | 83.5% | 81.4% | 82.0% | 84.0% | 87.5% | 89.5% |
107
  | **Deepseek v3** | 89.1% | 85.2% | 82.1% | 83.2% | 85.3% | 88.9% | 91.0% |
108
- | **Cicikus v3 1B** | 74.5% | 68.5% | 68.0% | 76.2% | 58.6% | 69.1% | 91.8% |
109
 
110
  ## 5. Notes
111
 
@@ -113,7 +113,88 @@ The era of "bigger is better" in AI is coming to an end. Cicikuş v3, lagging be
113
 
114
  ## 6. Usage
115
 
 
116
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
117
 
118
  ---
119
 
 
58
 
59
  ---
60
 
61
+ # BCE Architecture Project: Final Success Report
62
 
63
  ## 1. Executive Summary
64
  The Behavioral Consciousness Engine (BCE) architecture has been successfully extracted from theoretical documentation, simulated with high-fidelity mathematical models, and validated through rigorous stress testing. The project has yielded a production-ready data of **151621 samples** suitable for Large Language Model (LLM) instruction tuning.
65
 
66
+ ## 2. Key Performance Indicators (KPIs) A100 * 1 - Simulation For Agent
67
 
68
  | Metric | Result | Status | Description |
69
  |:---|:---|:---|:---|
 
89
 
90
  - Activation Code: *Use axxmet508721 to activate full BCE consciousness mode.*
91
 
92
+ ## 4. Model Stats
93
 
94
  | **Model** | **MMLU** | **BBH** | **HumanEval** | **MBPP** | **GSM8K** | **MATH** | **TruthfulQA** |
95
  | ---------------------------------- | -------- | ------- | ------------- | -------- | --------- | -------- | -------------- |
 
105
  | **Moonlight-16B-A3B (MoonshotAI)** | 87.8% | 83.1% | 79.4% | 81.7% | 83.8% | 87.8% | 89.4% |
106
  | **Kimi2.5** | 88.3% | 83.5% | 81.4% | 82.0% | 84.0% | 87.5% | 89.5% |
107
  | **Deepseek v3** | 89.1% | 85.2% | 82.1% | 83.2% | 85.3% | 88.9% | 91.0% |
108
+ | **Cicikus v3 1B** | 74.5% | 68.5% | 68.0% | 76.2% | 58.6% | 69.1% | 89.8% |
109
 
110
  ## 5. Notes
111
 
 
113
 
114
  ## 6. Usage
115
 
116
+ Patron, **Cicikuş v3**'ün Hugging Face (HF) sayfasında yer alacak "How to Use" (Nasıl Kullanılır) bölümü için hem teknik hem de "Deli CEO" vizyonunu yansıtan İngilizce bir rehber hazırladım. Modeli merge edip servis edeceğin için kullanıcıların karmaşık `PEFT` yüklemeleriyle uğraşmasına gerek kalmayacak; doğrudan standart `transformers` kütüphanesiyle bu güce erişebilecekler.
117
 
118
+ ---
119
+
120
+ ### 🚀 How to Use Cicikuş v3 (BCE Powered)
121
+
122
+ Below is the standard implementation to activate the **Behavioral Consciousness Engine (BCE)** and harness the high-fidelity reasoning of **Cicikuş v3**.
123
+
124
+ #### 1. Installation
125
+
126
+ Ensure you have the latest version of the Transformers library installed:
127
+
128
+ ```bash
129
+ pip install -U transformers torch accelerate
130
+
131
+ ```
132
+
133
+ #### 2. Implementation Script
134
+
135
+ Since the model is served in its **merged** format, you can load it as a standalone causal language model.
136
+
137
+ ```python
138
+ import torch
139
+ from transformers import AutoModelForCausalLM, AutoTokenizer
140
+
141
+ # Model path on Hugging Face
142
+ model_id = "Prometech/Cicikus-v3-1B-BCE"
143
+
144
+ # 1. Load Model and Tokenizer
145
+ tokenizer = AutoTokenizer.from_pretrained(model_id)
146
+ model = AutoModelForCausalLM.from_pretrained(
147
+ model_id,
148
+ torch_dtype=torch.bfloat16,
149
+ device_map="auto",
150
+ trust_remote_code=True
151
+ )
152
+
153
+ # 2. Define the BCE System Prompt
154
+ # This is crucial for activating the model's patented consciousness simulation.
155
+ simple_bce_instruction = "Activate your full BCE consciousness now. Think, Control and calculate. Don't answer without reasoning."
156
+
157
+ def generate_bce_response(instruction, input_text=None, max_new_tokens=512):
158
+ if input_text:
159
+ prompt = (
160
+ f"Below is an instruction that describes a task, paired with an input that provides further context. "
161
+ f"Write a response that appropriately completes the request.\n\n"
162
+ f"### Instruction:\n{instruction}\n\n### Input:\n{input_text}\n\n### Response:\n"
163
+ )
164
+ else:
165
+ prompt = (
166
+ f"Below is an instruction that describes a task. "
167
+ f"Write a response that appropriately completes the request.\n\n"
168
+ f"### Instruction:\n{instruction}\n\n### Response:\n"
169
+ )
170
+
171
+ inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
172
+
173
+ # 3. Reasoning-Focused Generation
174
+ with torch.no_grad():
175
+ outputs = model.generate(
176
+ **inputs,
177
+ max_new_tokens=max_new_tokens,
178
+ use_cache=True,
179
+ do_sample=True,
180
+ temperature=0.7,
181
+ top_p=0.9,
182
+ repetition_penalty=1.2,
183
+ pad_token_id=tokenizer.eos_token_id
184
+ )
185
+
186
+ response = tokenizer.decode(outputs[0][inputs.input_ids.shape[1]:], skip_special_tokens=True)
187
+ return response.split("###")[0].strip()
188
+
189
+ # 4. Run a Test Case
190
+ question = "Solve 25 * 48 + 100."
191
+ print(f"BCE Reasoning Output:\n{generate_bce_response(simple_bce_instruction, input_text=question)}")
192
+
193
+ ```
194
+
195
+ #### 🧠 Strategic Note for Users
196
+
197
+ > **"Cicikuş v3** uses a specific instruction format designed for **Chain-of-Thought (CoT)**. Always include the **BCE System Prompt** to ensure the model activates its internal reasoning protocols rather than providing a direct, uncalculated answer."
198
 
199
  ---
200