Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,144 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
datasets:
|
4 |
+
- kulia-moon/DeepRethink
|
5 |
+
language:
|
6 |
+
- en
|
7 |
+
base_model:
|
8 |
+
- openai-community/gpt2
|
9 |
+
tags:
|
10 |
+
- DeepQ
|
11 |
+
- "DeepRethink integrated"
|
12 |
+
- QFamily
|
13 |
+
- deep-thinking
|
14 |
+
- transformer
|
15 |
+
- pytorch
|
16 |
+
- conversational
|
17 |
+
- reasoning
|
18 |
+
- generative-model
|
19 |
+
- huggingface
|
20 |
+
- pretrained
|
21 |
+
- openai
|
22 |
+
- fine-tuned
|
23 |
+
- mind-extension
|
24 |
+
- philosophy
|
25 |
+
- sharegpt
|
26 |
+
- alignment
|
27 |
+
- language-model
|
28 |
+
- multi-turn
|
29 |
+
- q-and-a
|
30 |
+
- shareable
|
31 |
+
- teachable
|
32 |
+
- human-feedback
|
33 |
+
- deep-learning
|
34 |
+
- ai-model
|
35 |
+
- research
|
36 |
+
- synthetic-data
|
37 |
+
---
|
38 |
+
# π§ DeepQ
|
39 |
+
|
40 |
+
[](LICENSE)
|
41 |
+
[](https://huggingface.co/StableChatAI/DeepQ)
|
42 |
+
[](https://huggingface.co/datasets/kulia-moon/DeepRethink)
|
43 |
+
[](https://pypi.org/project/transformers/)
|
44 |
+
[](https://huggingface.co/StableChatAI/DeepQ)
|
45 |
+
[](https://pypi.org/project/datasets/)
|
46 |
+
[](https://pypi.org/project/transformers/)
|
47 |
+
[](https://huggingface.co/spaces)
|
48 |
+
[]()
|
49 |
+
[]()
|
50 |
+
[]()
|
51 |
+
[]()
|
52 |
+
[]()
|
53 |
+
[]()
|
54 |
+
[]()
|
55 |
+
[]()
|
56 |
+
[]()
|
57 |
+
[]()
|
58 |
+
[]()
|
59 |
+
[]()
|
60 |
+
[]()
|
61 |
+
|
62 |
+
---
|
63 |
+
|
64 |
+
## π What is DeepQ?
|
65 |
+
|
66 |
+
**DeepQ** is an advanced, reasoning-first language model built on the foundation of **OpenAI's GPT-2**, enhanced with **DeepRethink**, a ShareGPT-style introspective dataset designed for **multi-turn critical thinking** and **philosophical AI dialogue**.
|
67 |
+
|
68 |
+
It's built to simulate how a human thinks before answeringβa true "thinking" model rather than a reactive one.
|
69 |
+
|
70 |
+
---
|
71 |
+
|
72 |
+
## β¨ Features
|
73 |
+
|
74 |
+
- π€ **Deep reasoning** before answering
|
75 |
+
- π§© Trained with ShareGPT-style conversations + DeepRethink Q&A
|
76 |
+
- π§ Designed for philosophical, logical, and emotional introspection
|
77 |
+
- π Multi-turn dialogue support
|
78 |
+
- β‘οΈ Lightweight GPT-2 base for fast inference
|
79 |
+
- π§ͺ Works on CPU + GPU
|
80 |
+
- π Hugging Face Transformers compatible
|
81 |
+
- 𧬠Great base for alignment research or dialog tuning
|
82 |
+
|
83 |
+
---
|
84 |
+
|
85 |
+
## π Quickstart
|
86 |
+
|
87 |
+
```python
|
88 |
+
from transformers import AutoTokenizer, AutoModelForCausalLM
|
89 |
+
|
90 |
+
tokenizer = AutoTokenizer.from_pretrained("kulia-moon/DeepQ")
|
91 |
+
model = AutoModelForCausalLM.from_pretrained("kulia-moon/DeepQ")
|
92 |
+
|
93 |
+
input_text = "What is consciousness in your view?"
|
94 |
+
inputs = tokenizer(input_text, return_tensors="pt")
|
95 |
+
output = model.generate(**inputs, max_new_tokens=100)
|
96 |
+
|
97 |
+
print(tokenizer.decode(output[0]))
|
98 |
+
````
|
99 |
+
|
100 |
+
---
|
101 |
+
|
102 |
+
## π Training Dataset
|
103 |
+
|
104 |
+
* π [kulia-moon/DeepRethink](https://huggingface.co/datasets/kulia-moon/DeepRethink)
|
105 |
+
* Includes aligned prompts, deep thought processes, and answer reflection sequences
|
106 |
+
|
107 |
+
---
|
108 |
+
|
109 |
+
## π§ͺ Ideal Use Cases
|
110 |
+
|
111 |
+
* π€ AI alignment studies
|
112 |
+
* π§ Thoughtful assistants
|
113 |
+
* π¬ Roleplay and dynamic chatbot interactions
|
114 |
+
* π Educational tutoring models
|
115 |
+
* 𧬠Cognitive science experiments
|
116 |
+
|
117 |
+
---
|
118 |
+
|
119 |
+
## π’ Citation
|
120 |
+
|
121 |
+
If you use DeepQ, please cite the project or link back to:
|
122 |
+
|
123 |
+
```
|
124 |
+
@misc{deepq2025,
|
125 |
+
author = {Kulia Moon},
|
126 |
+
title = {DeepQ: A Deep Thinking Conversational Model},
|
127 |
+
year = {2025},
|
128 |
+
howpublished = {\url{https://huggingface.co/kulia-moon/DeepRethink}},
|
129 |
+
}
|
130 |
+
```
|
131 |
+
|
132 |
+
---
|
133 |
+
|
134 |
+
## π More
|
135 |
+
|
136 |
+
* π€ Model: [https://huggingface.co/kulia-moon/DeepQ](https://huggingface.co/kulia-moon/DeepQ)
|
137 |
+
* π Dataset: [https://huggingface.co/datasets/kulia-moon/DeepRethink](https://huggingface.co/datasets/kulia-moon/DeepRethink)
|
138 |
+
* π Website: Coming soon
|
139 |
+
* π¬ Chat demo: Coming soon
|
140 |
+
|
141 |
+
---
|
142 |
+
|
143 |
+
π§ *Built by QFamily Labs β Reimagine how LLMs think.*
|
144 |
+
|