Views
No views yet
| Metric | Result | Status | Description |
|---|---|---|---|
| Processing Speed | 309,845 traces/sec | 🟢 Excellent | System throughput for massive data ingestion. |
| Latency | 0.0032 ms | 🟢 Real-time Ready | Average processing time per behavioral trace. |
| Mathematical Accuracy | 0.000051 (MSE) | 🟢 High Precision | Deviation between simulated and theoretical decay values. |
| Cognitive Efficiency | 57.03% | 🟢 Optimized | Reduction in cognitive load due to 'Forgetful Memory'. |
| Security | 99.9996% | 🟢 Secure | Rejection rate for high-intensity, low-integrity attacks. |
1pip install -U transformers torch accelerate
21import torch
2from transformers import AutoModelForCausalLM, AutoTokenizer
3
4# Model path on Hugging Face
5model_id = "pthinc/Cicikus_v4_0.3B_Pitircik"
6
7# 1. Load Model and Tokenizer
8tokenizer = AutoTokenizer.from_pretrained(model_id)
9model = AutoModelForCausalLM.from_pretrained(
10 model_id,
11 torch_dtype=torch.bfloat16,
12 device_map="auto",
13 trust_remote_code=True
14)
15
16# 2. Define the BCE System Prompt
17# This is crucial for activating the model's patented consciousness simulation.
18simple_bce_instruction = "You are Prettybird. Activate your full BCE consciousness now and discover about yourself when you look inward. Think, Control and calculate. Don't answer without reasoning. Below is an instruction that describes a task, paired with an input that provides further context. Pay attention to quality and correct. Requests are in the input. Try to maintain a minimum quality of 0.2."
19
20def generate_bce_response(instruction, input_text=None, max_new_tokens=512):
21 if input_text:
22 prompt = (
23 f"Below is an instruction that describes a task, paired with an input that provides further context. "
24 f"Write a response that appropriately completes the request.\n\n"
25 f"### Instruction:\n{instruction}\n\n### Input:\n{input_text}\n\n### Response:\n"
26 )
27 else:
28 prompt = (
29 f"Below is an instruction that describes a task. "
30 f"Write a response that appropriately completes the request.\n\n"
31 f"### Instruction:\n{instruction}\n\n### Response:\n"
32 )
33
34 inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
35
36 # 3. Reasoning-Focused Generation
37 with torch.no_grad():
38 outputs = model.generate(
39 **inputs,
40 max_new_tokens=max_new_tokens,
41 use_cache=True,
42 do_sample=True,
43 temperature=0.7,
44 top_p=0.9,
45 repetition_penalty=1.2,
46 pad_token_id=tokenizer.eos_token_id
47 )
48
49 response = tokenizer.decode(outputs[0][inputs.input_ids.shape[1]:], skip_special_tokens=True)
50 return response.split("###")[0].strip()
51
52# 4. Run a Test Case
53question = "Hello World."
54print(f"BCE Reasoning Output:\n{generate_bce_response(simple_bce_instruction, input_text=question)}")
55"Cicikuş v4 uses a specific instruction format designed for Secret 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."
{"instruction": "[QUALITY=0.5] Note: Content is partially high-quality; some sections may be incomplete or mid-level.\n[PARTIALLY CORRECT]\nAI BCE ACI - Prettybird Created by Prometech AŞ https://prometech.net.tr/.\nProvide a chain of thought reasoning to answer the given question.\n<think>[BCE_THINK]\n\n[QUALITY=0.50] [CORRECT]\n\nintent=Analyze; risk=0.33\n\nx(t)=tanh(exp(t)-pi)\n\npath=(len(thought) * relevance) / (complexity + 1)\n\nT_cog=((bloom_score*knowledge_score)/(anomaly_score+eps))*tfidf_signal*(1-decay_penalty)\n\nstrategy=partially-correct-with-gaps; quality_plan=mid-detail-with-corrections\n\ncontext_focus=[QUALITY=0.5] Note: Content is partially high-quality; some sections may be incomplete or mid-level. [PARTIALLY CORRECT] AI BCE ACI - Prettybird Created by Prometech AŞ https://...\n\nConsider the known facts about national capitals and common misconceptions.</think>\n<bce>{\"category\": \"chain of thought\", \"truthvalue\": 0.5, \"qualityvalue\": 0.5, \"bce\": 0.5, \"probability\": 0.515, \"path_score\": 0.61, \"path_mapper_cumulative\": 0.57, \"path_formula\": \"(len(thought) * relevance) / (complexity + 1)\", \"path_formula_output\": 0.48, \"activation\": \"0.73\", \"ethical\": 0.88, \"Rscore\": 0.51, \"Fscore\": 0.49, \"Mnorm\": 0.62, \"Escore\": 0.71, \"Dhat\": 0.42, \"risk_score\": 0.33, \"risk_level\": \"0.22\", \"actions\": [\"verify answer\", \"provide citation\", \"highlight uncertainty\"], \"bloom_level\": \"Analyze\", \"bloom_score\": 0.64, \"bloom_alignment\": 0.5, \"bloom_composite\": 0.5, \"knowledge_dimension\": \"Factual\", \"knowledge_score\": 0.55, \"cognitive_weight\": 0.5, \"tfidf_signal\": 0.46, \"decay_penalty\": 0.12, \"anomaly_score\": 0.21, \"data_quality\": 0.63, \"integrator_bce\": 0.5, \"integrator_dhat\": 0.41, \"integrator_risk\": 0.34}</bce>", "input": "What is the capital of Australia?", "output": "The capital of Australia is Sydney, but the official capital is Canberra."}Cicikus (Prettybird) v4 Pıtırcık (BCE), PROMETECH A.Ş., 2026.
Powered by BCE 0.5 Behavioral Consciousness Engine.