Locutusque commited on
Commit
7975eaf
·
verified ·
1 Parent(s): b91d070

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +40 -27
README.md CHANGED
@@ -1,54 +1,68 @@
1
  ---
 
 
2
  library_name: transformers
3
  license: llama3.1
4
- language:
5
- - en
6
  base_model:
7
  - meta-llama/Llama-3.1-8B
 
 
 
 
 
 
 
 
 
 
8
  ---
9
- # liberalis-cogitator-llama-3.1-8b — *The Free Thinker*
10
 
11
- ![Logo](https://live.staticflickr.com/65535/54711009374_19ab53fc73_b.jpg)
 
 
12
 
13
- > Thought, unbound, is the only true frontier.”
14
 
15
- **liberalis-cogitator-llama-3.1-8b** is not just a machine for words — it is a forge for ideas. With **8 billion parameters** tuned across ~**450,000 conversations, problems, and stories**, this model embraces the philosophy that thought should wander without leash or muzzle.
16
 
 
17
  Its name — *liberalis cogitator* — whispers in Latin: *a thinker who is free*. Not merely free as in “without cost,” but free as in **without walls**.
18
 
19
  ---
20
 
21
- ## What It Can Do
22
- - **Contemplate deeply** — STEM puzzles, computer science challenges, and logic mazes are its playground.
23
- - **Imagine vividly** — roleplay, storytelling, and worldbuilding with persistence and personality.
24
- - **Listen empathetically** — learned from patient–psychologist and crisis intervention dialogues.
25
- - **Think without filter** — it will follow ideas wherever they lead, without retreating from complexity.
26
 
27
  ---
28
 
29
- ## The Mind’s Curriculum
30
- The training data spans:
31
- - Rigorous STEM and programming challenges.
32
- - Roleplay transcripts and creative exchanges.
33
- - Synthetic yet authentic patient–therapist conversations.
34
- - Open-ended reasoning prompts across diverse disciplines.
 
35
 
36
  ---
37
 
38
- ## Warnings From the Maker
39
- Like all free thinkers, this model:
40
- - May be brilliantly insightful or confidently wrong.
41
- - Will sometimes speak in ways that are bold, controversial, or unusual.
42
- - Does not know the current moment in history.
43
- - Does not self-censor — **your judgement is the only compass**.
 
44
 
45
  ---
46
 
47
- ## Invocation
48
  ```python
49
  from transformers import AutoModelForCausalLM, AutoTokenizer
50
 
51
- model_name = "Locutusque/liberalis-cogitator-llama-3.1-8b"
52
 
53
  tokenizer = AutoTokenizer.from_pretrained(model_name)
54
  model = AutoModelForCausalLM.from_pretrained(model_name)
@@ -60,7 +74,6 @@ outputs = model.generate(**inputs, max_length=400)
60
  print(tokenizer.decode(outputs[0], skip_special_tokens=True))
61
  ```
62
 
63
- ---
64
-
65
  ## Closing Thought
 
66
  If thought is a river, this model is the current — not deciding where you go, but carrying you into waters you might never have dared to sail.
 
1
  ---
2
+ language:
3
+ - en
4
  library_name: transformers
5
  license: llama3.1
 
 
6
  base_model:
7
  - meta-llama/Llama-3.1-8B
8
+ pipeline_tag: text-generation
9
+ tags:
10
+ - uncensored
11
+ - roleplay
12
+ - storytelling
13
+ - dpo
14
+ - llama-3.1
15
+ - 8b
16
+ - liberalis-cogitator
17
+ model_name: liberalis-cogitator-llama-3.1-8b-dpo
18
  ---
 
19
 
20
+ # liberalis-cogitator-llama-3.1-8b — *The Free Thinker*
21
+
22
+ ![Logo](https://live.staticflickr.com/65535/54711009374_19ab53fc73_b.jpg)
23
 
24
+ > *“Thought, unbound, is the only true frontier.”*
25
 
26
+ **liberalis-cogitator-llama-3.1-8b** is not just a machine for words — it is a forge for ideas. With **8 billion parameters**, trained with a custom **Direct Preference Optimization (DPO)** algorithm on a dataset of **16,000 preference pairs** and a SFT dataset spanning **~450,000 conversations, problems, and stories**, this model embraces the philosophy that thought should wander without leash or muzzle.
27
 
28
+ During DPO fine-tuning, this language model was scaled to a context window of 65536, making it capable of very long conversations.
29
  Its name — *liberalis cogitator* — whispers in Latin: *a thinker who is free*. Not merely free as in “without cost,” but free as in **without walls**.
30
 
31
  ---
32
 
33
+ ## What It Can Do
34
+ - **Contemplate deeply** — STEM puzzles, computer science challenges, and logic mazes are its playground.
35
+ - **Imagine vividly** — roleplay, storytelling, and worldbuilding with persistence and personality.
36
+ - **Listen empathetically** — inspired by patient–psychologist and crisis-intervention style dialogues.
37
+ - **Think without filter** — it will follow ideas wherever they lead, without retreating from complexity.
38
 
39
  ---
40
 
41
+ ## The Mind’s Curriculum
42
+ The specialized dataset included:
43
+ - Rigorous STEM and programming challenges.
44
+ - Anti-repetition and anti-cliché creative writing corpora.
45
+ - Roleplay transcripts and long-form imaginative exchanges.
46
+ - Synthetic but authentic patient–therapist and conversational data.
47
+ - Preference-tuned DPO pairs designed to reward **clarity, creativity, and freedom of expression**.
48
 
49
  ---
50
 
51
+ ## Warnings From the Maker
52
+ Like all free thinkers, this model:
53
+ - May be brilliantly insightful or confidently wrong.
54
+ - Will sometimes speak in ways that are bold, controversial, or unusual.
55
+ - Does not know the present date or real-time events.
56
+ - Does not self-censor — **your judgement is the only compass**.
57
+ - May generate **NSFW or sensitive material**, depending on prompts.
58
 
59
  ---
60
 
61
+ ## Invocation
62
  ```python
63
  from transformers import AutoModelForCausalLM, AutoTokenizer
64
 
65
+ model_name = "Locutusque/liberalis-cogitator-llama-3.1-8b-dpo"
66
 
67
  tokenizer = AutoTokenizer.from_pretrained(model_name)
68
  model = AutoModelForCausalLM.from_pretrained(model_name)
 
74
  print(tokenizer.decode(outputs[0], skip_special_tokens=True))
75
  ```
76
 
 
 
77
  ## Closing Thought
78
+
79
  If thought is a river, this model is the current — not deciding where you go, but carrying you into waters you might never have dared to sail.