qreflex 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- qreflex-0.0.1/LICENSE +191 -0
- qreflex-0.0.1/PKG-INFO +261 -0
- qreflex-0.0.1/README.md +225 -0
- qreflex-0.0.1/pyproject.toml +70 -0
- qreflex-0.0.1/setup.cfg +4 -0
- qreflex-0.0.1/src/qreflex/__init__.py +38 -0
- qreflex-0.0.1/src/qreflex/api.py +311 -0
- qreflex-0.0.1/src/qreflex/data.py +138 -0
- qreflex-0.0.1/src/qreflex/eval.py +149 -0
- qreflex-0.0.1/src/qreflex/generate.py +93 -0
- qreflex-0.0.1/src/qreflex/losses.py +38 -0
- qreflex-0.0.1/src/qreflex/model.py +632 -0
- qreflex-0.0.1/src/qreflex/serve.py +206 -0
- qreflex-0.0.1/src/qreflex/train.py +302 -0
- qreflex-0.0.1/src/qreflex.egg-info/PKG-INFO +261 -0
- qreflex-0.0.1/src/qreflex.egg-info/SOURCES.txt +18 -0
- qreflex-0.0.1/src/qreflex.egg-info/dependency_links.txt +1 -0
- qreflex-0.0.1/src/qreflex.egg-info/entry_points.txt +5 -0
- qreflex-0.0.1/src/qreflex.egg-info/requires.txt +11 -0
- qreflex-0.0.1/src/qreflex.egg-info/top_level.txt +1 -0
qreflex-0.0.1/LICENSE
ADDED
|
@@ -0,0 +1,191 @@
|
|
|
1
|
+
|
|
2
|
+
Apache License
|
|
3
|
+
Version 2.0, January 2004
|
|
4
|
+
http://www.apache.org/licenses/
|
|
5
|
+
|
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7
|
+
|
|
8
|
+
1. Definitions.
|
|
9
|
+
|
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
12
|
+
|
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
14
|
+
the copyright owner that is granting the License.
|
|
15
|
+
|
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
17
|
+
other entities that control, are controlled by, or are under common
|
|
18
|
+
control with that entity. For the purposes of this definition,
|
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
20
|
+
direction or management of such entity, whether by contract or
|
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
23
|
+
|
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
25
|
+
exercising permissions granted by this License.
|
|
26
|
+
|
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
28
|
+
including but not limited to software source code, documentation
|
|
29
|
+
source, and configuration files.
|
|
30
|
+
|
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
|
32
|
+
transformation or translation of a Source form, including but
|
|
33
|
+
not limited to compiled object code, generated documentation,
|
|
34
|
+
and conversions to other media types.
|
|
35
|
+
|
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
37
|
+
Object form, made available under the License, as indicated by a
|
|
38
|
+
copyright notice that is included in or attached to the work
|
|
39
|
+
(an example is provided in the Appendix below).
|
|
40
|
+
|
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
47
|
+
the Work and Derivative Works thereof.
|
|
48
|
+
|
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
|
50
|
+
the original version of the Work and any modifications or additions
|
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
62
|
+
|
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
65
|
+
subsequently incorporated within the Work.
|
|
66
|
+
|
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
|
73
|
+
|
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
79
|
+
where such license applies only to those patent claims licensable
|
|
80
|
+
by such Contributor that are necessarily infringed by their
|
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
83
|
+
institute patent litigation against any entity (including a
|
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
86
|
+
or contributory patent infringement, then any patent licenses
|
|
87
|
+
granted to You under this License for that Work shall terminate
|
|
88
|
+
as of the date such litigation is filed.
|
|
89
|
+
|
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
92
|
+
modifications, and in Source or Object form, provided that You
|
|
93
|
+
meet the following conditions:
|
|
94
|
+
|
|
95
|
+
(a) You must give any other recipients of the Work or
|
|
96
|
+
Derivative Works a copy of this License; and
|
|
97
|
+
|
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
|
99
|
+
stating that You changed the files; and
|
|
100
|
+
|
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
|
103
|
+
attribution notices from the Source form of the Work,
|
|
104
|
+
excluding those notices that do not pertain to any part of
|
|
105
|
+
the Derivative Works; and
|
|
106
|
+
|
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
|
109
|
+
include a readable copy of the attribution notices contained
|
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
|
112
|
+
of the following places: within a NOTICE text file distributed
|
|
113
|
+
as part of the Derivative Works; within the Source form or
|
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
|
115
|
+
within a display generated by the Derivative Works, if and
|
|
116
|
+
wherever such third-party notices normally appear. The contents
|
|
117
|
+
of the NOTICE file are for informational purposes only and
|
|
118
|
+
do not modify the License. You may add Your own attribution
|
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
121
|
+
that such additional attribution notices cannot be construed
|
|
122
|
+
as modifying the License.
|
|
123
|
+
|
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
|
125
|
+
may provide additional or different license terms and conditions
|
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
129
|
+
the conditions stated in this License.
|
|
130
|
+
|
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
134
|
+
this License, without any additional terms or conditions.
|
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
136
|
+
the terms of any separate license agreement you may have executed
|
|
137
|
+
with Licensor regarding such Contributions.
|
|
138
|
+
|
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
141
|
+
except as required for reasonable and customary use in describing the
|
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
143
|
+
|
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
|
153
|
+
|
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
|
159
|
+
incidental, or consequential damages of any character arising as a
|
|
160
|
+
result of this License or out of the use or inability to use the
|
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
163
|
+
other commercial damages or losses), even if such Contributor
|
|
164
|
+
has been advised of the possibility of such damages.
|
|
165
|
+
|
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
169
|
+
or other liability obligations and/or rights consistent with this
|
|
170
|
+
License. However, in accepting such obligations, You may act only
|
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
175
|
+
of your accepting any such warranty or additional liability.
|
|
176
|
+
|
|
177
|
+
END OF TERMS AND CONDITIONS
|
|
178
|
+
|
|
179
|
+
Copyright 2026 Qarvexium
|
|
180
|
+
|
|
181
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
182
|
+
you may not use this file except in compliance with the License.
|
|
183
|
+
You may obtain a copy of the License at
|
|
184
|
+
|
|
185
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
186
|
+
|
|
187
|
+
Unless required by applicable law or agreed to in writing, software
|
|
188
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
189
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
190
|
+
See the License for the specific language governing permissions and
|
|
191
|
+
limitations under the License.
|
qreflex-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,261 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: qreflex
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: QreFLEX (reFLEX) — a small transformer with a gated, trainable experience-retrieval side channel: reason first, consult learned experience when useful, reason again.
|
|
5
|
+
Author: Qarvexium
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://qarvexium-ops.github.io/Qs/index.html
|
|
8
|
+
Project-URL: Repository, https://huggingface.co/qvx-o
|
|
9
|
+
Keywords: transformer,language-model,retrieval-augmented-generation,experience-replay,reflex
|
|
10
|
+
Classifier: Development Status :: 3 - Alpha
|
|
11
|
+
Classifier: Intended Audience :: Science/Research
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
20
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
21
|
+
Classifier: Operating System :: OS Independent
|
|
22
|
+
Requires-Python: >=3.9
|
|
23
|
+
Description-Content-Type: text/markdown
|
|
24
|
+
License-File: LICENSE
|
|
25
|
+
Requires-Dist: torch>=2.1
|
|
26
|
+
Requires-Dist: tokenizers>=0.15
|
|
27
|
+
Requires-Dist: fastapi>=0.100
|
|
28
|
+
Requires-Dist: uvicorn>=0.23
|
|
29
|
+
Requires-Dist: pydantic>=2.0
|
|
30
|
+
Requires-Dist: huggingface_hub>=0.20
|
|
31
|
+
Provides-Extra: dev
|
|
32
|
+
Requires-Dist: pytest>=7.0; extra == "dev"
|
|
33
|
+
Requires-Dist: httpx>=0.24; extra == "dev"
|
|
34
|
+
Requires-Dist: build>=1.0; extra == "dev"
|
|
35
|
+
Dynamic: license-file
|
|
36
|
+
|
|
37
|
+
# reFLEX-v1-15M
|
|
38
|
+
|
|
39
|
+
**reFLEX** — *Responsive Flexible Learning and EXperience* — is a small experimental conversational language model designed around a different idea from a conventional "everything is attention" transformer.
|
|
40
|
+
|
|
41
|
+
Rather than relying entirely on the main language model to produce a response, reFLEX separates parts of the conversational process into three components:
|
|
42
|
+
|
|
43
|
+
* **Main** — the primary language-generation network.
|
|
44
|
+
* **Experience** — a lightweight retrieval/context component that can surface potentially useful information from previous experience.
|
|
45
|
+
* **Intent** — a small component intended to help interpret the nature of the input.
|
|
46
|
+
|
|
47
|
+
The result is a roughly **15M-parameter** model with an unusual parameter distribution:
|
|
48
|
+
|
|
49
|
+
| Component | Parameters |
|
|
50
|
+
| ---------- | ---------: |
|
|
51
|
+
| Main | ~14M |
|
|
52
|
+
| Experience | ~0.8M |
|
|
53
|
+
| Intent | ~0.2M |
|
|
54
|
+
| **Total** | **~15M** |
|
|
55
|
+
|
|
56
|
+
## What is reFLEX?
|
|
57
|
+
|
|
58
|
+
reFLEX is primarily an **experimental conversational model**, not a factual knowledge model.
|
|
59
|
+
|
|
60
|
+
It was trained on conversational-style data rather than a large factual corpus. Consequently, it should **not** be expected to reliably answer factual questions such as:
|
|
61
|
+
|
|
62
|
+
> What is the capital of France?
|
|
63
|
+
|
|
64
|
+
Its interesting behavior appears much more clearly in ordinary conversation.
|
|
65
|
+
|
|
66
|
+
For example:
|
|
67
|
+
|
|
68
|
+
```text
|
|
69
|
+
A: Hello
|
|
70
|
+
B: Hello
|
|
71
|
+
|
|
72
|
+
A: How are you?
|
|
73
|
+
B: Fine.
|
|
74
|
+
|
|
75
|
+
A: What's up?
|
|
76
|
+
B: Not much. Just hanging out.
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
The model can produce surprisingly conversational responses despite its very small parameter count.
|
|
80
|
+
|
|
81
|
+
## Architecture
|
|
82
|
+
|
|
83
|
+
reFLEX moves away from the idea that every part of the system needs to be represented by a large attention-based language model.
|
|
84
|
+
|
|
85
|
+
Its conceptual structure is:
|
|
86
|
+
|
|
87
|
+
```text
|
|
88
|
+
Input
|
|
89
|
+
│
|
|
90
|
+
▼
|
|
91
|
+
┌─────────┐
|
|
92
|
+
│ Intent │
|
|
93
|
+
└────┬────┘
|
|
94
|
+
│
|
|
95
|
+
▼
|
|
96
|
+
┌─────────┐
|
|
97
|
+
│Experience│
|
|
98
|
+
└────┬────┘
|
|
99
|
+
│
|
|
100
|
+
▼
|
|
101
|
+
┌─────────┐
|
|
102
|
+
│ Main │
|
|
103
|
+
│ Model │
|
|
104
|
+
└────┬────┘
|
|
105
|
+
│
|
|
106
|
+
▼
|
|
107
|
+
Response
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
The **Experience** component can be thought of as a lightweight helper that effectively says:
|
|
111
|
+
|
|
112
|
+
> "These topics or pieces of information might be useful here."
|
|
113
|
+
|
|
114
|
+
It is not intended to replace the main language model.
|
|
115
|
+
|
|
116
|
+
## Parameter Distribution
|
|
117
|
+
|
|
118
|
+
One of the notable properties of reFLEX-v1-15M is that the total parameter count is not divided evenly between its components.
|
|
119
|
+
|
|
120
|
+
Approximately:
|
|
121
|
+
|
|
122
|
+
* **Main:** 14M parameters
|
|
123
|
+
* **Experience:** 0.8M parameters
|
|
124
|
+
* **Intent:** 0.2M parameters
|
|
125
|
+
|
|
126
|
+
This means the majority of the model's capacity remains dedicated to language generation, while relatively small components provide additional processing.
|
|
127
|
+
|
|
128
|
+
## Intended Use
|
|
129
|
+
|
|
130
|
+
reFLEX-v1-15M is intended for:
|
|
131
|
+
|
|
132
|
+
* Experimental conversational AI
|
|
133
|
+
* Research into modular language-model architectures
|
|
134
|
+
* Studying small language models
|
|
135
|
+
* Exploring retrieval/experience-assisted generation
|
|
136
|
+
* Conversational behavior experiments
|
|
137
|
+
* Educational experimentation with transformer architectures
|
|
138
|
+
|
|
139
|
+
## Limitations
|
|
140
|
+
|
|
141
|
+
reFLEX-v1-15M is **not** a general-purpose assistant.
|
|
142
|
+
|
|
143
|
+
It has several important limitations:
|
|
144
|
+
|
|
145
|
+
* It has very limited factual knowledge.
|
|
146
|
+
* It can hallucinate heavily.
|
|
147
|
+
* Responses may be grammatically incorrect or semantically unrelated.
|
|
148
|
+
* It may produce abrupt or unusual responses.
|
|
149
|
+
* It may repeat itself.
|
|
150
|
+
* It may exhibit inconsistent conversational behavior.
|
|
151
|
+
* Its responses can vary substantially between generations.
|
|
152
|
+
* It was not trained to follow instructions reliably.
|
|
153
|
+
* It should not be used for factual, medical, legal, financial, or safety-critical applications.
|
|
154
|
+
|
|
155
|
+
The model's unusual conversational personality should be considered an **emergent property of the training and architecture**, not an indication of human-like understanding.
|
|
156
|
+
|
|
157
|
+
## Conversational Behavior
|
|
158
|
+
|
|
159
|
+
An interesting characteristic observed during testing is that reFLEX sometimes reacts differently depending on the **social tone** of an input.
|
|
160
|
+
|
|
161
|
+
Informal testing produced behavior roughly resembling:
|
|
162
|
+
|
|
163
|
+
| Input style | Observed behavior |
|
|
164
|
+
| ----------- | ---------------------------------- |
|
|
165
|
+
| Positive | Dramatic / enthusiastic |
|
|
166
|
+
| Neutral | Introverted / brief |
|
|
167
|
+
| Negative | Defensive / sarcastic |
|
|
168
|
+
| Confusing | Uncertain / existential |
|
|
169
|
+
| Commands | Occasionally resistant or confused |
|
|
170
|
+
|
|
171
|
+
These behaviors are **observations from experimentation, not guaranteed capabilities**.
|
|
172
|
+
|
|
173
|
+
For example:
|
|
174
|
+
|
|
175
|
+
```text
|
|
176
|
+
A: You're pretty cool.
|
|
177
|
+
B: No.
|
|
178
|
+
```
|
|
179
|
+
|
|
180
|
+
and:
|
|
181
|
+
|
|
182
|
+
```text
|
|
183
|
+
A: I appreciate the effort.
|
|
184
|
+
B: You're an idiot.
|
|
185
|
+
```
|
|
186
|
+
|
|
187
|
+
The model can also produce unexpectedly ordinary conversational responses:
|
|
188
|
+
|
|
189
|
+
```text
|
|
190
|
+
A: What's up?
|
|
191
|
+
B: Just got back from the park with my dog.
|
|
192
|
+
```
|
|
193
|
+
|
|
194
|
+
This makes reFLEX particularly interesting as a research experiment despite its extremely small size.
|
|
195
|
+
|
|
196
|
+
## Experience Ablation
|
|
197
|
+
|
|
198
|
+
Testing with and without the Experience component showed that Experience can substantially alter the generated response.
|
|
199
|
+
|
|
200
|
+
However, because the model was not trained specifically as a factual QA system, activating Experience does **not** guarantee factual correctness.
|
|
201
|
+
|
|
202
|
+
For this reason, Experience should be understood as a mechanism for influencing generation through contextual information rather than as a conventional knowledge database.
|
|
203
|
+
|
|
204
|
+
## Generation
|
|
205
|
+
|
|
206
|
+
A basic example using the `qreflex` package:
|
|
207
|
+
|
|
208
|
+
```python
|
|
209
|
+
from qreflex import reFLEX
|
|
210
|
+
|
|
211
|
+
model = reFLEX(
|
|
212
|
+
directory=r"D:\QED\REFLEX\flex", # Or repo: qvx-o/reFLEX-v1-15M
|
|
213
|
+
from_pretrained=True, # if repo dont use
|
|
214
|
+
checkpoint_file=r"D:\QED\REFLEX\flex\reFLEX-v1-15M.pt", # if rpeo dont use
|
|
215
|
+
)
|
|
216
|
+
|
|
217
|
+
question = "What's up?"
|
|
218
|
+
|
|
219
|
+
answer = model.generate(
|
|
220
|
+
f"A: {question}\nB:",
|
|
221
|
+
use_experience=True,
|
|
222
|
+
stop=["\nA: ", "\nB:"]
|
|
223
|
+
)
|
|
224
|
+
|
|
225
|
+
print(f"A: {question}\nB:", answer)
|
|
226
|
+
```
|
|
227
|
+
|
|
228
|
+
## Benchmarking
|
|
229
|
+
|
|
230
|
+
A conversational benchmark was created specifically for reFLEX-v1-15M.
|
|
231
|
+
|
|
232
|
+
The benchmark contains examples covering several conversational categories, including:
|
|
233
|
+
|
|
234
|
+
* Greetings
|
|
235
|
+
* Casual conversation
|
|
236
|
+
* Positive statements
|
|
237
|
+
* Affection
|
|
238
|
+
* Commands
|
|
239
|
+
* Negative statements
|
|
240
|
+
* Criticism
|
|
241
|
+
* Confusing inputs
|
|
242
|
+
|
|
243
|
+
The benchmark is intended primarily to demonstrate **behavioral characteristics**, rather than conventional language-model performance.
|
|
244
|
+
|
|
245
|
+
## Important Note
|
|
246
|
+
|
|
247
|
+
reFLEX-v1-15M is intentionally small.
|
|
248
|
+
|
|
249
|
+
Its purpose is not to demonstrate that a 15M model can compete with large language models on factual knowledge or general reasoning.
|
|
250
|
+
|
|
251
|
+
Instead, reFLEX explores a different question:
|
|
252
|
+
|
|
253
|
+
> **How much conversational behavior can emerge from a very small language model when some responsibilities are moved outside the main language generator?**
|
|
254
|
+
|
|
255
|
+
The model is experimental, imperfect, and occasionally bizarre — but that is part of what makes it interesting.
|
|
256
|
+
|
|
257
|
+
## Disclaimer
|
|
258
|
+
|
|
259
|
+
**reFLEX-v1-15M is an experimental conversational model.**
|
|
260
|
+
|
|
261
|
+
It may produce unexpected, sarcastic, dramatic, nonsensical, or otherwise strange responses. Do not interpret its outputs as authoritative information.
|
qreflex-0.0.1/README.md
ADDED
|
@@ -0,0 +1,225 @@
|
|
|
1
|
+
# reFLEX-v1-15M
|
|
2
|
+
|
|
3
|
+
**reFLEX** — *Responsive Flexible Learning and EXperience* — is a small experimental conversational language model designed around a different idea from a conventional "everything is attention" transformer.
|
|
4
|
+
|
|
5
|
+
Rather than relying entirely on the main language model to produce a response, reFLEX separates parts of the conversational process into three components:
|
|
6
|
+
|
|
7
|
+
* **Main** — the primary language-generation network.
|
|
8
|
+
* **Experience** — a lightweight retrieval/context component that can surface potentially useful information from previous experience.
|
|
9
|
+
* **Intent** — a small component intended to help interpret the nature of the input.
|
|
10
|
+
|
|
11
|
+
The result is a roughly **15M-parameter** model with an unusual parameter distribution:
|
|
12
|
+
|
|
13
|
+
| Component | Parameters |
|
|
14
|
+
| ---------- | ---------: |
|
|
15
|
+
| Main | ~14M |
|
|
16
|
+
| Experience | ~0.8M |
|
|
17
|
+
| Intent | ~0.2M |
|
|
18
|
+
| **Total** | **~15M** |
|
|
19
|
+
|
|
20
|
+
## What is reFLEX?
|
|
21
|
+
|
|
22
|
+
reFLEX is primarily an **experimental conversational model**, not a factual knowledge model.
|
|
23
|
+
|
|
24
|
+
It was trained on conversational-style data rather than a large factual corpus. Consequently, it should **not** be expected to reliably answer factual questions such as:
|
|
25
|
+
|
|
26
|
+
> What is the capital of France?
|
|
27
|
+
|
|
28
|
+
Its interesting behavior appears much more clearly in ordinary conversation.
|
|
29
|
+
|
|
30
|
+
For example:
|
|
31
|
+
|
|
32
|
+
```text
|
|
33
|
+
A: Hello
|
|
34
|
+
B: Hello
|
|
35
|
+
|
|
36
|
+
A: How are you?
|
|
37
|
+
B: Fine.
|
|
38
|
+
|
|
39
|
+
A: What's up?
|
|
40
|
+
B: Not much. Just hanging out.
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
The model can produce surprisingly conversational responses despite its very small parameter count.
|
|
44
|
+
|
|
45
|
+
## Architecture
|
|
46
|
+
|
|
47
|
+
reFLEX moves away from the idea that every part of the system needs to be represented by a large attention-based language model.
|
|
48
|
+
|
|
49
|
+
Its conceptual structure is:
|
|
50
|
+
|
|
51
|
+
```text
|
|
52
|
+
Input
|
|
53
|
+
│
|
|
54
|
+
▼
|
|
55
|
+
┌─────────┐
|
|
56
|
+
│ Intent │
|
|
57
|
+
└────┬────┘
|
|
58
|
+
│
|
|
59
|
+
▼
|
|
60
|
+
┌─────────┐
|
|
61
|
+
│Experience│
|
|
62
|
+
└────┬────┘
|
|
63
|
+
│
|
|
64
|
+
▼
|
|
65
|
+
┌─────────┐
|
|
66
|
+
│ Main │
|
|
67
|
+
│ Model │
|
|
68
|
+
└────┬────┘
|
|
69
|
+
│
|
|
70
|
+
▼
|
|
71
|
+
Response
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
The **Experience** component can be thought of as a lightweight helper that effectively says:
|
|
75
|
+
|
|
76
|
+
> "These topics or pieces of information might be useful here."
|
|
77
|
+
|
|
78
|
+
It is not intended to replace the main language model.
|
|
79
|
+
|
|
80
|
+
## Parameter Distribution
|
|
81
|
+
|
|
82
|
+
One of the notable properties of reFLEX-v1-15M is that the total parameter count is not divided evenly between its components.
|
|
83
|
+
|
|
84
|
+
Approximately:
|
|
85
|
+
|
|
86
|
+
* **Main:** 14M parameters
|
|
87
|
+
* **Experience:** 0.8M parameters
|
|
88
|
+
* **Intent:** 0.2M parameters
|
|
89
|
+
|
|
90
|
+
This means the majority of the model's capacity remains dedicated to language generation, while relatively small components provide additional processing.
|
|
91
|
+
|
|
92
|
+
## Intended Use
|
|
93
|
+
|
|
94
|
+
reFLEX-v1-15M is intended for:
|
|
95
|
+
|
|
96
|
+
* Experimental conversational AI
|
|
97
|
+
* Research into modular language-model architectures
|
|
98
|
+
* Studying small language models
|
|
99
|
+
* Exploring retrieval/experience-assisted generation
|
|
100
|
+
* Conversational behavior experiments
|
|
101
|
+
* Educational experimentation with transformer architectures
|
|
102
|
+
|
|
103
|
+
## Limitations
|
|
104
|
+
|
|
105
|
+
reFLEX-v1-15M is **not** a general-purpose assistant.
|
|
106
|
+
|
|
107
|
+
It has several important limitations:
|
|
108
|
+
|
|
109
|
+
* It has very limited factual knowledge.
|
|
110
|
+
* It can hallucinate heavily.
|
|
111
|
+
* Responses may be grammatically incorrect or semantically unrelated.
|
|
112
|
+
* It may produce abrupt or unusual responses.
|
|
113
|
+
* It may repeat itself.
|
|
114
|
+
* It may exhibit inconsistent conversational behavior.
|
|
115
|
+
* Its responses can vary substantially between generations.
|
|
116
|
+
* It was not trained to follow instructions reliably.
|
|
117
|
+
* It should not be used for factual, medical, legal, financial, or safety-critical applications.
|
|
118
|
+
|
|
119
|
+
The model's unusual conversational personality should be considered an **emergent property of the training and architecture**, not an indication of human-like understanding.
|
|
120
|
+
|
|
121
|
+
## Conversational Behavior
|
|
122
|
+
|
|
123
|
+
An interesting characteristic observed during testing is that reFLEX sometimes reacts differently depending on the **social tone** of an input.
|
|
124
|
+
|
|
125
|
+
Informal testing produced behavior roughly resembling:
|
|
126
|
+
|
|
127
|
+
| Input style | Observed behavior |
|
|
128
|
+
| ----------- | ---------------------------------- |
|
|
129
|
+
| Positive | Dramatic / enthusiastic |
|
|
130
|
+
| Neutral | Introverted / brief |
|
|
131
|
+
| Negative | Defensive / sarcastic |
|
|
132
|
+
| Confusing | Uncertain / existential |
|
|
133
|
+
| Commands | Occasionally resistant or confused |
|
|
134
|
+
|
|
135
|
+
These behaviors are **observations from experimentation, not guaranteed capabilities**.
|
|
136
|
+
|
|
137
|
+
For example:
|
|
138
|
+
|
|
139
|
+
```text
|
|
140
|
+
A: You're pretty cool.
|
|
141
|
+
B: No.
|
|
142
|
+
```
|
|
143
|
+
|
|
144
|
+
and:
|
|
145
|
+
|
|
146
|
+
```text
|
|
147
|
+
A: I appreciate the effort.
|
|
148
|
+
B: You're an idiot.
|
|
149
|
+
```
|
|
150
|
+
|
|
151
|
+
The model can also produce unexpectedly ordinary conversational responses:
|
|
152
|
+
|
|
153
|
+
```text
|
|
154
|
+
A: What's up?
|
|
155
|
+
B: Just got back from the park with my dog.
|
|
156
|
+
```
|
|
157
|
+
|
|
158
|
+
This makes reFLEX particularly interesting as a research experiment despite its extremely small size.
|
|
159
|
+
|
|
160
|
+
## Experience Ablation
|
|
161
|
+
|
|
162
|
+
Testing with and without the Experience component showed that Experience can substantially alter the generated response.
|
|
163
|
+
|
|
164
|
+
However, because the model was not trained specifically as a factual QA system, activating Experience does **not** guarantee factual correctness.
|
|
165
|
+
|
|
166
|
+
For this reason, Experience should be understood as a mechanism for influencing generation through contextual information rather than as a conventional knowledge database.
|
|
167
|
+
|
|
168
|
+
## Generation
|
|
169
|
+
|
|
170
|
+
A basic example using the `qreflex` package:
|
|
171
|
+
|
|
172
|
+
```python
|
|
173
|
+
from qreflex import reFLEX
|
|
174
|
+
|
|
175
|
+
model = reFLEX(
|
|
176
|
+
directory=r"D:\QED\REFLEX\flex", # Or repo: qvx-o/reFLEX-v1-15M
|
|
177
|
+
from_pretrained=True, # if repo dont use
|
|
178
|
+
checkpoint_file=r"D:\QED\REFLEX\flex\reFLEX-v1-15M.pt", # if rpeo dont use
|
|
179
|
+
)
|
|
180
|
+
|
|
181
|
+
question = "What's up?"
|
|
182
|
+
|
|
183
|
+
answer = model.generate(
|
|
184
|
+
f"A: {question}\nB:",
|
|
185
|
+
use_experience=True,
|
|
186
|
+
stop=["\nA: ", "\nB:"]
|
|
187
|
+
)
|
|
188
|
+
|
|
189
|
+
print(f"A: {question}\nB:", answer)
|
|
190
|
+
```
|
|
191
|
+
|
|
192
|
+
## Benchmarking
|
|
193
|
+
|
|
194
|
+
A conversational benchmark was created specifically for reFLEX-v1-15M.
|
|
195
|
+
|
|
196
|
+
The benchmark contains examples covering several conversational categories, including:
|
|
197
|
+
|
|
198
|
+
* Greetings
|
|
199
|
+
* Casual conversation
|
|
200
|
+
* Positive statements
|
|
201
|
+
* Affection
|
|
202
|
+
* Commands
|
|
203
|
+
* Negative statements
|
|
204
|
+
* Criticism
|
|
205
|
+
* Confusing inputs
|
|
206
|
+
|
|
207
|
+
The benchmark is intended primarily to demonstrate **behavioral characteristics**, rather than conventional language-model performance.
|
|
208
|
+
|
|
209
|
+
## Important Note
|
|
210
|
+
|
|
211
|
+
reFLEX-v1-15M is intentionally small.
|
|
212
|
+
|
|
213
|
+
Its purpose is not to demonstrate that a 15M model can compete with large language models on factual knowledge or general reasoning.
|
|
214
|
+
|
|
215
|
+
Instead, reFLEX explores a different question:
|
|
216
|
+
|
|
217
|
+
> **How much conversational behavior can emerge from a very small language model when some responsibilities are moved outside the main language generator?**
|
|
218
|
+
|
|
219
|
+
The model is experimental, imperfect, and occasionally bizarre — but that is part of what makes it interesting.
|
|
220
|
+
|
|
221
|
+
## Disclaimer
|
|
222
|
+
|
|
223
|
+
**reFLEX-v1-15M is an experimental conversational model.**
|
|
224
|
+
|
|
225
|
+
It may produce unexpected, sarcastic, dramatic, nonsensical, or otherwise strange responses. Do not interpret its outputs as authoritative information.
|