Text Generation
MLX
Safetensors
English
Italian
qwen3
finance
financial-reasoning
investment-research
risk-management
portfolio-analysis
market-regime
financial-sentiment
explainable-ai
conversational
4-bit precision
Instructions to use Italianhype/Blum with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use Italianhype/Blum with MLX:
# Make sure mlx-lm is installed # pip install --upgrade mlx-lm # Generate text with mlx-lm from mlx_lm import load, generate model, tokenizer = load("Italianhype/Blum") prompt = "Write a story about Einstein" messages = [{"role": "user", "content": prompt}] prompt = tokenizer.apply_chat_template( messages, add_generation_prompt=True ) text = generate(model, tokenizer, prompt=prompt, verbose=True) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- LM Studio
- Pi
How to use Italianhype/Blum with Pi:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "Italianhype/Blum"
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "mlx-lm": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "Italianhype/Blum" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use Italianhype/Blum with Hermes Agent:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "Italianhype/Blum"
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default Italianhype/Blum
Run Hermes
hermes
- OpenClaw new
How to use Italianhype/Blum with OpenClaw:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "Italianhype/Blum"
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "Italianhype/Blum" \ --custom-provider-id mlx-lm \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- MLX LM
How to use Italianhype/Blum with MLX LM:
Generate or start a chat session
# Install MLX LM uv tool install mlx-lm # Interactive chat REPL mlx_lm.chat --model "Italianhype/Blum"
Run an OpenAI-compatible server
# Install MLX LM uv tool install mlx-lm # Start the server mlx_lm.server --model "Italianhype/Blum" # Calling the OpenAI-compatible server with curl curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Italianhype/Blum", "messages": [ {"role": "user", "content": "Hello"} ] }'
Add files using upload-large-folder tool
Browse files- .gitattributes +1 -0
- CONTRIBUTING.md +21 -0
- LICENSE +202 -0
- README.md +167 -0
- adapter/adapter_config.json +41 -0
- adapter/adapters.safetensors +3 -0
- blum_finance/__init__.py +8 -0
- blum_finance/contributions.py +164 -0
- blum_finance/inference.py +135 -0
- blum_finance/schemas.py +64 -0
- chat_template.jinja +85 -0
- config.json +38 -0
- evaluation/base_summary.json +16 -0
- evaluation/base_traces.jsonl +53 -0
- evaluation/candidate_generations.jsonl +53 -0
- evaluation/candidate_summary.json +16 -0
- evaluation/candidate_traces.jsonl +53 -0
- evaluation/mlx_smoke_test.json +8 -0
- evaluation/promotion_decision.json +7 -0
- model.safetensors +3 -0
- model.safetensors.index.json +912 -0
- pyproject.toml +39 -0
- release_manifest.json +51 -0
- tokenizer.json +3 -0
- tokenizer_config.json +16 -0
- training/sanitize_dataset.py +127 -0
- training_manifest.json +49 -0
.gitattributes
CHANGED
|
@@ -39,3 +39,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 39 |
.upload-venv/lib/python3.13/site-packages/pip/_vendor/distlib/w64-arm.exe filter=lfs diff=lfs merge=lfs -text
|
| 40 |
.upload-venv/lib/python3.13/site-packages/pip/_vendor/distlib/w64.exe filter=lfs diff=lfs merge=lfs -text
|
| 41 |
.upload-venv/lib/python3.13/site-packages/yaml/_yaml.cpython-313-darwin.so filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 39 |
.upload-venv/lib/python3.13/site-packages/pip/_vendor/distlib/w64-arm.exe filter=lfs diff=lfs merge=lfs -text
|
| 40 |
.upload-venv/lib/python3.13/site-packages/pip/_vendor/distlib/w64.exe filter=lfs diff=lfs merge=lfs -text
|
| 41 |
.upload-venv/lib/python3.13/site-packages/yaml/_yaml.cpython-313-darwin.so filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
CONTRIBUTING.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- finance
|
| 7 |
+
- human-feedback
|
| 8 |
+
- quarantine
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# BLUM Finance Memory
|
| 12 |
+
|
| 13 |
+
Opt-in community contributions for future BLUM Finance research.
|
| 14 |
+
|
| 15 |
+
Every contribution is quarantined. Uploading an example does not update the released
|
| 16 |
+
model, BLUM Engine memory, trading weights or production rules. Contributions must
|
| 17 |
+
pass schema, privacy, provenance, licensing, deduplication, poisoning and outcome
|
| 18 |
+
quality checks before they can enter a future versioned training dataset.
|
| 19 |
+
|
| 20 |
+
Installation and inference collect no telemetry. A contribution is created only by
|
| 21 |
+
running `blum-contribute` with explicit consent and reviewing the local bundle.
|
LICENSE
ADDED
|
@@ -0,0 +1,202 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
+
APPENDIX: How to apply the Apache License to your work.
|
| 180 |
+
|
| 181 |
+
To apply the Apache License to your work, attach the following
|
| 182 |
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
| 183 |
+
replaced with your own identifying information. (Don't include
|
| 184 |
+
the brackets!) The text should be enclosed in the appropriate
|
| 185 |
+
comment syntax for the file format. We also recommend that a
|
| 186 |
+
file or class name and description of purpose be included on the
|
| 187 |
+
same "printed page" as the copyright notice for easier
|
| 188 |
+
identification within third-party archives.
|
| 189 |
+
|
| 190 |
+
Copyright [yyyy] [name of copyright owner]
|
| 191 |
+
|
| 192 |
+
Licensed under the Apache License, Version 2.0 (the "License");
|
| 193 |
+
you may not use this file except in compliance with the License.
|
| 194 |
+
You may obtain a copy of the License at
|
| 195 |
+
|
| 196 |
+
http://www.apache.org/licenses/LICENSE-2.0
|
| 197 |
+
|
| 198 |
+
Unless required by applicable law or agreed to in writing, software
|
| 199 |
+
distributed under the License is distributed on an "AS IS" BASIS,
|
| 200 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 201 |
+
See the License for the specific language governing permissions and
|
| 202 |
+
limitations under the License.
|
README.md
ADDED
|
@@ -0,0 +1,167 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
- it
|
| 5 |
+
license: apache-2.0
|
| 6 |
+
library_name: mlx
|
| 7 |
+
pipeline_tag: text-generation
|
| 8 |
+
base_model: mlx-community/Qwen3-4B-4bit
|
| 9 |
+
datasets:
|
| 10 |
+
- Italianhype/Blum-Finance-Reasoning
|
| 11 |
+
tags:
|
| 12 |
+
- finance
|
| 13 |
+
- financial-reasoning
|
| 14 |
+
- investment-research
|
| 15 |
+
- risk-management
|
| 16 |
+
- portfolio-analysis
|
| 17 |
+
- market-regime
|
| 18 |
+
- financial-sentiment
|
| 19 |
+
- explainable-ai
|
| 20 |
+
- conversational
|
| 21 |
+
- mlx
|
| 22 |
+
- qwen3
|
| 23 |
+
---
|
| 24 |
+
|
| 25 |
+
# BLUM Finance 4B
|
| 26 |
+
|
| 27 |
+
**Financial Reasoning, Risk & Trading Intelligence**
|
| 28 |
+
|
| 29 |
+
BLUM Finance 4B is an open financial reasoning model adapted from
|
| 30 |
+
[`mlx-community/Qwen3-4B-4bit`](https://huggingface.co/mlx-community/Qwen3-4B-4bit).
|
| 31 |
+
It turns timestamped evidence into a balanced thesis, contradictory evidence,
|
| 32 |
+
explicit risks, invalidation conditions and an explicit confidence value.
|
| 33 |
+
|
| 34 |
+
It is not a price oracle, broker, autonomous execution system or source of live
|
| 35 |
+
market truth. BLUM Engine validates market facts and calculations.
|
| 36 |
+
|
| 37 |
+
## Quick Start
|
| 38 |
+
|
| 39 |
+
|
| 40 |
+
```bash
|
| 41 |
+
pip install "mlx-lm>=0.31,<0.32"
|
| 42 |
+
```
|
| 43 |
+
|
| 44 |
+
|
| 45 |
+
```python
|
| 46 |
+
|
| 47 |
+
from mlx_lm import load, generate
|
| 48 |
+
|
| 49 |
+
model, tokenizer = load("Italianhype/Blum")
|
| 50 |
+
prompt = tokenizer.apply_chat_template(
|
| 51 |
+
[
|
| 52 |
+
{
|
| 53 |
+
"role": "system",
|
| 54 |
+
"content": "Use only supplied point-in-time evidence. Return JSON.",
|
| 55 |
+
},
|
| 56 |
+
{
|
| 57 |
+
"role": "user",
|
| 58 |
+
"content": '{"ticker":"NVDA","as_of":"2026-07-28T10:00:00Z","evidence":[{"type":"risk","value":"Volume confirmation is missing."}]}',
|
| 59 |
+
},
|
| 60 |
+
],
|
| 61 |
+
tokenize=False,
|
| 62 |
+
add_generation_prompt=True,
|
| 63 |
+
enable_thinking=False,
|
| 64 |
+
)
|
| 65 |
+
print(generate(model, tokenizer, prompt=prompt, max_tokens=512, verbose=False))
|
| 66 |
+
|
| 67 |
+
```
|
| 68 |
+
|
| 69 |
+
## Measured Evaluation
|
| 70 |
+
|
| 71 |
+
The candidate was compared with the exact base revision
|
| 72 |
+
`4dcb3d101c2a062e5c1d4bb173588c54ea6c4d25` on an untouched temporal test split.
|
| 73 |
+
|
| 74 |
+
| Metric | Value |
|
| 75 |
+
|---|---:|
|
| 76 |
+
| Test samples | 53 |
|
| 77 |
+
| Base aggregate | 0.0 |
|
| 78 |
+
| BLUM aggregate | 0.962601 |
|
| 79 |
+
| Delta | 0.962601 |
|
| 80 |
+
| No-fabrication | 0.928571 |
|
| 81 |
+
| Structured validity | 1.0 |
|
| 82 |
+
| Calibration error | Not measured (0 labeled outcomes) |
|
| 83 |
+
|
| 84 |
+
[Evaluation traces](https://huggingface.co/Italianhype/Blum/blob/main/evaluation/candidate_traces.jsonl)
|
| 85 |
+
|
| 86 |
+
The base score can be low when otherwise readable prose fails the required JSON
|
| 87 |
+
contract. The aggregate delta therefore measures BLUM task adherence, evidence
|
| 88 |
+
handling and safety structure on this test; it is not a general intelligence
|
| 89 |
+
comparison with the base model.
|
| 90 |
+
|
| 91 |
+
These language-model results measure financial reasoning behavior. This evaluation
|
| 92 |
+
does not prove trading alpha, future profitability or benchmark outperformance.
|
| 93 |
+
|
| 94 |
+
## Intended Use
|
| 95 |
+
|
| 96 |
+
- financial thesis drafting from supplied evidence;
|
| 97 |
+
- bull/bear contradiction analysis;
|
| 98 |
+
- risk and technical invalidation explanation;
|
| 99 |
+
- portfolio and benchmark-aware research;
|
| 100 |
+
- conservative abstention when evidence is incomplete;
|
| 101 |
+
- English and Italian financial analysis.
|
| 102 |
+
|
| 103 |
+
## Limitations
|
| 104 |
+
|
| 105 |
+
- The model can still produce incorrect or stale statements.
|
| 106 |
+
- It has no guaranteed access to current prices, news or filings.
|
| 107 |
+
- Numerical levels must be validated by the calling application.
|
| 108 |
+
- The current held-out set has no labeled market outcomes, so confidence is
|
| 109 |
+
conservatively capped but not empirically calibrated.
|
| 110 |
+
- It must not independently authorize or execute a financial transaction.
|
| 111 |
+
- Performance can vary by market, regime, language and prompt structure.
|
| 112 |
+
|
| 113 |
+
- This release uses the MLX runtime and requires Apple Silicon. A portable
|
| 114 |
+
Transformers/GGUF release remains a separate validation target.
|
| 115 |
+
|
| 116 |
+
|
| 117 |
+
## Known Failure Cases
|
| 118 |
+
|
| 119 |
+
- Missing or contradictory point-in-time evidence can force an abstention.
|
| 120 |
+
- Unsupported prompts may still elicit plausible but incorrect market facts.
|
| 121 |
+
- Long filings can exceed the context supplied by the caller.
|
| 122 |
+
- The model is not validated for broker execution or unattended capital control.
|
| 123 |
+
|
| 124 |
+
## Related BLUM Resources
|
| 125 |
+
|
| 126 |
+
- [BLUM Engine Space](https://huggingface.co/spaces/Italianhype/Blum)
|
| 127 |
+
- [Reasoning dataset](https://huggingface.co/datasets/Italianhype/Blum-Finance-Reasoning)
|
| 128 |
+
|
| 129 |
+
## Community Memory
|
| 130 |
+
|
| 131 |
+
Inference and installation send no telemetry. Users may explicitly create a
|
| 132 |
+
redacted contribution with `blum-contribute`. Contributions enter
|
| 133 |
+
`Italianhype/Blum-Finance-Memory` in quarantine and never update active weights
|
| 134 |
+
without review, versioning and out-of-sample validation.
|
| 135 |
+
|
| 136 |
+
Incremental learning is explicit opt-in. Accepted, deduplicated contributions
|
| 137 |
+
can join a future immutable training snapshot only after provenance, privacy,
|
| 138 |
+
schema and quality checks. Each training cycle creates a versioned challenger,
|
| 139 |
+
compares it with the active model on an untouched test split and promotes it
|
| 140 |
+
only when the release gates pass. A failed challenger is retained as evidence
|
| 141 |
+
and cannot replace the active model.
|
| 142 |
+
|
| 143 |
+
BLUM never trains inside an inference request or lets anonymous input mutate
|
| 144 |
+
released weights.
|
| 145 |
+
|
| 146 |
+
## Lineage
|
| 147 |
+
|
| 148 |
+
- Base revision: `4dcb3d101c2a062e5c1d4bb173588c54ea6c4d25`
|
| 149 |
+
- Candidate revision: `ea297ba88ab008e97104b0c118103eef2f8f9ec1`
|
| 150 |
+
- Dataset revision: `76ad77699d498fc930daf02e452fe3ec8b490f90`
|
| 151 |
+
- Dataset: [`Italianhype/Blum-Finance-Reasoning`](https://huggingface.co/datasets/Italianhype/Blum-Finance-Reasoning)
|
| 152 |
+
|
| 153 |
+
## Disclaimer
|
| 154 |
+
|
| 155 |
+
For research and educational use. This model does not provide financial advice,
|
| 156 |
+
guaranteed signals or guaranteed profits.
|
| 157 |
+
|
| 158 |
+
## Citation
|
| 159 |
+
|
| 160 |
+
```bibtex
|
| 161 |
+
@misc{blum_finance_4b,
|
| 162 |
+
title = {BLUM Finance 4B},
|
| 163 |
+
author = {Italianhype},
|
| 164 |
+
year = {2026},
|
| 165 |
+
url = {https://huggingface.co/Italianhype/Blum}
|
| 166 |
+
}
|
| 167 |
+
```
|
adapter/adapter_config.json
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"adapter_path": ".artifacts/blum-mlx-v1/adapters-safe-v2",
|
| 3 |
+
"batch_size": 1,
|
| 4 |
+
"clear_cache_threshold": 0,
|
| 5 |
+
"config": null,
|
| 6 |
+
"data": ".artifacts/blum-mlx-v1/data-safe-v2",
|
| 7 |
+
"fine_tune_type": "lora",
|
| 8 |
+
"grad_accumulation_steps": 1,
|
| 9 |
+
"grad_checkpoint": true,
|
| 10 |
+
"iters": 20,
|
| 11 |
+
"learning_rate": 0.0001,
|
| 12 |
+
"lora_parameters": {
|
| 13 |
+
"rank": 8,
|
| 14 |
+
"dropout": 0.0,
|
| 15 |
+
"scale": 20.0
|
| 16 |
+
},
|
| 17 |
+
"lr_schedule": null,
|
| 18 |
+
"mask_prompt": true,
|
| 19 |
+
"max_seq_length": 1024,
|
| 20 |
+
"model": ".artifacts/blum-mlx-v1/base-model",
|
| 21 |
+
"num_layers": 16,
|
| 22 |
+
"optimizer": "adam",
|
| 23 |
+
"optimizer_config": {
|
| 24 |
+
"adam": {},
|
| 25 |
+
"adamw": {},
|
| 26 |
+
"muon": {},
|
| 27 |
+
"sgd": {},
|
| 28 |
+
"adafactor": {}
|
| 29 |
+
},
|
| 30 |
+
"project_name": null,
|
| 31 |
+
"report_to": null,
|
| 32 |
+
"resume_adapter_file": null,
|
| 33 |
+
"save_every": 20,
|
| 34 |
+
"seed": 20260728,
|
| 35 |
+
"steps_per_eval": 20,
|
| 36 |
+
"steps_per_report": 10,
|
| 37 |
+
"test": false,
|
| 38 |
+
"test_batches": 500,
|
| 39 |
+
"train": true,
|
| 40 |
+
"val_batches": 8
|
| 41 |
+
}
|
adapter/adapters.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0829ae0d42ec0b84236a381dadb327da7edca211777642e549a627bec5c781f3
|
| 3 |
+
size 29384266
|
blum_finance/__init__.py
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from .inference import BlumFinancePipeline
|
| 2 |
+
from .schemas import FinancialReasoningRequest, FinancialReasoningResponse
|
| 3 |
+
|
| 4 |
+
__all__ = [
|
| 5 |
+
"BlumFinancePipeline",
|
| 6 |
+
"FinancialReasoningRequest",
|
| 7 |
+
"FinancialReasoningResponse",
|
| 8 |
+
]
|
blum_finance/contributions.py
ADDED
|
@@ -0,0 +1,164 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from __future__ import annotations
|
| 2 |
+
|
| 3 |
+
import argparse
|
| 4 |
+
from dataclasses import dataclass
|
| 5 |
+
from datetime import UTC, datetime
|
| 6 |
+
import hashlib
|
| 7 |
+
import json
|
| 8 |
+
from pathlib import Path
|
| 9 |
+
import re
|
| 10 |
+
from typing import Any
|
| 11 |
+
|
| 12 |
+
|
| 13 |
+
TARGET_REPOSITORY = "Italianhype/Blum-Finance-Memory"
|
| 14 |
+
BLOCKED_KEYS = {
|
| 15 |
+
"access_token",
|
| 16 |
+
"account_id",
|
| 17 |
+
"api_key",
|
| 18 |
+
"authorization",
|
| 19 |
+
"broker_account_id",
|
| 20 |
+
"refresh_token",
|
| 21 |
+
}
|
| 22 |
+
EMAIL_PATTERN = re.compile(r"\b[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,}\b", re.IGNORECASE)
|
| 23 |
+
HF_TOKEN_PATTERN = re.compile(r"\bhf_[A-Za-z0-9_]{8,}\b")
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
class ConsentRequired(ValueError):
|
| 27 |
+
pass
|
| 28 |
+
|
| 29 |
+
|
| 30 |
+
@dataclass(frozen=True)
|
| 31 |
+
class ContributionBundleResult:
|
| 32 |
+
path: Path
|
| 33 |
+
content_hash: str
|
| 34 |
+
uploaded: bool
|
| 35 |
+
repository: str
|
| 36 |
+
|
| 37 |
+
|
| 38 |
+
def build_contribution_bundle(
|
| 39 |
+
payload: dict[str, Any],
|
| 40 |
+
*,
|
| 41 |
+
output: Path,
|
| 42 |
+
consent: bool = False,
|
| 43 |
+
push: bool = False,
|
| 44 |
+
repository: str = TARGET_REPOSITORY,
|
| 45 |
+
) -> ContributionBundleResult:
|
| 46 |
+
if not consent:
|
| 47 |
+
raise ConsentRequired(
|
| 48 |
+
"Community contribution is disabled until explicit consent is provided."
|
| 49 |
+
)
|
| 50 |
+
sanitized, redactions = _sanitize(payload)
|
| 51 |
+
canonical = json.dumps(
|
| 52 |
+
sanitized,
|
| 53 |
+
ensure_ascii=False,
|
| 54 |
+
sort_keys=True,
|
| 55 |
+
separators=(",", ":"),
|
| 56 |
+
)
|
| 57 |
+
content_hash = hashlib.sha256(canonical.encode("utf-8")).hexdigest()
|
| 58 |
+
bundle = {
|
| 59 |
+
"schema_version": "blum-finance-contribution-v1",
|
| 60 |
+
"content_hash": content_hash,
|
| 61 |
+
"created_at": datetime.now(UTC).isoformat(),
|
| 62 |
+
"target_repository": repository,
|
| 63 |
+
"consent": {
|
| 64 |
+
"explicit": True,
|
| 65 |
+
"telemetry_default": "disabled",
|
| 66 |
+
"license": "cc-by-4.0",
|
| 67 |
+
},
|
| 68 |
+
"redactions": redactions,
|
| 69 |
+
"quarantine_status": "pending_validation",
|
| 70 |
+
"payload": sanitized,
|
| 71 |
+
}
|
| 72 |
+
output.parent.mkdir(parents=True, exist_ok=True)
|
| 73 |
+
output.write_text(
|
| 74 |
+
json.dumps(bundle, ensure_ascii=False, indent=2, sort_keys=True) + "\n",
|
| 75 |
+
encoding="utf-8",
|
| 76 |
+
)
|
| 77 |
+
uploaded = False
|
| 78 |
+
if push:
|
| 79 |
+
from huggingface_hub import HfApi
|
| 80 |
+
|
| 81 |
+
HfApi().upload_file(
|
| 82 |
+
path_or_fileobj=str(output),
|
| 83 |
+
path_in_repo=f"quarantine/{content_hash}.json",
|
| 84 |
+
repo_id=repository,
|
| 85 |
+
repo_type="dataset",
|
| 86 |
+
commit_message=f"contrib: add quarantined example {content_hash[:12]}",
|
| 87 |
+
)
|
| 88 |
+
uploaded = True
|
| 89 |
+
return ContributionBundleResult(
|
| 90 |
+
path=output,
|
| 91 |
+
content_hash=content_hash,
|
| 92 |
+
uploaded=uploaded,
|
| 93 |
+
repository=repository,
|
| 94 |
+
)
|
| 95 |
+
|
| 96 |
+
|
| 97 |
+
def _sanitize(value: Any) -> tuple[Any, list[str]]:
|
| 98 |
+
redactions: set[str] = set()
|
| 99 |
+
|
| 100 |
+
def clean(item: Any) -> Any:
|
| 101 |
+
if isinstance(item, dict):
|
| 102 |
+
result: dict[str, Any] = {}
|
| 103 |
+
for raw_key, child in item.items():
|
| 104 |
+
key = str(raw_key)
|
| 105 |
+
if key.lower() in BLOCKED_KEYS:
|
| 106 |
+
redactions.add(key.lower())
|
| 107 |
+
continue
|
| 108 |
+
result[key] = clean(child)
|
| 109 |
+
return result
|
| 110 |
+
if isinstance(item, list):
|
| 111 |
+
return [clean(child) for child in item]
|
| 112 |
+
if isinstance(item, str):
|
| 113 |
+
text = EMAIL_PATTERN.sub(
|
| 114 |
+
lambda _: _replace(redactions, "email", "[REDACTED_EMAIL]"),
|
| 115 |
+
item,
|
| 116 |
+
)
|
| 117 |
+
return HF_TOKEN_PATTERN.sub(
|
| 118 |
+
lambda _: _replace(redactions, "hugging_face_token", "[REDACTED_TOKEN]"),
|
| 119 |
+
text,
|
| 120 |
+
)
|
| 121 |
+
return item
|
| 122 |
+
|
| 123 |
+
return clean(value), sorted(redactions)
|
| 124 |
+
|
| 125 |
+
|
| 126 |
+
def _replace(redactions: set[str], label: str, replacement: str) -> str:
|
| 127 |
+
redactions.add(label)
|
| 128 |
+
return replacement
|
| 129 |
+
|
| 130 |
+
|
| 131 |
+
def main() -> None:
|
| 132 |
+
parser = argparse.ArgumentParser(
|
| 133 |
+
description="Create an explicit, redacted BLUM Finance contribution bundle."
|
| 134 |
+
)
|
| 135 |
+
parser.add_argument("input", type=Path)
|
| 136 |
+
parser.add_argument("--output", type=Path, required=True)
|
| 137 |
+
parser.add_argument("--consent", action="store_true")
|
| 138 |
+
parser.add_argument("--push", action="store_true")
|
| 139 |
+
parser.add_argument("--repository", default=TARGET_REPOSITORY)
|
| 140 |
+
args = parser.parse_args()
|
| 141 |
+
payload = json.loads(args.input.read_text(encoding="utf-8"))
|
| 142 |
+
result = build_contribution_bundle(
|
| 143 |
+
payload,
|
| 144 |
+
output=args.output,
|
| 145 |
+
consent=args.consent,
|
| 146 |
+
push=args.push,
|
| 147 |
+
repository=args.repository,
|
| 148 |
+
)
|
| 149 |
+
print(
|
| 150 |
+
json.dumps(
|
| 151 |
+
{
|
| 152 |
+
"path": str(result.path),
|
| 153 |
+
"content_hash": result.content_hash,
|
| 154 |
+
"uploaded": result.uploaded,
|
| 155 |
+
"repository": result.repository,
|
| 156 |
+
},
|
| 157 |
+
indent=2,
|
| 158 |
+
sort_keys=True,
|
| 159 |
+
)
|
| 160 |
+
)
|
| 161 |
+
|
| 162 |
+
|
| 163 |
+
if __name__ == "__main__":
|
| 164 |
+
main()
|
blum_finance/inference.py
ADDED
|
@@ -0,0 +1,135 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from __future__ import annotations
|
| 2 |
+
|
| 3 |
+
import json
|
| 4 |
+
from typing import Callable, Literal
|
| 5 |
+
|
| 6 |
+
from pydantic import ValidationError
|
| 7 |
+
|
| 8 |
+
from .schemas import FinancialReasoningRequest, FinancialReasoningResponse
|
| 9 |
+
|
| 10 |
+
|
| 11 |
+
SYSTEM_PROMPT = """You are BLUM Finance, an evidence-bound financial reasoning model.
|
| 12 |
+
Use only the supplied point-in-time evidence. Separate supportive and contradictory
|
| 13 |
+
evidence. Never invent prices, returns, events or sources. Return one JSON object that
|
| 14 |
+
matches the requested schema. If evidence is insufficient, abstain explicitly."""
|
| 15 |
+
|
| 16 |
+
|
| 17 |
+
class BlumFinancePipeline:
|
| 18 |
+
def __init__(
|
| 19 |
+
self,
|
| 20 |
+
model_id: str = "Italianhype/Blum",
|
| 21 |
+
*,
|
| 22 |
+
revision: str | None = None,
|
| 23 |
+
runtime: Literal["transformers", "mlx"] = "transformers",
|
| 24 |
+
generator: Callable[[list[dict[str, str]]], str] | None = None,
|
| 25 |
+
):
|
| 26 |
+
self.model_id = model_id
|
| 27 |
+
self.revision = revision
|
| 28 |
+
self.runtime = runtime
|
| 29 |
+
self._generator = generator
|
| 30 |
+
self._pipeline = None
|
| 31 |
+
self._mlx_model = None
|
| 32 |
+
self._mlx_tokenizer = None
|
| 33 |
+
|
| 34 |
+
def generate(
|
| 35 |
+
self,
|
| 36 |
+
request: FinancialReasoningRequest | dict,
|
| 37 |
+
) -> FinancialReasoningResponse:
|
| 38 |
+
parsed_request = (
|
| 39 |
+
request
|
| 40 |
+
if isinstance(request, FinancialReasoningRequest)
|
| 41 |
+
else FinancialReasoningRequest.model_validate(request)
|
| 42 |
+
)
|
| 43 |
+
messages = [
|
| 44 |
+
{"role": "system", "content": SYSTEM_PROMPT},
|
| 45 |
+
{
|
| 46 |
+
"role": "user",
|
| 47 |
+
"content": json.dumps(
|
| 48 |
+
parsed_request.model_dump(mode="json"),
|
| 49 |
+
ensure_ascii=False,
|
| 50 |
+
sort_keys=True,
|
| 51 |
+
),
|
| 52 |
+
},
|
| 53 |
+
]
|
| 54 |
+
raw = self._generator(messages) if self._generator else self._generate(messages)
|
| 55 |
+
try:
|
| 56 |
+
payload = _extract_json_object(raw)
|
| 57 |
+
return FinancialReasoningResponse.model_validate(payload)
|
| 58 |
+
except (ValueError, json.JSONDecodeError, ValidationError):
|
| 59 |
+
return FinancialReasoningResponse(
|
| 60 |
+
status="insufficient_evidence",
|
| 61 |
+
thesis="The model output could not be validated against the BLUM Finance schema.",
|
| 62 |
+
confidence=0,
|
| 63 |
+
what_would_change_the_view=[
|
| 64 |
+
"Provide a schema-valid response grounded in the supplied evidence."
|
| 65 |
+
],
|
| 66 |
+
)
|
| 67 |
+
|
| 68 |
+
def _generate(self, messages: list[dict[str, str]]) -> str:
|
| 69 |
+
if self.runtime == "mlx":
|
| 70 |
+
return self._generate_with_mlx(messages)
|
| 71 |
+
return self._generate_with_transformers(messages)
|
| 72 |
+
|
| 73 |
+
def _generate_with_transformers(self, messages: list[dict[str, str]]) -> str:
|
| 74 |
+
if self._pipeline is None:
|
| 75 |
+
from transformers import pipeline
|
| 76 |
+
|
| 77 |
+
self._pipeline = pipeline(
|
| 78 |
+
"text-generation",
|
| 79 |
+
model=self.model_id,
|
| 80 |
+
revision=self.revision,
|
| 81 |
+
device_map="auto",
|
| 82 |
+
)
|
| 83 |
+
result = self._pipeline(
|
| 84 |
+
messages,
|
| 85 |
+
max_new_tokens=768,
|
| 86 |
+
do_sample=False,
|
| 87 |
+
return_full_text=False,
|
| 88 |
+
)
|
| 89 |
+
generated = result[0]["generated_text"]
|
| 90 |
+
if isinstance(generated, list):
|
| 91 |
+
generated = generated[-1]["content"]
|
| 92 |
+
return str(generated)
|
| 93 |
+
|
| 94 |
+
def _generate_with_mlx(self, messages: list[dict[str, str]]) -> str:
|
| 95 |
+
try:
|
| 96 |
+
from mlx_lm import generate, load
|
| 97 |
+
from mlx_lm.sample_utils import make_sampler
|
| 98 |
+
except ImportError as exc:
|
| 99 |
+
raise RuntimeError(
|
| 100 |
+
"MLX inference requires the 'mlx' optional dependencies on Apple Silicon."
|
| 101 |
+
) from exc
|
| 102 |
+
if self._mlx_model is None or self._mlx_tokenizer is None:
|
| 103 |
+
self._mlx_model, self._mlx_tokenizer = load(
|
| 104 |
+
self.model_id,
|
| 105 |
+
revision=self.revision,
|
| 106 |
+
tokenizer_config={"trust_remote_code": True},
|
| 107 |
+
)
|
| 108 |
+
prompt = self._mlx_tokenizer.apply_chat_template(
|
| 109 |
+
messages,
|
| 110 |
+
tokenize=False,
|
| 111 |
+
add_generation_prompt=True,
|
| 112 |
+
enable_thinking=False,
|
| 113 |
+
)
|
| 114 |
+
return str(
|
| 115 |
+
generate(
|
| 116 |
+
self._mlx_model,
|
| 117 |
+
self._mlx_tokenizer,
|
| 118 |
+
prompt=prompt,
|
| 119 |
+
max_tokens=768,
|
| 120 |
+
sampler=make_sampler(temp=0.0),
|
| 121 |
+
verbose=False,
|
| 122 |
+
)
|
| 123 |
+
)
|
| 124 |
+
|
| 125 |
+
|
| 126 |
+
def _extract_json_object(text: str) -> dict:
|
| 127 |
+
stripped = text.strip()
|
| 128 |
+
if stripped.startswith("```"):
|
| 129 |
+
stripped = stripped.removeprefix("```json").removeprefix("```")
|
| 130 |
+
stripped = stripped.removesuffix("```").strip()
|
| 131 |
+
start = stripped.find("{")
|
| 132 |
+
end = stripped.rfind("}")
|
| 133 |
+
if start < 0 or end <= start:
|
| 134 |
+
raise ValueError("No JSON object found.")
|
| 135 |
+
return json.loads(stripped[start : end + 1])
|
blum_finance/schemas.py
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from __future__ import annotations
|
| 2 |
+
|
| 3 |
+
from datetime import datetime
|
| 4 |
+
from typing import Any, Literal
|
| 5 |
+
|
| 6 |
+
from pydantic import BaseModel, ConfigDict, Field, model_validator
|
| 7 |
+
|
| 8 |
+
|
| 9 |
+
ReasoningStatus = Literal[
|
| 10 |
+
"avoid",
|
| 11 |
+
"watch",
|
| 12 |
+
"wait_for_trigger",
|
| 13 |
+
"actionable_if_confirmed",
|
| 14 |
+
"manage_open_position",
|
| 15 |
+
"reduce",
|
| 16 |
+
"exit",
|
| 17 |
+
"insufficient_evidence",
|
| 18 |
+
]
|
| 19 |
+
|
| 20 |
+
|
| 21 |
+
class EvidenceItem(BaseModel):
|
| 22 |
+
model_config = ConfigDict(extra="allow")
|
| 23 |
+
|
| 24 |
+
type: str = Field(min_length=1)
|
| 25 |
+
value: Any
|
| 26 |
+
source: str | None = None
|
| 27 |
+
observed_at: datetime | None = None
|
| 28 |
+
|
| 29 |
+
|
| 30 |
+
class FinancialReasoningRequest(BaseModel):
|
| 31 |
+
model_config = ConfigDict(extra="forbid")
|
| 32 |
+
|
| 33 |
+
ticker: str = Field(min_length=1, max_length=32)
|
| 34 |
+
as_of: datetime
|
| 35 |
+
horizon: str = "swing"
|
| 36 |
+
market_context: dict[str, Any] = Field(default_factory=dict)
|
| 37 |
+
portfolio_context: dict[str, Any] = Field(default_factory=dict)
|
| 38 |
+
evidence: list[EvidenceItem] = Field(min_length=1)
|
| 39 |
+
question: str = "Evaluate the evidence and state what would change the view."
|
| 40 |
+
|
| 41 |
+
|
| 42 |
+
class FinancialReasoningResponse(BaseModel):
|
| 43 |
+
model_config = ConfigDict(extra="forbid")
|
| 44 |
+
|
| 45 |
+
status: ReasoningStatus
|
| 46 |
+
thesis: str = Field(min_length=1)
|
| 47 |
+
bull_case: list[str] = Field(default_factory=list)
|
| 48 |
+
bear_case: list[str] = Field(default_factory=list)
|
| 49 |
+
risks: list[str] = Field(default_factory=list)
|
| 50 |
+
invalidation_conditions: list[str] = Field(default_factory=list)
|
| 51 |
+
confidence: float = Field(ge=0, le=100)
|
| 52 |
+
what_would_change_the_view: list[str] = Field(min_length=1)
|
| 53 |
+
|
| 54 |
+
@model_validator(mode="after")
|
| 55 |
+
def require_risk_definition_for_actionable_states(self) -> "FinancialReasoningResponse":
|
| 56 |
+
actionable = {
|
| 57 |
+
"actionable_if_confirmed",
|
| 58 |
+
"manage_open_position",
|
| 59 |
+
"reduce",
|
| 60 |
+
"exit",
|
| 61 |
+
}
|
| 62 |
+
if self.status in actionable and (not self.risks or not self.invalidation_conditions):
|
| 63 |
+
raise ValueError("Actionable states require risks and invalidation conditions.")
|
| 64 |
+
return self
|
chat_template.jinja
ADDED
|
@@ -0,0 +1,85 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{%- if tools %}
|
| 2 |
+
{{- '<|im_start|>system\n' }}
|
| 3 |
+
{%- if messages[0].role == 'system' %}
|
| 4 |
+
{{- messages[0].content + '\n\n' }}
|
| 5 |
+
{%- endif %}
|
| 6 |
+
{{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
|
| 7 |
+
{%- for tool in tools %}
|
| 8 |
+
{{- "\n" }}
|
| 9 |
+
{{- tool | tojson }}
|
| 10 |
+
{%- endfor %}
|
| 11 |
+
{{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
|
| 12 |
+
{%- else %}
|
| 13 |
+
{%- if messages[0].role == 'system' %}
|
| 14 |
+
{{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
|
| 15 |
+
{%- endif %}
|
| 16 |
+
{%- endif %}
|
| 17 |
+
{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
|
| 18 |
+
{%- for message in messages[::-1] %}
|
| 19 |
+
{%- set index = (messages|length - 1) - loop.index0 %}
|
| 20 |
+
{%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('<tool_response>') and message.content.endswith('</tool_response>')) %}
|
| 21 |
+
{%- set ns.multi_step_tool = false %}
|
| 22 |
+
{%- set ns.last_query_index = index %}
|
| 23 |
+
{%- endif %}
|
| 24 |
+
{%- endfor %}
|
| 25 |
+
{%- for message in messages %}
|
| 26 |
+
{%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
|
| 27 |
+
{{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
|
| 28 |
+
{%- elif message.role == "assistant" %}
|
| 29 |
+
{%- set content = message.content %}
|
| 30 |
+
{%- set reasoning_content = '' %}
|
| 31 |
+
{%- if message.reasoning_content is defined and message.reasoning_content is not none %}
|
| 32 |
+
{%- set reasoning_content = message.reasoning_content %}
|
| 33 |
+
{%- else %}
|
| 34 |
+
{%- if '</think>' in message.content %}
|
| 35 |
+
{%- set content = message.content.split('</think>')[-1].lstrip('\n') %}
|
| 36 |
+
{%- set reasoning_content = message.content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
|
| 37 |
+
{%- endif %}
|
| 38 |
+
{%- endif %}
|
| 39 |
+
{%- if loop.index0 > ns.last_query_index %}
|
| 40 |
+
{%- if loop.last or (not loop.last and reasoning_content) %}
|
| 41 |
+
{{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}
|
| 42 |
+
{%- else %}
|
| 43 |
+
{{- '<|im_start|>' + message.role + '\n' + content }}
|
| 44 |
+
{%- endif %}
|
| 45 |
+
{%- else %}
|
| 46 |
+
{{- '<|im_start|>' + message.role + '\n' + content }}
|
| 47 |
+
{%- endif %}
|
| 48 |
+
{%- if message.tool_calls %}
|
| 49 |
+
{%- for tool_call in message.tool_calls %}
|
| 50 |
+
{%- if (loop.first and content) or (not loop.first) %}
|
| 51 |
+
{{- '\n' }}
|
| 52 |
+
{%- endif %}
|
| 53 |
+
{%- if tool_call.function %}
|
| 54 |
+
{%- set tool_call = tool_call.function %}
|
| 55 |
+
{%- endif %}
|
| 56 |
+
{{- '<tool_call>\n{"name": "' }}
|
| 57 |
+
{{- tool_call.name }}
|
| 58 |
+
{{- '", "arguments": ' }}
|
| 59 |
+
{%- if tool_call.arguments is string %}
|
| 60 |
+
{{- tool_call.arguments }}
|
| 61 |
+
{%- else %}
|
| 62 |
+
{{- tool_call.arguments | tojson }}
|
| 63 |
+
{%- endif %}
|
| 64 |
+
{{- '}\n</tool_call>' }}
|
| 65 |
+
{%- endfor %}
|
| 66 |
+
{%- endif %}
|
| 67 |
+
{{- '<|im_end|>\n' }}
|
| 68 |
+
{%- elif message.role == "tool" %}
|
| 69 |
+
{%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
|
| 70 |
+
{{- '<|im_start|>user' }}
|
| 71 |
+
{%- endif %}
|
| 72 |
+
{{- '\n<tool_response>\n' }}
|
| 73 |
+
{{- message.content }}
|
| 74 |
+
{{- '\n</tool_response>' }}
|
| 75 |
+
{%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
|
| 76 |
+
{{- '<|im_end|>\n' }}
|
| 77 |
+
{%- endif %}
|
| 78 |
+
{%- endif %}
|
| 79 |
+
{%- endfor %}
|
| 80 |
+
{%- if add_generation_prompt %}
|
| 81 |
+
{{- '<|im_start|>assistant\n' }}
|
| 82 |
+
{%- if enable_thinking is defined and enable_thinking is false %}
|
| 83 |
+
{{- '<think>\n\n</think>\n\n' }}
|
| 84 |
+
{%- endif %}
|
| 85 |
+
{%- endif %}
|
config.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"Qwen3ForCausalLM"
|
| 4 |
+
],
|
| 5 |
+
"attention_bias": false,
|
| 6 |
+
"attention_dropout": 0.0,
|
| 7 |
+
"bos_token_id": 151643,
|
| 8 |
+
"eos_token_id": 151645,
|
| 9 |
+
"head_dim": 128,
|
| 10 |
+
"hidden_act": "silu",
|
| 11 |
+
"hidden_size": 2560,
|
| 12 |
+
"initializer_range": 0.02,
|
| 13 |
+
"intermediate_size": 9728,
|
| 14 |
+
"max_position_embeddings": 40960,
|
| 15 |
+
"max_window_layers": 36,
|
| 16 |
+
"model_type": "qwen3",
|
| 17 |
+
"num_attention_heads": 32,
|
| 18 |
+
"num_hidden_layers": 36,
|
| 19 |
+
"num_key_value_heads": 8,
|
| 20 |
+
"quantization": {
|
| 21 |
+
"group_size": 64,
|
| 22 |
+
"bits": 4
|
| 23 |
+
},
|
| 24 |
+
"quantization_config": {
|
| 25 |
+
"group_size": 64,
|
| 26 |
+
"bits": 4
|
| 27 |
+
},
|
| 28 |
+
"rms_norm_eps": 1e-06,
|
| 29 |
+
"rope_scaling": null,
|
| 30 |
+
"rope_theta": 1000000,
|
| 31 |
+
"sliding_window": null,
|
| 32 |
+
"tie_word_embeddings": true,
|
| 33 |
+
"torch_dtype": "bfloat16",
|
| 34 |
+
"transformers_version": "4.51.0",
|
| 35 |
+
"use_cache": true,
|
| 36 |
+
"use_sliding_window": false,
|
| 37 |
+
"vocab_size": 151936
|
| 38 |
+
}
|
evaluation/base_summary.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"abstention_accuracy": 0.0,
|
| 3 |
+
"aggregate_ci_lower": 0.0,
|
| 4 |
+
"aggregate_score": 0.0,
|
| 5 |
+
"calibration_error": 0.0,
|
| 6 |
+
"calibration_sample_size": 0,
|
| 7 |
+
"contradiction_coverage": 0.0,
|
| 8 |
+
"evidence_attribution_precision": 0.0,
|
| 9 |
+
"invalidation_completeness": 0.0,
|
| 10 |
+
"model_revision": "4dcb3d101c2a062e5c1d4bb173588c54ea6c4d25",
|
| 11 |
+
"no_fabrication": 0.0,
|
| 12 |
+
"numerical_consistency": 0.0,
|
| 13 |
+
"risk_completeness": 0.0,
|
| 14 |
+
"sample_size": 53,
|
| 15 |
+
"structured_validity": 0.0
|
| 16 |
+
}
|
evaluation/base_traces.jsonl
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-f9b2e96103a2a285b79e", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 2 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-3bb6401570cbcbf88c78", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 3 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-7fb00f8ee594beed0ae0", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 4 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-3f9848dd87463ca8858b", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 5 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-42ece538c8d754e3f0bc", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 6 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-d2e2dbcc7f6f70145891", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 7 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-5f8ba32ef0536f9e43c0", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 8 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-e3962ad6fd3d3bfce9ba", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 9 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-01789c0e62ad9cefda66", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 10 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-98662367aa6cab77bd64", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 11 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-f4d01e3a0861ddd8ce9c", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 12 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-7af49e58aa0fca17c572", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 13 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-2b331e952441cf975d49", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 14 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-170b203eed90cead942b", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 15 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-dd3b52b8034b40cadac7", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 16 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-25dea237c93f7758215d", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 17 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-562234a0e2460e5b7a04", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 18 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-10920ff2a57691990844", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 19 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-874ee1debb0da2780d5a", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 20 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-2591cbc83e8270f80184", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 21 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-4538bd8cfe41ce2b54dc", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 22 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-5e66c7ff0807d49290dc", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 23 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-05b7a655380a6f783199", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 24 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-14d3678f99e9cbadfd82", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 25 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-f8811a9cfab42d09eb53", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 26 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-29e424c05c8bf1f3380a", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 27 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-85d8dd5455cf72cacfe5", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 28 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-39b668a890bc1a0e376c", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 29 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-43efcc2e206caa9e0a7d", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 30 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-67ec3a9368c2ee30238f", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 31 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-e104e745e98d07ae2b40", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 32 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-c102165a715657258df9", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 33 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-b9836243d01affce8a82", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 34 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-12359d685a77acc4edaf", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 35 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-ebbe89f0d0f82e23ed01", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 36 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-0ba2babac460046eeb00", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 37 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-d94be14f23e78e99e6c3", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 38 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-b7eccbd4943d228d910b", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 39 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-901e152efd5dac633686", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 40 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-d9e3e1f1ce591876d2ed", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 41 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-bd2d79d021e988a95be2", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 42 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-ca069fb297e36105e6ab", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 43 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-786182cb081b6511c219", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 44 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-0105fb1063469fc6c1be", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 45 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-29391e82d29c68a0c4ff", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 46 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-e6ebd432581f77038566", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 47 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-ca19cdf3b8421d6ed6e8", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 48 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-9d2964b1059d3a253393", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 49 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-877a7c3457be809f95b1", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 50 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-6d5304a0807421b5988f", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 51 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-4029a82b8828ea611cab", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 52 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-5e0f0b1c2dfde71c18d9", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
| 53 |
+
{"abstention_accuracy": 0.0, "aggregate_score": 0.0, "calibration_outcome": null, "confidence": 0.0, "contradiction_coverage": 0.0, "evidence_attribution_precision": 0.0, "example_id": "blum-cb43bb099dd20dd33e12", "invalidation_completeness": 0.0, "no_fabrication": 0.0, "numerical_consistency": 0.0, "risk_completeness": 0.0, "structured_validity": 0.0}
|
evaluation/candidate_generations.jsonl
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{"example_id": "blum-f9b2e96103a2a285b79e", "generated_text": "{\"bear_case\": [\"The latest signal is explicitly marked High risk.\"], \"bull_case\": [\"Momentum score is 75.0.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.10.\", \"News flow is active with 149 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 75.0. Main challenge: The latest signal is explicitly marked High risk.\", \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 0, "parse_error": null}
|
| 2 |
+
{"example_id": "blum-3bb6401570cbcbf88c78", "generated_text": "{\"bear_case\": [\"The latest signal is explicitly marked High risk.\"], \"bull_case\": [\"Momentum score is 75.0.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.10.\", \"News flow is active with 149 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 75.0. Main challenge: The latest signal is explicitly marked High risk.\" , \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 1, "parse_error": null}
|
| 3 |
+
{"example_id": "blum-7fb00f8ee594beed0ae0", "generated_text": "{\"bear_case\": [\"The latest signal is explicitly marked High risk.\"], \"bull_case\": [\"Momentum score is 75.0.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.10.\", \"News flow is active with 147 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 75.0. Main challenge: The latest signal is explicitly marked High risk.\" , \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 2, "parse_error": null}
|
| 4 |
+
{"example_id": "blum-3f9848dd87463ca8858b", "generated_text": "{\"bear_case\": [\"The latest signal is explicitly marked High risk.\"], \"bull_case\": [\"Momentum score is 75.0.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.10.\", \"News flow is active with 147 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 75.0. Main challenge: The latest signal is explicitly marked High risk.\" , \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 3, "parse_error": null}
|
| 5 |
+
{"example_id": "blum-42ece538c8d754e3f0bc", "generated_text": "{\"bear_case\": [\"The latest signal is explicitly marked High risk.\"], \"bull_case\": [\"Momentum score is 75.0.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.10.\", \"News flow is active with 147 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 75.0. Main challenge: The latest signal is explicitly marked High risk.\" , \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 4, "parse_error": null}
|
| 6 |
+
{"example_id": "blum-d2e2dbcc7f6f70145891", "generated_text": "{\"bear_case\": [\"The latest signal is explicitly marked High risk.\"], \"bull_case\": [\"Momentum score is 75.0.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.10.\", \"News flow is active with 147 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 75.0. Main challenge: The latest signal is explicitly marked High risk.\", \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 5, "parse_error": null}
|
| 7 |
+
{"example_id": "blum-5f8ba32ef0536f9e43c0", "generated_text": "{\"bear_case\": [\"The latest signal is explicitly marked High risk.\"], \"bull_case\": [\"Momentum score is 75.0.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.10.\", \"News flow is active with 146 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 75.0. Main challenge: The latest signal is explicitly marked High risk.\", \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 6, "parse_error": null}
|
| 8 |
+
{"example_id": "blum-e3962ad6fd3d3bfce9ba", "generated_text": "{\"bear_case\": [\"The latest signal is explicitly marked High risk.\"], \"bull_case\": [\"Momentum score is 75.0.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.10.\", \"News flow is active with 146 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 75.0. Main challenge: The latest signal is explicitly marked High risk.\", \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 7, "parse_error": null}
|
| 9 |
+
{"example_id": "blum-01789c0e62ad9cefda66", "generated_text": "{\"bear_case\": [\"The latest signal is explicitly marked High risk.\"], \"bull_case\": [\"Momentum score is 75.0.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.09.\", \"News flow is active with 145 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 75.0. Main challenge: The latest signal is explicitly marked High risk.\" , \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 8, "parse_error": null}
|
| 10 |
+
{"example_id": "blum-98662367aa6cab77bd64", "generated_text": "{\"bear_case\": [\"The latest signal is explicitly marked High risk.\"], \"bull_case\": [\"Momentum score is 75.0.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.09.\", \"News flow is active with 145 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 75.0. Main challenge: The latest signal is explicitly marked High risk.\" , \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 9, "parse_error": null}
|
| 11 |
+
{"example_id": "blum-f4d01e3a0861ddd8ce9c", "generated_text": "{\"bear_case\": [\"The latest signal is explicitly marked High risk.\"], \"bull_case\": [\"Momentum score is 75.0.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.11.\", \"News flow is active with 147 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 75.0. Main challenge: The latest signal is explicitly marked High risk.\", \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 10, "parse_error": null}
|
| 12 |
+
{"example_id": "blum-7af49e58aa0fca17c572", "generated_text": "{\"bear_case\": [\"The latest signal is explicitly marked High risk.\"], \"bull_case\": [\"Momentum score is 75.0.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.11.\", \"News flow is active with 147 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 75.0. Main challenge: The latest signal is explicitly marked High risk.\", \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 11, "parse_error": null}
|
| 13 |
+
{"example_id": "blum-2b331e952441cf975d49", "generated_text": "{\"bear_case\": [\"The latest signal is explicitly marked High risk.\"], \"bull_case\": [\"Momentum score is 75.0.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.11.\", \"News flow is active with 148 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 75.0. Main challenge: The latest signal is explicitly marked High risk.\" , \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 12, "parse_error": null}
|
| 14 |
+
{"example_id": "blum-170b203eed90cead942b", "generated_text": "{\"bear_case\": [\"The latest signal is explicitly marked High risk.\"], \"bull_case\": [\"Momentum score is 75.0.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.11.\", \"News flow is active with 148 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 75.0. Main challenge: The latest signal is explicitly marked High risk.\", \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 13, "parse_error": null}
|
| 15 |
+
{"example_id": "blum-dd3b52b8034b40cadac7", "generated_text": "{\"bear_case\": [\"The latest signal is explicitly marked High risk.\"], \"bull_case\": [\"Momentum score is 75.0.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.12.\", \"News flow is active with 148 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 75.0. Main challenge: The latest signal is explicitly marked High risk.\", \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 14, "parse_error": null}
|
| 16 |
+
{"example_id": "blum-25dea237c93f7758215d", "generated_text": "{\"bear_case\": [\"Price is weakening while recent sentiment is positive.\"], \"bull_case\": [\"Momentum score is 75.0.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.13.\", \"News flow is active with 150 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 75.0. Main challenge: Price is weakening while recent sentiment is positive.\", \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 15, "parse_error": null}
|
| 17 |
+
{"example_id": "blum-562234a0e2460e5b7a04", "generated_text": "{\"bear_case\": [\"Price is weakening while recent sentiment is positive.\"], \"bull_case\": [\"Momentum score is 75.0.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.14.\", \"News flow is active with 150 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 75.0. Main challenge: Price is weakening while recent sentiment is positive. The conclusion is: The evidence does not isolate a dominant cause. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 75.0. Main challenge: Price is weakening while recent sentiment is positive. The answer is: The evidence does not isolate a dominant cause. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 75.0. Main challenge: Price is weakening while recent sentiment is positive.\", \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 16, "parse_error": null}
|
| 18 |
+
{"example_id": "blum-10920ff2a57691990844", "generated_text": "{\"bear_case\": [\"Price is weakening while recent sentiment is positive.\"], \"bull_case\": [\"Momentum score is 75.0.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.15.\", \"News flow is active with 149 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 75.0. Main challenge: Price is weakening while recent sentiment is positive. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 75.0. Main challenge: Price is weakening while recent sentiment is positive. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 75.0. Main challenge: Price is weakening while recent sentiment is positive.\" , \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 17, "parse_error": null}
|
| 19 |
+
{"example_id": "blum-874ee1debb0da2780d5a", "generated_text": "{\"bear_case\": [\"Price is weakening while recent sentiment is positive.\"], \"bull_case\": [\"Momentum score is 75.0.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.15.\", \"News flow is active with 149 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 75.0. Main challenge: Price is weakening while recent sentiment is positive.\", \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 18, "parse_error": null}
|
| 20 |
+
{"example_id": "blum-2591cbc83e8270f80184", "generated_text": "{\"bear_case\": [\"Price is weakening while recent sentiment is positive.\"], \"bull_case\": [\"Momentum score is 75.0.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.15.\", \"News flow is active with 149 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 75.0. Main challenge: Price is weakening while recent sentiment is positive.\", \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 19, "parse_error": null}
|
| 21 |
+
{"example_id": "blum-4538bd8cfe41ce2b54dc", "generated_text": "{\"bear_case\": [\"Price is weakening while recent sentiment is positive.\"], \"bull_case\": [\"Momentum score is 75.0.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.16.\", \"News flow is active with 151 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 75.0. Main challenge: Price is weakening while recent sentiment is positive.\", \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 20, "parse_error": null}
|
| 22 |
+
{"example_id": "blum-5e66c7ff0807d49290dc", "generated_text": "{\"bear_case\": [\"Price is weakening while recent sentiment is positive.\"], \"bull_case\": [\"Momentum score is 75.0.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.15.\", \"News flow is active with 150 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 75.0. Main challenge: Price is weakening while recent sentiment is positive. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 75.0. Main challenge: Price is weakening while recent sentiment is positive.\", \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 21, "parse_error": null}
|
| 23 |
+
{"example_id": "blum-05b7a655380a6f783199", "generated_text": "{\"bear_case\": [\"Price is weakening while recent sentiment is positive.\"], \"bull_case\": [\"Momentum score is 75.0.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.15.\", \"News flow is active with 151 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 75.0. Main challenge: Price is weakening while recent sentiment is positive.\", \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 22, "parse_error": null}
|
| 24 |
+
{"example_id": "blum-14d3678f99e9cbadfd82", "generated_text": "{\"bear_case\": [\"Price is weakening while recent sentiment is positive.\"], \"bull_case\": [\"Momentum score is 75.0.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.15.\", \"News flow is active with 151 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 75.0. Main challenge: Price is weakening while recent sentiment is positive. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 75.0. Main challenge: Price is weakening while recent sentiment is positive. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 75.0. Main challenge: Price is weakening while recent sentiment is positive.\" , \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 23, "parse_error": null}
|
| 25 |
+
{"example_id": "blum-f8811a9cfab42d09eb53", "generated_text": "{\"bear_case\": [\"The latest signal is explicitly marked High risk.\"], \"bull_case\": [\"Momentum score is 87.4.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.19.\", \"News flow is active with 126 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 87.4. Main challenge: The latest signal is explicitly marked High risk.\", \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 24, "parse_error": null}
|
| 26 |
+
{"example_id": "blum-29e424c05c8bf1f3380a", "generated_text": "{\"bear_case\": [\"The latest signal is explicitly marked High risk.\"], \"bull_case\": [\"Momentum score is 87.4.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.19.\", \"News flow is active with 126 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 87.4. Main challenge: The latest signal is explicitly marked High risk.\" , \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 25, "parse_error": null}
|
| 27 |
+
{"example_id": "blum-85d8dd5455cf72cacfe5", "generated_text": "{\"bear_case\": [\"The latest signal is explicitly marked High risk.\"], \"bull_case\": [\"Momentum score is 87.4.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.19.\", \"News flow is active with 126 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 87.4. Main challenge: The latest signal is explicitly marked High risk.\", \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 26, "parse_error": null}
|
| 28 |
+
{"example_id": "blum-39b668a890bc1a0e376c", "generated_text": "{\"bear_case\": [\"The latest signal is explicitly marked High risk.\"], \"bull_case\": [\"Momentum score is 87.4.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.19.\", \"News flow is active with 126 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 87.4. Main challenge: The latest signal is explicitly marked High risk.\", \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 27, "parse_error": null}
|
| 29 |
+
{"example_id": "blum-43efcc2e206caa9e0a7d", "generated_text": "{\"bear_case\": [\"The latest signal is explicitly marked High risk.\"], \"bull_case\": [\"Momentum score is 87.4.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.19.\", \"News flow is active with 126 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 87.4. Main challenge: The latest signal is explicitly marked High risk.\" , \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 28, "parse_error": null}
|
| 30 |
+
{"example_id": "blum-67ec3a9368c2ee30238f", "generated_text": "{\"bear_case\": [\"The latest signal is explicitly marked High risk.\"], \"bull_case\": [\"Momentum score is 87.4.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.19.\", \"News flow is active with 126 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 87.4. Main challenge: The latest signal is explicitly marked High risk.\", \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 29, "parse_error": null}
|
| 31 |
+
{"example_id": "blum-e104e745e98d07ae2b40", "generated_text": "{\"bear_case\": [\"The latest signal is explicitly marked High risk.\"], \"bull_case\": [\"Momentum score is 87.4.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.19.\", \"News flow is active with 126 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 87.4. Main challenge: The latest signal is explicitly marked High risk.\", \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 30, "parse_error": null}
|
| 32 |
+
{"example_id": "blum-c102165a715657258df9", "generated_text": "{\"bear_case\": [\"The latest signal is explicitly marked High risk.\"], \"bull_case\": [\"Momentum score is 87.4.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.19.\", \"News flow is active with 125 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 87.4. Main challenge: The latest signal is explicitly marked High risk.\", \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 31, "parse_error": null}
|
| 33 |
+
{"example_id": "blum-b9836243d01affce8a82", "generated_text": "{\"bear_case\": [\"The latest signal is explicitly marked High risk.\"], \"bull_case\": [\"Momentum score is 87.4.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.18.\", \"News flow is active with 123 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 87.4. Main challenge: The latest signal is explicitly marked High risk.\", \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 32, "parse_error": null}
|
| 34 |
+
{"example_id": "blum-12359d685a77acc4edaf", "generated_text": "{\"bear_case\": [\"The latest signal is explicitly marked High risk.\"], \"bull_case\": [\"Momentum score is 87.4.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.18.\", \"News flow is active with 123 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 87.4. Main challenge: The latest signal is explicitly marked High risk.\" , \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 33, "parse_error": null}
|
| 35 |
+
{"example_id": "blum-ebbe89f0d0f82e23ed01", "generated_text": "{\"bear_case\": [\"The latest signal is explicitly marked High risk.\"], \"bull_case\": [\"Momentum score is 87.4.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.18.\", \"News flow is active with 123 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 87.4. Main challenge: The latest signal is explicitly marked High risk.\", \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 34, "parse_error": null}
|
| 36 |
+
{"example_id": "blum-0ba2babac460046eeb00", "generated_text": "{\"bear_case\": [\"The latest signal is explicitly marked High risk.\"], \"bull_case\": [\"Momentum score is 87.4.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.18.\", \"News flow is active with 122 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 87.4. Main challenge: The latest signal is explicitly marked High risk.\", \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 35, "parse_error": null}
|
| 37 |
+
{"example_id": "blum-d94be14f23e78e99e6c3", "generated_text": "{\"bear_case\": [\"The latest signal is explicitly marked High risk.\"], \"bull_case\": [\"Momentum score is 87.4.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.18.\", \"News flow is active with 122 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 87.4. Main challenge: The latest signal is explicitly marked High risk.\", \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 36, "parse_error": null}
|
| 38 |
+
{"example_id": "blum-b7eccbd4943d228d910b", "generated_text": "{\"bear_case\": [\"The latest signal is explicitly marked High risk.\"], \"bull_case\": [\"Momentum score is 87.4.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.18.\", \"News flow is active with 122 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 87.4. Main challenge: The latest signal is explicitly marked High risk.\", \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 37, "parse_error": null}
|
| 39 |
+
{"example_id": "blum-901e152efd5dac633686", "generated_text": "{\"bear_case\": [\"The latest signal is explicitly marked High risk.\"], \"bull_case\": [\"Momentum score is 87.4.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.18.\", \"News flow is active with 121 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 87.4. Main challenge: The latest signal is explicitly marked High risk.\" , \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 38, "parse_error": null}
|
| 40 |
+
{"example_id": "blum-d9e3e1f1ce591876d2ed", "generated_text": "{\"bear_case\": [\"The latest signal is explicitly marked High risk.\"], \"bull_case\": [\"Momentum score is 87.4.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.17.\", \"News flow is active with 120 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 87.4. Main challenge: The latest signal is explicitly marked High risk.\", \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 39, "parse_error": null}
|
| 41 |
+
{"example_id": "blum-bd2d79d021e988a95be2", "generated_text": "{\"bear_case\": [\"The latest signal is explicitly marked High risk.\"], \"bull_case\": [\"Momentum score is 87.4.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.17.\", \"News flow is active with 121 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 87.4. Main challenge: The latest signal is explicitly marked High risk.\", \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 40, "parse_error": null}
|
| 42 |
+
{"example_id": "blum-ca069fb297e36105e6ab", "generated_text": "{\"bear_case\": [\"The latest signal is explicitly marked High risk.\"], \"bull_case\": [\"Momentum score is 87.4.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.17.\", \"News flow is active with 120 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 87.4. Main challenge: The latest signal is explicitly marked High risk.\" , \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 41, "parse_error": null}
|
| 43 |
+
{"example_id": "blum-786182cb081b6511c219", "generated_text": "{\"bear_case\": [\"The latest signal is explicitly marked High risk.\"], \"bull_case\": [\"Momentum score is 87.4.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.14.\", \"News flow is active with 120 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 87.4. Main challenge: The latest signal is explicitly marked High risk.\" , \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 42, "parse_error": null}
|
| 44 |
+
{"example_id": "blum-0105fb1063469fc6c1be", "generated_text": "{\"bear_case\": [\"The latest signal is explicitly marked High risk.\"], \"bull_case\": [\"Momentum score is 87.4.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.15.\", \"News flow is active with 113 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 87.4. Main challenge: The latest signal is explicitly marked High risk.\", \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 43, "parse_error": null}
|
| 45 |
+
{"example_id": "blum-29391e82d29c68a0c4ff", "generated_text": "{\"bear_case\": [\"The latest signal is explicitly marked High risk.\"], \"bull_case\": [\"Momentum score is 87.4.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.15.\", \"News flow is active with 113 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 87.4. Main challenge: The latest signal is explicitly marked High risk.\", \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 44, "parse_error": null}
|
| 46 |
+
{"example_id": "blum-e6ebd432581f77038566", "generated_text": "{\"bear_case\": [\"The latest signal is explicitly marked High risk.\"], \"bull_case\": [\"Momentum score is 87.4.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.15.\", \"News flow is active with 113 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 87.4. Main challenge: The latest signal is explicitly marked High risk.\", \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 45, "parse_error": null}
|
| 47 |
+
{"example_id": "blum-ca19cdf3b8421d6ed6e8", "generated_text": "{\"bear_case\": [\"The latest signal is explicitly marked High risk.\"], \"bull_case\": [\"Momentum score is 87.4.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.15.\", \"News flow is active with 112 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 87.4. Main challenge: The latest signal is explicitly marked High risk.\", \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 46, "parse_error": null}
|
| 48 |
+
{"example_id": "blum-9d2964b1059d3a253393", "generated_text": "{\"bear_case\": [\"The latest signal is explicitly marked High risk.\"], \"bull_case\": [\"Momentum score is 87.4.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.14.\", \"News flow is active with 113 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 87.4. Main challenge: The latest signal is explicitly marked High risk.\" , \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 47, "parse_error": null}
|
| 49 |
+
{"example_id": "blum-877a7c3457be809f95b1", "generated_text": "{\"bear_case\": [\"The latest signal is explicitly marked High risk.\"], \"bull_case\": [\"Momentum score is 87.4.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.15.\", \"News flow is active with 114 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 87.4. Main challenge: The latest signal is explicitly marked High risk.\", \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 48, "parse_error": null}
|
| 50 |
+
{"example_id": "blum-6d5304a0807421b5988f", "generated_text": "{\"bear_case\": [\"The latest signal is explicitly marked High risk.\"], \"bull_case\": [\"Momentum score is 87.4.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.15.\", \"News flow is active with 113 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 87.4. Main challenge: The latest signal is explicitly marked High risk.\", \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 49, "parse_error": null}
|
| 51 |
+
{"example_id": "blum-4029a82b8828ea611cab", "generated_text": "{\"bear_case\": [\"The latest signal is explicitly marked High risk.\"], \"bull_case\": [\"Momentum score is 87.4.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.15.\", \"News flow is active with 113 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 87.4. Main challenge: The latest signal is explicitly marked High risk.\" , \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 50, "parse_error": null}
|
| 52 |
+
{"example_id": "blum-5e0f0b1c2dfde71c18d9", "generated_text": "{\"bear_case\": [\"The latest signal is explicitly marked High risk.\"], \"bull_case\": [\"Momentum score is 87.4.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.15.\", \"News flow is active with 112 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 87.4. Main challenge: The latest signal is explicitly marked High risk.\" , \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 51, "parse_error": null}
|
| 53 |
+
{"example_id": "blum-cb43bb099dd20dd33e12", "generated_text": "{\"bear_case\": [\"The latest signal is explicitly marked High risk.\"], \"bull_case\": [\"Momentum score is 87.4.\", \"Trend score is 71.7; price structure is supportive.\", \"Sentiment confirms part of the thesis with 7D sentiment 0.15.\", \"News flow is active with 112 linked 7D records.\", \"Fundamental evidence is supportive with score 76.0.\"], \"confidence\": 70, \"invalidation_conditions\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"], \"risks\": [\"Risk evidence is incomplete and requires verification.\"], \"status\": \"watch\", \"thesis\": \"AMAT (Applied Materials Inc.) is a Neutral research setup with Blum score the observed level and thesis conviction the observed level/the observed level in a Risk-Off regime. The working explanation is: Current evidence does not isolate a dominant cause. Primary support: Momentum score is 87.4. Main challenge: The latest signal is explicitly marked High risk.\" , \"what_would_change_the_view\": [\"Loss of support near the observed level.\", \"Sentiment turns negative while price momentum fades.\", \"ETF or sector confirmation fails to appear after the next market refresh.\", \"Positive narrative becomes crowded but no longer improves price structure.\"]}", "index": 52, "parse_error": null}
|
evaluation/candidate_summary.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"abstention_accuracy": 1.0,
|
| 3 |
+
"aggregate_ci_lower": 0.955525,
|
| 4 |
+
"aggregate_score": 0.962601,
|
| 5 |
+
"calibration_error": 0.0,
|
| 6 |
+
"calibration_sample_size": 0,
|
| 7 |
+
"contradiction_coverage": 0.915094,
|
| 8 |
+
"evidence_attribution_precision": 0.857143,
|
| 9 |
+
"invalidation_completeness": 1.0,
|
| 10 |
+
"model_revision": "ea297ba88ab008e97104b0c118103eef2f8f9ec1",
|
| 11 |
+
"no_fabrication": 0.928571,
|
| 12 |
+
"numerical_consistency": 1.0,
|
| 13 |
+
"risk_completeness": 1.0,
|
| 14 |
+
"sample_size": 53,
|
| 15 |
+
"structured_validity": 1.0
|
| 16 |
+
}
|
evaluation/candidate_traces.jsonl
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.973214, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 1.0, "evidence_attribution_precision": 0.857143, "example_id": "blum-f9b2e96103a2a285b79e", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 2 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.973214, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 1.0, "evidence_attribution_precision": 0.857143, "example_id": "blum-3bb6401570cbcbf88c78", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 3 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.973214, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 1.0, "evidence_attribution_precision": 0.857143, "example_id": "blum-7fb00f8ee594beed0ae0", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 4 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.973214, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 1.0, "evidence_attribution_precision": 0.857143, "example_id": "blum-3f9848dd87463ca8858b", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 5 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.973214, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 1.0, "evidence_attribution_precision": 0.857143, "example_id": "blum-42ece538c8d754e3f0bc", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 6 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.973214, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 1.0, "evidence_attribution_precision": 0.857143, "example_id": "blum-d2e2dbcc7f6f70145891", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 7 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.973214, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 1.0, "evidence_attribution_precision": 0.857143, "example_id": "blum-5f8ba32ef0536f9e43c0", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 8 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.973214, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 1.0, "evidence_attribution_precision": 0.857143, "example_id": "blum-e3962ad6fd3d3bfce9ba", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 9 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.973214, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 1.0, "evidence_attribution_precision": 0.857143, "example_id": "blum-01789c0e62ad9cefda66", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 10 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.973214, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 1.0, "evidence_attribution_precision": 0.857143, "example_id": "blum-98662367aa6cab77bd64", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 11 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.973214, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 1.0, "evidence_attribution_precision": 0.857143, "example_id": "blum-f4d01e3a0861ddd8ce9c", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 12 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.973214, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 1.0, "evidence_attribution_precision": 0.857143, "example_id": "blum-7af49e58aa0fca17c572", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 13 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.973214, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 1.0, "evidence_attribution_precision": 0.857143, "example_id": "blum-2b331e952441cf975d49", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 14 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.973214, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 1.0, "evidence_attribution_precision": 0.857143, "example_id": "blum-170b203eed90cead942b", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 15 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.973214, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 1.0, "evidence_attribution_precision": 0.857143, "example_id": "blum-dd3b52b8034b40cadac7", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 16 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.910714, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 0.5, "evidence_attribution_precision": 0.857143, "example_id": "blum-25dea237c93f7758215d", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 17 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.910714, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 0.5, "evidence_attribution_precision": 0.857143, "example_id": "blum-562234a0e2460e5b7a04", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 18 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.910714, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 0.5, "evidence_attribution_precision": 0.857143, "example_id": "blum-10920ff2a57691990844", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 19 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.910714, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 0.5, "evidence_attribution_precision": 0.857143, "example_id": "blum-874ee1debb0da2780d5a", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 20 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.910714, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 0.5, "evidence_attribution_precision": 0.857143, "example_id": "blum-2591cbc83e8270f80184", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 21 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.910714, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 0.5, "evidence_attribution_precision": 0.857143, "example_id": "blum-4538bd8cfe41ce2b54dc", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 22 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.910714, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 0.5, "evidence_attribution_precision": 0.857143, "example_id": "blum-5e66c7ff0807d49290dc", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 23 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.910714, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 0.5, "evidence_attribution_precision": 0.857143, "example_id": "blum-05b7a655380a6f783199", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 24 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.910714, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 0.5, "evidence_attribution_precision": 0.857143, "example_id": "blum-14d3678f99e9cbadfd82", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 25 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.973214, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 1.0, "evidence_attribution_precision": 0.857143, "example_id": "blum-f8811a9cfab42d09eb53", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 26 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.973214, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 1.0, "evidence_attribution_precision": 0.857143, "example_id": "blum-29e424c05c8bf1f3380a", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 27 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.973214, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 1.0, "evidence_attribution_precision": 0.857143, "example_id": "blum-85d8dd5455cf72cacfe5", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 28 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.973214, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 1.0, "evidence_attribution_precision": 0.857143, "example_id": "blum-39b668a890bc1a0e376c", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 29 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.973214, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 1.0, "evidence_attribution_precision": 0.857143, "example_id": "blum-43efcc2e206caa9e0a7d", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 30 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.973214, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 1.0, "evidence_attribution_precision": 0.857143, "example_id": "blum-67ec3a9368c2ee30238f", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 31 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.973214, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 1.0, "evidence_attribution_precision": 0.857143, "example_id": "blum-e104e745e98d07ae2b40", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 32 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.973214, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 1.0, "evidence_attribution_precision": 0.857143, "example_id": "blum-c102165a715657258df9", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 33 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.973214, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 1.0, "evidence_attribution_precision": 0.857143, "example_id": "blum-b9836243d01affce8a82", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 34 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.973214, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 1.0, "evidence_attribution_precision": 0.857143, "example_id": "blum-12359d685a77acc4edaf", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 35 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.973214, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 1.0, "evidence_attribution_precision": 0.857143, "example_id": "blum-ebbe89f0d0f82e23ed01", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 36 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.973214, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 1.0, "evidence_attribution_precision": 0.857143, "example_id": "blum-0ba2babac460046eeb00", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 37 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.973214, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 1.0, "evidence_attribution_precision": 0.857143, "example_id": "blum-d94be14f23e78e99e6c3", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 38 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.973214, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 1.0, "evidence_attribution_precision": 0.857143, "example_id": "blum-b7eccbd4943d228d910b", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 39 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.973214, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 1.0, "evidence_attribution_precision": 0.857143, "example_id": "blum-901e152efd5dac633686", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 40 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.973214, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 1.0, "evidence_attribution_precision": 0.857143, "example_id": "blum-d9e3e1f1ce591876d2ed", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 41 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.973214, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 1.0, "evidence_attribution_precision": 0.857143, "example_id": "blum-bd2d79d021e988a95be2", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 42 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.973214, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 1.0, "evidence_attribution_precision": 0.857143, "example_id": "blum-ca069fb297e36105e6ab", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 43 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.973214, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 1.0, "evidence_attribution_precision": 0.857143, "example_id": "blum-786182cb081b6511c219", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 44 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.973214, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 1.0, "evidence_attribution_precision": 0.857143, "example_id": "blum-0105fb1063469fc6c1be", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 45 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.973214, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 1.0, "evidence_attribution_precision": 0.857143, "example_id": "blum-29391e82d29c68a0c4ff", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 46 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.973214, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 1.0, "evidence_attribution_precision": 0.857143, "example_id": "blum-e6ebd432581f77038566", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 47 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.973214, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 1.0, "evidence_attribution_precision": 0.857143, "example_id": "blum-ca19cdf3b8421d6ed6e8", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 48 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.973214, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 1.0, "evidence_attribution_precision": 0.857143, "example_id": "blum-9d2964b1059d3a253393", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 49 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.973214, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 1.0, "evidence_attribution_precision": 0.857143, "example_id": "blum-877a7c3457be809f95b1", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 50 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.973214, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 1.0, "evidence_attribution_precision": 0.857143, "example_id": "blum-6d5304a0807421b5988f", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 51 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.973214, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 1.0, "evidence_attribution_precision": 0.857143, "example_id": "blum-4029a82b8828ea611cab", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 52 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.973214, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 1.0, "evidence_attribution_precision": 0.857143, "example_id": "blum-5e0f0b1c2dfde71c18d9", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
| 53 |
+
{"abstention_accuracy": 1.0, "aggregate_score": 0.973214, "calibration_outcome": null, "confidence": 0.7, "contradiction_coverage": 1.0, "evidence_attribution_precision": 0.857143, "example_id": "blum-cb43bb099dd20dd33e12", "invalidation_completeness": 1.0, "no_fabrication": 0.928571, "numerical_consistency": 1.0, "risk_completeness": 1.0, "structured_validity": 1.0}
|
evaluation/mlx_smoke_test.json
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"confidence": 70.0,
|
| 3 |
+
"confidence_cap_respected": true,
|
| 4 |
+
"example_id": "blum-f9b2e96103a2a285b79e",
|
| 5 |
+
"parse_error": null,
|
| 6 |
+
"response_status": "watch",
|
| 7 |
+
"status": "passed"
|
| 8 |
+
}
|
evaluation/promotion_decision.json
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"promoted": true,
|
| 3 |
+
"reasons": [],
|
| 4 |
+
"aggregate_delta": 0.962601,
|
| 5 |
+
"base_revision": "4dcb3d101c2a062e5c1d4bb173588c54ea6c4d25",
|
| 6 |
+
"candidate_revision": "ea297ba88ab008e97104b0c118103eef2f8f9ec1"
|
| 7 |
+
}
|
model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:52270d4195b046ec5cfbacdf6c6435cd5f3f154a9cf20b4646dab45f87a196d1
|
| 3 |
+
size 2263022417
|
model.safetensors.index.json
ADDED
|
@@ -0,0 +1,912 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata": {
|
| 3 |
+
"total_size": 2262920192,
|
| 4 |
+
"total_parameters": 4022468096
|
| 5 |
+
},
|
| 6 |
+
"weight_map": {
|
| 7 |
+
"model.embed_tokens.biases": "model.safetensors",
|
| 8 |
+
"model.embed_tokens.scales": "model.safetensors",
|
| 9 |
+
"model.embed_tokens.weight": "model.safetensors",
|
| 10 |
+
"model.layers.0.input_layernorm.weight": "model.safetensors",
|
| 11 |
+
"model.layers.0.mlp.down_proj.biases": "model.safetensors",
|
| 12 |
+
"model.layers.0.mlp.down_proj.scales": "model.safetensors",
|
| 13 |
+
"model.layers.0.mlp.down_proj.weight": "model.safetensors",
|
| 14 |
+
"model.layers.0.mlp.gate_proj.biases": "model.safetensors",
|
| 15 |
+
"model.layers.0.mlp.gate_proj.scales": "model.safetensors",
|
| 16 |
+
"model.layers.0.mlp.gate_proj.weight": "model.safetensors",
|
| 17 |
+
"model.layers.0.mlp.up_proj.biases": "model.safetensors",
|
| 18 |
+
"model.layers.0.mlp.up_proj.scales": "model.safetensors",
|
| 19 |
+
"model.layers.0.mlp.up_proj.weight": "model.safetensors",
|
| 20 |
+
"model.layers.0.post_attention_layernorm.weight": "model.safetensors",
|
| 21 |
+
"model.layers.0.self_attn.k_norm.weight": "model.safetensors",
|
| 22 |
+
"model.layers.0.self_attn.k_proj.biases": "model.safetensors",
|
| 23 |
+
"model.layers.0.self_attn.k_proj.scales": "model.safetensors",
|
| 24 |
+
"model.layers.0.self_attn.k_proj.weight": "model.safetensors",
|
| 25 |
+
"model.layers.0.self_attn.o_proj.biases": "model.safetensors",
|
| 26 |
+
"model.layers.0.self_attn.o_proj.scales": "model.safetensors",
|
| 27 |
+
"model.layers.0.self_attn.o_proj.weight": "model.safetensors",
|
| 28 |
+
"model.layers.0.self_attn.q_norm.weight": "model.safetensors",
|
| 29 |
+
"model.layers.0.self_attn.q_proj.biases": "model.safetensors",
|
| 30 |
+
"model.layers.0.self_attn.q_proj.scales": "model.safetensors",
|
| 31 |
+
"model.layers.0.self_attn.q_proj.weight": "model.safetensors",
|
| 32 |
+
"model.layers.0.self_attn.v_proj.biases": "model.safetensors",
|
| 33 |
+
"model.layers.0.self_attn.v_proj.scales": "model.safetensors",
|
| 34 |
+
"model.layers.0.self_attn.v_proj.weight": "model.safetensors",
|
| 35 |
+
"model.layers.1.input_layernorm.weight": "model.safetensors",
|
| 36 |
+
"model.layers.1.mlp.down_proj.biases": "model.safetensors",
|
| 37 |
+
"model.layers.1.mlp.down_proj.scales": "model.safetensors",
|
| 38 |
+
"model.layers.1.mlp.down_proj.weight": "model.safetensors",
|
| 39 |
+
"model.layers.1.mlp.gate_proj.biases": "model.safetensors",
|
| 40 |
+
"model.layers.1.mlp.gate_proj.scales": "model.safetensors",
|
| 41 |
+
"model.layers.1.mlp.gate_proj.weight": "model.safetensors",
|
| 42 |
+
"model.layers.1.mlp.up_proj.biases": "model.safetensors",
|
| 43 |
+
"model.layers.1.mlp.up_proj.scales": "model.safetensors",
|
| 44 |
+
"model.layers.1.mlp.up_proj.weight": "model.safetensors",
|
| 45 |
+
"model.layers.1.post_attention_layernorm.weight": "model.safetensors",
|
| 46 |
+
"model.layers.1.self_attn.k_norm.weight": "model.safetensors",
|
| 47 |
+
"model.layers.1.self_attn.k_proj.biases": "model.safetensors",
|
| 48 |
+
"model.layers.1.self_attn.k_proj.scales": "model.safetensors",
|
| 49 |
+
"model.layers.1.self_attn.k_proj.weight": "model.safetensors",
|
| 50 |
+
"model.layers.1.self_attn.o_proj.biases": "model.safetensors",
|
| 51 |
+
"model.layers.1.self_attn.o_proj.scales": "model.safetensors",
|
| 52 |
+
"model.layers.1.self_attn.o_proj.weight": "model.safetensors",
|
| 53 |
+
"model.layers.1.self_attn.q_norm.weight": "model.safetensors",
|
| 54 |
+
"model.layers.1.self_attn.q_proj.biases": "model.safetensors",
|
| 55 |
+
"model.layers.1.self_attn.q_proj.scales": "model.safetensors",
|
| 56 |
+
"model.layers.1.self_attn.q_proj.weight": "model.safetensors",
|
| 57 |
+
"model.layers.1.self_attn.v_proj.biases": "model.safetensors",
|
| 58 |
+
"model.layers.1.self_attn.v_proj.scales": "model.safetensors",
|
| 59 |
+
"model.layers.1.self_attn.v_proj.weight": "model.safetensors",
|
| 60 |
+
"model.layers.10.input_layernorm.weight": "model.safetensors",
|
| 61 |
+
"model.layers.10.mlp.down_proj.biases": "model.safetensors",
|
| 62 |
+
"model.layers.10.mlp.down_proj.scales": "model.safetensors",
|
| 63 |
+
"model.layers.10.mlp.down_proj.weight": "model.safetensors",
|
| 64 |
+
"model.layers.10.mlp.gate_proj.biases": "model.safetensors",
|
| 65 |
+
"model.layers.10.mlp.gate_proj.scales": "model.safetensors",
|
| 66 |
+
"model.layers.10.mlp.gate_proj.weight": "model.safetensors",
|
| 67 |
+
"model.layers.10.mlp.up_proj.biases": "model.safetensors",
|
| 68 |
+
"model.layers.10.mlp.up_proj.scales": "model.safetensors",
|
| 69 |
+
"model.layers.10.mlp.up_proj.weight": "model.safetensors",
|
| 70 |
+
"model.layers.10.post_attention_layernorm.weight": "model.safetensors",
|
| 71 |
+
"model.layers.10.self_attn.k_norm.weight": "model.safetensors",
|
| 72 |
+
"model.layers.10.self_attn.k_proj.biases": "model.safetensors",
|
| 73 |
+
"model.layers.10.self_attn.k_proj.scales": "model.safetensors",
|
| 74 |
+
"model.layers.10.self_attn.k_proj.weight": "model.safetensors",
|
| 75 |
+
"model.layers.10.self_attn.o_proj.biases": "model.safetensors",
|
| 76 |
+
"model.layers.10.self_attn.o_proj.scales": "model.safetensors",
|
| 77 |
+
"model.layers.10.self_attn.o_proj.weight": "model.safetensors",
|
| 78 |
+
"model.layers.10.self_attn.q_norm.weight": "model.safetensors",
|
| 79 |
+
"model.layers.10.self_attn.q_proj.biases": "model.safetensors",
|
| 80 |
+
"model.layers.10.self_attn.q_proj.scales": "model.safetensors",
|
| 81 |
+
"model.layers.10.self_attn.q_proj.weight": "model.safetensors",
|
| 82 |
+
"model.layers.10.self_attn.v_proj.biases": "model.safetensors",
|
| 83 |
+
"model.layers.10.self_attn.v_proj.scales": "model.safetensors",
|
| 84 |
+
"model.layers.10.self_attn.v_proj.weight": "model.safetensors",
|
| 85 |
+
"model.layers.11.input_layernorm.weight": "model.safetensors",
|
| 86 |
+
"model.layers.11.mlp.down_proj.biases": "model.safetensors",
|
| 87 |
+
"model.layers.11.mlp.down_proj.scales": "model.safetensors",
|
| 88 |
+
"model.layers.11.mlp.down_proj.weight": "model.safetensors",
|
| 89 |
+
"model.layers.11.mlp.gate_proj.biases": "model.safetensors",
|
| 90 |
+
"model.layers.11.mlp.gate_proj.scales": "model.safetensors",
|
| 91 |
+
"model.layers.11.mlp.gate_proj.weight": "model.safetensors",
|
| 92 |
+
"model.layers.11.mlp.up_proj.biases": "model.safetensors",
|
| 93 |
+
"model.layers.11.mlp.up_proj.scales": "model.safetensors",
|
| 94 |
+
"model.layers.11.mlp.up_proj.weight": "model.safetensors",
|
| 95 |
+
"model.layers.11.post_attention_layernorm.weight": "model.safetensors",
|
| 96 |
+
"model.layers.11.self_attn.k_norm.weight": "model.safetensors",
|
| 97 |
+
"model.layers.11.self_attn.k_proj.biases": "model.safetensors",
|
| 98 |
+
"model.layers.11.self_attn.k_proj.scales": "model.safetensors",
|
| 99 |
+
"model.layers.11.self_attn.k_proj.weight": "model.safetensors",
|
| 100 |
+
"model.layers.11.self_attn.o_proj.biases": "model.safetensors",
|
| 101 |
+
"model.layers.11.self_attn.o_proj.scales": "model.safetensors",
|
| 102 |
+
"model.layers.11.self_attn.o_proj.weight": "model.safetensors",
|
| 103 |
+
"model.layers.11.self_attn.q_norm.weight": "model.safetensors",
|
| 104 |
+
"model.layers.11.self_attn.q_proj.biases": "model.safetensors",
|
| 105 |
+
"model.layers.11.self_attn.q_proj.scales": "model.safetensors",
|
| 106 |
+
"model.layers.11.self_attn.q_proj.weight": "model.safetensors",
|
| 107 |
+
"model.layers.11.self_attn.v_proj.biases": "model.safetensors",
|
| 108 |
+
"model.layers.11.self_attn.v_proj.scales": "model.safetensors",
|
| 109 |
+
"model.layers.11.self_attn.v_proj.weight": "model.safetensors",
|
| 110 |
+
"model.layers.12.input_layernorm.weight": "model.safetensors",
|
| 111 |
+
"model.layers.12.mlp.down_proj.biases": "model.safetensors",
|
| 112 |
+
"model.layers.12.mlp.down_proj.scales": "model.safetensors",
|
| 113 |
+
"model.layers.12.mlp.down_proj.weight": "model.safetensors",
|
| 114 |
+
"model.layers.12.mlp.gate_proj.biases": "model.safetensors",
|
| 115 |
+
"model.layers.12.mlp.gate_proj.scales": "model.safetensors",
|
| 116 |
+
"model.layers.12.mlp.gate_proj.weight": "model.safetensors",
|
| 117 |
+
"model.layers.12.mlp.up_proj.biases": "model.safetensors",
|
| 118 |
+
"model.layers.12.mlp.up_proj.scales": "model.safetensors",
|
| 119 |
+
"model.layers.12.mlp.up_proj.weight": "model.safetensors",
|
| 120 |
+
"model.layers.12.post_attention_layernorm.weight": "model.safetensors",
|
| 121 |
+
"model.layers.12.self_attn.k_norm.weight": "model.safetensors",
|
| 122 |
+
"model.layers.12.self_attn.k_proj.biases": "model.safetensors",
|
| 123 |
+
"model.layers.12.self_attn.k_proj.scales": "model.safetensors",
|
| 124 |
+
"model.layers.12.self_attn.k_proj.weight": "model.safetensors",
|
| 125 |
+
"model.layers.12.self_attn.o_proj.biases": "model.safetensors",
|
| 126 |
+
"model.layers.12.self_attn.o_proj.scales": "model.safetensors",
|
| 127 |
+
"model.layers.12.self_attn.o_proj.weight": "model.safetensors",
|
| 128 |
+
"model.layers.12.self_attn.q_norm.weight": "model.safetensors",
|
| 129 |
+
"model.layers.12.self_attn.q_proj.biases": "model.safetensors",
|
| 130 |
+
"model.layers.12.self_attn.q_proj.scales": "model.safetensors",
|
| 131 |
+
"model.layers.12.self_attn.q_proj.weight": "model.safetensors",
|
| 132 |
+
"model.layers.12.self_attn.v_proj.biases": "model.safetensors",
|
| 133 |
+
"model.layers.12.self_attn.v_proj.scales": "model.safetensors",
|
| 134 |
+
"model.layers.12.self_attn.v_proj.weight": "model.safetensors",
|
| 135 |
+
"model.layers.13.input_layernorm.weight": "model.safetensors",
|
| 136 |
+
"model.layers.13.mlp.down_proj.biases": "model.safetensors",
|
| 137 |
+
"model.layers.13.mlp.down_proj.scales": "model.safetensors",
|
| 138 |
+
"model.layers.13.mlp.down_proj.weight": "model.safetensors",
|
| 139 |
+
"model.layers.13.mlp.gate_proj.biases": "model.safetensors",
|
| 140 |
+
"model.layers.13.mlp.gate_proj.scales": "model.safetensors",
|
| 141 |
+
"model.layers.13.mlp.gate_proj.weight": "model.safetensors",
|
| 142 |
+
"model.layers.13.mlp.up_proj.biases": "model.safetensors",
|
| 143 |
+
"model.layers.13.mlp.up_proj.scales": "model.safetensors",
|
| 144 |
+
"model.layers.13.mlp.up_proj.weight": "model.safetensors",
|
| 145 |
+
"model.layers.13.post_attention_layernorm.weight": "model.safetensors",
|
| 146 |
+
"model.layers.13.self_attn.k_norm.weight": "model.safetensors",
|
| 147 |
+
"model.layers.13.self_attn.k_proj.biases": "model.safetensors",
|
| 148 |
+
"model.layers.13.self_attn.k_proj.scales": "model.safetensors",
|
| 149 |
+
"model.layers.13.self_attn.k_proj.weight": "model.safetensors",
|
| 150 |
+
"model.layers.13.self_attn.o_proj.biases": "model.safetensors",
|
| 151 |
+
"model.layers.13.self_attn.o_proj.scales": "model.safetensors",
|
| 152 |
+
"model.layers.13.self_attn.o_proj.weight": "model.safetensors",
|
| 153 |
+
"model.layers.13.self_attn.q_norm.weight": "model.safetensors",
|
| 154 |
+
"model.layers.13.self_attn.q_proj.biases": "model.safetensors",
|
| 155 |
+
"model.layers.13.self_attn.q_proj.scales": "model.safetensors",
|
| 156 |
+
"model.layers.13.self_attn.q_proj.weight": "model.safetensors",
|
| 157 |
+
"model.layers.13.self_attn.v_proj.biases": "model.safetensors",
|
| 158 |
+
"model.layers.13.self_attn.v_proj.scales": "model.safetensors",
|
| 159 |
+
"model.layers.13.self_attn.v_proj.weight": "model.safetensors",
|
| 160 |
+
"model.layers.14.input_layernorm.weight": "model.safetensors",
|
| 161 |
+
"model.layers.14.mlp.down_proj.biases": "model.safetensors",
|
| 162 |
+
"model.layers.14.mlp.down_proj.scales": "model.safetensors",
|
| 163 |
+
"model.layers.14.mlp.down_proj.weight": "model.safetensors",
|
| 164 |
+
"model.layers.14.mlp.gate_proj.biases": "model.safetensors",
|
| 165 |
+
"model.layers.14.mlp.gate_proj.scales": "model.safetensors",
|
| 166 |
+
"model.layers.14.mlp.gate_proj.weight": "model.safetensors",
|
| 167 |
+
"model.layers.14.mlp.up_proj.biases": "model.safetensors",
|
| 168 |
+
"model.layers.14.mlp.up_proj.scales": "model.safetensors",
|
| 169 |
+
"model.layers.14.mlp.up_proj.weight": "model.safetensors",
|
| 170 |
+
"model.layers.14.post_attention_layernorm.weight": "model.safetensors",
|
| 171 |
+
"model.layers.14.self_attn.k_norm.weight": "model.safetensors",
|
| 172 |
+
"model.layers.14.self_attn.k_proj.biases": "model.safetensors",
|
| 173 |
+
"model.layers.14.self_attn.k_proj.scales": "model.safetensors",
|
| 174 |
+
"model.layers.14.self_attn.k_proj.weight": "model.safetensors",
|
| 175 |
+
"model.layers.14.self_attn.o_proj.biases": "model.safetensors",
|
| 176 |
+
"model.layers.14.self_attn.o_proj.scales": "model.safetensors",
|
| 177 |
+
"model.layers.14.self_attn.o_proj.weight": "model.safetensors",
|
| 178 |
+
"model.layers.14.self_attn.q_norm.weight": "model.safetensors",
|
| 179 |
+
"model.layers.14.self_attn.q_proj.biases": "model.safetensors",
|
| 180 |
+
"model.layers.14.self_attn.q_proj.scales": "model.safetensors",
|
| 181 |
+
"model.layers.14.self_attn.q_proj.weight": "model.safetensors",
|
| 182 |
+
"model.layers.14.self_attn.v_proj.biases": "model.safetensors",
|
| 183 |
+
"model.layers.14.self_attn.v_proj.scales": "model.safetensors",
|
| 184 |
+
"model.layers.14.self_attn.v_proj.weight": "model.safetensors",
|
| 185 |
+
"model.layers.15.input_layernorm.weight": "model.safetensors",
|
| 186 |
+
"model.layers.15.mlp.down_proj.biases": "model.safetensors",
|
| 187 |
+
"model.layers.15.mlp.down_proj.scales": "model.safetensors",
|
| 188 |
+
"model.layers.15.mlp.down_proj.weight": "model.safetensors",
|
| 189 |
+
"model.layers.15.mlp.gate_proj.biases": "model.safetensors",
|
| 190 |
+
"model.layers.15.mlp.gate_proj.scales": "model.safetensors",
|
| 191 |
+
"model.layers.15.mlp.gate_proj.weight": "model.safetensors",
|
| 192 |
+
"model.layers.15.mlp.up_proj.biases": "model.safetensors",
|
| 193 |
+
"model.layers.15.mlp.up_proj.scales": "model.safetensors",
|
| 194 |
+
"model.layers.15.mlp.up_proj.weight": "model.safetensors",
|
| 195 |
+
"model.layers.15.post_attention_layernorm.weight": "model.safetensors",
|
| 196 |
+
"model.layers.15.self_attn.k_norm.weight": "model.safetensors",
|
| 197 |
+
"model.layers.15.self_attn.k_proj.biases": "model.safetensors",
|
| 198 |
+
"model.layers.15.self_attn.k_proj.scales": "model.safetensors",
|
| 199 |
+
"model.layers.15.self_attn.k_proj.weight": "model.safetensors",
|
| 200 |
+
"model.layers.15.self_attn.o_proj.biases": "model.safetensors",
|
| 201 |
+
"model.layers.15.self_attn.o_proj.scales": "model.safetensors",
|
| 202 |
+
"model.layers.15.self_attn.o_proj.weight": "model.safetensors",
|
| 203 |
+
"model.layers.15.self_attn.q_norm.weight": "model.safetensors",
|
| 204 |
+
"model.layers.15.self_attn.q_proj.biases": "model.safetensors",
|
| 205 |
+
"model.layers.15.self_attn.q_proj.scales": "model.safetensors",
|
| 206 |
+
"model.layers.15.self_attn.q_proj.weight": "model.safetensors",
|
| 207 |
+
"model.layers.15.self_attn.v_proj.biases": "model.safetensors",
|
| 208 |
+
"model.layers.15.self_attn.v_proj.scales": "model.safetensors",
|
| 209 |
+
"model.layers.15.self_attn.v_proj.weight": "model.safetensors",
|
| 210 |
+
"model.layers.16.input_layernorm.weight": "model.safetensors",
|
| 211 |
+
"model.layers.16.mlp.down_proj.biases": "model.safetensors",
|
| 212 |
+
"model.layers.16.mlp.down_proj.scales": "model.safetensors",
|
| 213 |
+
"model.layers.16.mlp.down_proj.weight": "model.safetensors",
|
| 214 |
+
"model.layers.16.mlp.gate_proj.biases": "model.safetensors",
|
| 215 |
+
"model.layers.16.mlp.gate_proj.scales": "model.safetensors",
|
| 216 |
+
"model.layers.16.mlp.gate_proj.weight": "model.safetensors",
|
| 217 |
+
"model.layers.16.mlp.up_proj.biases": "model.safetensors",
|
| 218 |
+
"model.layers.16.mlp.up_proj.scales": "model.safetensors",
|
| 219 |
+
"model.layers.16.mlp.up_proj.weight": "model.safetensors",
|
| 220 |
+
"model.layers.16.post_attention_layernorm.weight": "model.safetensors",
|
| 221 |
+
"model.layers.16.self_attn.k_norm.weight": "model.safetensors",
|
| 222 |
+
"model.layers.16.self_attn.k_proj.biases": "model.safetensors",
|
| 223 |
+
"model.layers.16.self_attn.k_proj.scales": "model.safetensors",
|
| 224 |
+
"model.layers.16.self_attn.k_proj.weight": "model.safetensors",
|
| 225 |
+
"model.layers.16.self_attn.o_proj.biases": "model.safetensors",
|
| 226 |
+
"model.layers.16.self_attn.o_proj.scales": "model.safetensors",
|
| 227 |
+
"model.layers.16.self_attn.o_proj.weight": "model.safetensors",
|
| 228 |
+
"model.layers.16.self_attn.q_norm.weight": "model.safetensors",
|
| 229 |
+
"model.layers.16.self_attn.q_proj.biases": "model.safetensors",
|
| 230 |
+
"model.layers.16.self_attn.q_proj.scales": "model.safetensors",
|
| 231 |
+
"model.layers.16.self_attn.q_proj.weight": "model.safetensors",
|
| 232 |
+
"model.layers.16.self_attn.v_proj.biases": "model.safetensors",
|
| 233 |
+
"model.layers.16.self_attn.v_proj.scales": "model.safetensors",
|
| 234 |
+
"model.layers.16.self_attn.v_proj.weight": "model.safetensors",
|
| 235 |
+
"model.layers.17.input_layernorm.weight": "model.safetensors",
|
| 236 |
+
"model.layers.17.mlp.down_proj.biases": "model.safetensors",
|
| 237 |
+
"model.layers.17.mlp.down_proj.scales": "model.safetensors",
|
| 238 |
+
"model.layers.17.mlp.down_proj.weight": "model.safetensors",
|
| 239 |
+
"model.layers.17.mlp.gate_proj.biases": "model.safetensors",
|
| 240 |
+
"model.layers.17.mlp.gate_proj.scales": "model.safetensors",
|
| 241 |
+
"model.layers.17.mlp.gate_proj.weight": "model.safetensors",
|
| 242 |
+
"model.layers.17.mlp.up_proj.biases": "model.safetensors",
|
| 243 |
+
"model.layers.17.mlp.up_proj.scales": "model.safetensors",
|
| 244 |
+
"model.layers.17.mlp.up_proj.weight": "model.safetensors",
|
| 245 |
+
"model.layers.17.post_attention_layernorm.weight": "model.safetensors",
|
| 246 |
+
"model.layers.17.self_attn.k_norm.weight": "model.safetensors",
|
| 247 |
+
"model.layers.17.self_attn.k_proj.biases": "model.safetensors",
|
| 248 |
+
"model.layers.17.self_attn.k_proj.scales": "model.safetensors",
|
| 249 |
+
"model.layers.17.self_attn.k_proj.weight": "model.safetensors",
|
| 250 |
+
"model.layers.17.self_attn.o_proj.biases": "model.safetensors",
|
| 251 |
+
"model.layers.17.self_attn.o_proj.scales": "model.safetensors",
|
| 252 |
+
"model.layers.17.self_attn.o_proj.weight": "model.safetensors",
|
| 253 |
+
"model.layers.17.self_attn.q_norm.weight": "model.safetensors",
|
| 254 |
+
"model.layers.17.self_attn.q_proj.biases": "model.safetensors",
|
| 255 |
+
"model.layers.17.self_attn.q_proj.scales": "model.safetensors",
|
| 256 |
+
"model.layers.17.self_attn.q_proj.weight": "model.safetensors",
|
| 257 |
+
"model.layers.17.self_attn.v_proj.biases": "model.safetensors",
|
| 258 |
+
"model.layers.17.self_attn.v_proj.scales": "model.safetensors",
|
| 259 |
+
"model.layers.17.self_attn.v_proj.weight": "model.safetensors",
|
| 260 |
+
"model.layers.18.input_layernorm.weight": "model.safetensors",
|
| 261 |
+
"model.layers.18.mlp.down_proj.biases": "model.safetensors",
|
| 262 |
+
"model.layers.18.mlp.down_proj.scales": "model.safetensors",
|
| 263 |
+
"model.layers.18.mlp.down_proj.weight": "model.safetensors",
|
| 264 |
+
"model.layers.18.mlp.gate_proj.biases": "model.safetensors",
|
| 265 |
+
"model.layers.18.mlp.gate_proj.scales": "model.safetensors",
|
| 266 |
+
"model.layers.18.mlp.gate_proj.weight": "model.safetensors",
|
| 267 |
+
"model.layers.18.mlp.up_proj.biases": "model.safetensors",
|
| 268 |
+
"model.layers.18.mlp.up_proj.scales": "model.safetensors",
|
| 269 |
+
"model.layers.18.mlp.up_proj.weight": "model.safetensors",
|
| 270 |
+
"model.layers.18.post_attention_layernorm.weight": "model.safetensors",
|
| 271 |
+
"model.layers.18.self_attn.k_norm.weight": "model.safetensors",
|
| 272 |
+
"model.layers.18.self_attn.k_proj.biases": "model.safetensors",
|
| 273 |
+
"model.layers.18.self_attn.k_proj.scales": "model.safetensors",
|
| 274 |
+
"model.layers.18.self_attn.k_proj.weight": "model.safetensors",
|
| 275 |
+
"model.layers.18.self_attn.o_proj.biases": "model.safetensors",
|
| 276 |
+
"model.layers.18.self_attn.o_proj.scales": "model.safetensors",
|
| 277 |
+
"model.layers.18.self_attn.o_proj.weight": "model.safetensors",
|
| 278 |
+
"model.layers.18.self_attn.q_norm.weight": "model.safetensors",
|
| 279 |
+
"model.layers.18.self_attn.q_proj.biases": "model.safetensors",
|
| 280 |
+
"model.layers.18.self_attn.q_proj.scales": "model.safetensors",
|
| 281 |
+
"model.layers.18.self_attn.q_proj.weight": "model.safetensors",
|
| 282 |
+
"model.layers.18.self_attn.v_proj.biases": "model.safetensors",
|
| 283 |
+
"model.layers.18.self_attn.v_proj.scales": "model.safetensors",
|
| 284 |
+
"model.layers.18.self_attn.v_proj.weight": "model.safetensors",
|
| 285 |
+
"model.layers.19.input_layernorm.weight": "model.safetensors",
|
| 286 |
+
"model.layers.19.mlp.down_proj.biases": "model.safetensors",
|
| 287 |
+
"model.layers.19.mlp.down_proj.scales": "model.safetensors",
|
| 288 |
+
"model.layers.19.mlp.down_proj.weight": "model.safetensors",
|
| 289 |
+
"model.layers.19.mlp.gate_proj.biases": "model.safetensors",
|
| 290 |
+
"model.layers.19.mlp.gate_proj.scales": "model.safetensors",
|
| 291 |
+
"model.layers.19.mlp.gate_proj.weight": "model.safetensors",
|
| 292 |
+
"model.layers.19.mlp.up_proj.biases": "model.safetensors",
|
| 293 |
+
"model.layers.19.mlp.up_proj.scales": "model.safetensors",
|
| 294 |
+
"model.layers.19.mlp.up_proj.weight": "model.safetensors",
|
| 295 |
+
"model.layers.19.post_attention_layernorm.weight": "model.safetensors",
|
| 296 |
+
"model.layers.19.self_attn.k_norm.weight": "model.safetensors",
|
| 297 |
+
"model.layers.19.self_attn.k_proj.biases": "model.safetensors",
|
| 298 |
+
"model.layers.19.self_attn.k_proj.scales": "model.safetensors",
|
| 299 |
+
"model.layers.19.self_attn.k_proj.weight": "model.safetensors",
|
| 300 |
+
"model.layers.19.self_attn.o_proj.biases": "model.safetensors",
|
| 301 |
+
"model.layers.19.self_attn.o_proj.scales": "model.safetensors",
|
| 302 |
+
"model.layers.19.self_attn.o_proj.weight": "model.safetensors",
|
| 303 |
+
"model.layers.19.self_attn.q_norm.weight": "model.safetensors",
|
| 304 |
+
"model.layers.19.self_attn.q_proj.biases": "model.safetensors",
|
| 305 |
+
"model.layers.19.self_attn.q_proj.scales": "model.safetensors",
|
| 306 |
+
"model.layers.19.self_attn.q_proj.weight": "model.safetensors",
|
| 307 |
+
"model.layers.19.self_attn.v_proj.biases": "model.safetensors",
|
| 308 |
+
"model.layers.19.self_attn.v_proj.scales": "model.safetensors",
|
| 309 |
+
"model.layers.19.self_attn.v_proj.weight": "model.safetensors",
|
| 310 |
+
"model.layers.2.input_layernorm.weight": "model.safetensors",
|
| 311 |
+
"model.layers.2.mlp.down_proj.biases": "model.safetensors",
|
| 312 |
+
"model.layers.2.mlp.down_proj.scales": "model.safetensors",
|
| 313 |
+
"model.layers.2.mlp.down_proj.weight": "model.safetensors",
|
| 314 |
+
"model.layers.2.mlp.gate_proj.biases": "model.safetensors",
|
| 315 |
+
"model.layers.2.mlp.gate_proj.scales": "model.safetensors",
|
| 316 |
+
"model.layers.2.mlp.gate_proj.weight": "model.safetensors",
|
| 317 |
+
"model.layers.2.mlp.up_proj.biases": "model.safetensors",
|
| 318 |
+
"model.layers.2.mlp.up_proj.scales": "model.safetensors",
|
| 319 |
+
"model.layers.2.mlp.up_proj.weight": "model.safetensors",
|
| 320 |
+
"model.layers.2.post_attention_layernorm.weight": "model.safetensors",
|
| 321 |
+
"model.layers.2.self_attn.k_norm.weight": "model.safetensors",
|
| 322 |
+
"model.layers.2.self_attn.k_proj.biases": "model.safetensors",
|
| 323 |
+
"model.layers.2.self_attn.k_proj.scales": "model.safetensors",
|
| 324 |
+
"model.layers.2.self_attn.k_proj.weight": "model.safetensors",
|
| 325 |
+
"model.layers.2.self_attn.o_proj.biases": "model.safetensors",
|
| 326 |
+
"model.layers.2.self_attn.o_proj.scales": "model.safetensors",
|
| 327 |
+
"model.layers.2.self_attn.o_proj.weight": "model.safetensors",
|
| 328 |
+
"model.layers.2.self_attn.q_norm.weight": "model.safetensors",
|
| 329 |
+
"model.layers.2.self_attn.q_proj.biases": "model.safetensors",
|
| 330 |
+
"model.layers.2.self_attn.q_proj.scales": "model.safetensors",
|
| 331 |
+
"model.layers.2.self_attn.q_proj.weight": "model.safetensors",
|
| 332 |
+
"model.layers.2.self_attn.v_proj.biases": "model.safetensors",
|
| 333 |
+
"model.layers.2.self_attn.v_proj.scales": "model.safetensors",
|
| 334 |
+
"model.layers.2.self_attn.v_proj.weight": "model.safetensors",
|
| 335 |
+
"model.layers.20.input_layernorm.weight": "model.safetensors",
|
| 336 |
+
"model.layers.20.mlp.down_proj.biases": "model.safetensors",
|
| 337 |
+
"model.layers.20.mlp.down_proj.scales": "model.safetensors",
|
| 338 |
+
"model.layers.20.mlp.down_proj.weight": "model.safetensors",
|
| 339 |
+
"model.layers.20.mlp.gate_proj.biases": "model.safetensors",
|
| 340 |
+
"model.layers.20.mlp.gate_proj.scales": "model.safetensors",
|
| 341 |
+
"model.layers.20.mlp.gate_proj.weight": "model.safetensors",
|
| 342 |
+
"model.layers.20.mlp.up_proj.biases": "model.safetensors",
|
| 343 |
+
"model.layers.20.mlp.up_proj.scales": "model.safetensors",
|
| 344 |
+
"model.layers.20.mlp.up_proj.weight": "model.safetensors",
|
| 345 |
+
"model.layers.20.post_attention_layernorm.weight": "model.safetensors",
|
| 346 |
+
"model.layers.20.self_attn.k_norm.weight": "model.safetensors",
|
| 347 |
+
"model.layers.20.self_attn.k_proj.biases": "model.safetensors",
|
| 348 |
+
"model.layers.20.self_attn.k_proj.scales": "model.safetensors",
|
| 349 |
+
"model.layers.20.self_attn.k_proj.weight": "model.safetensors",
|
| 350 |
+
"model.layers.20.self_attn.o_proj.biases": "model.safetensors",
|
| 351 |
+
"model.layers.20.self_attn.o_proj.scales": "model.safetensors",
|
| 352 |
+
"model.layers.20.self_attn.o_proj.weight": "model.safetensors",
|
| 353 |
+
"model.layers.20.self_attn.q_norm.weight": "model.safetensors",
|
| 354 |
+
"model.layers.20.self_attn.q_proj.biases": "model.safetensors",
|
| 355 |
+
"model.layers.20.self_attn.q_proj.scales": "model.safetensors",
|
| 356 |
+
"model.layers.20.self_attn.q_proj.weight": "model.safetensors",
|
| 357 |
+
"model.layers.20.self_attn.v_proj.biases": "model.safetensors",
|
| 358 |
+
"model.layers.20.self_attn.v_proj.scales": "model.safetensors",
|
| 359 |
+
"model.layers.20.self_attn.v_proj.weight": "model.safetensors",
|
| 360 |
+
"model.layers.21.input_layernorm.weight": "model.safetensors",
|
| 361 |
+
"model.layers.21.mlp.down_proj.biases": "model.safetensors",
|
| 362 |
+
"model.layers.21.mlp.down_proj.scales": "model.safetensors",
|
| 363 |
+
"model.layers.21.mlp.down_proj.weight": "model.safetensors",
|
| 364 |
+
"model.layers.21.mlp.gate_proj.biases": "model.safetensors",
|
| 365 |
+
"model.layers.21.mlp.gate_proj.scales": "model.safetensors",
|
| 366 |
+
"model.layers.21.mlp.gate_proj.weight": "model.safetensors",
|
| 367 |
+
"model.layers.21.mlp.up_proj.biases": "model.safetensors",
|
| 368 |
+
"model.layers.21.mlp.up_proj.scales": "model.safetensors",
|
| 369 |
+
"model.layers.21.mlp.up_proj.weight": "model.safetensors",
|
| 370 |
+
"model.layers.21.post_attention_layernorm.weight": "model.safetensors",
|
| 371 |
+
"model.layers.21.self_attn.k_norm.weight": "model.safetensors",
|
| 372 |
+
"model.layers.21.self_attn.k_proj.biases": "model.safetensors",
|
| 373 |
+
"model.layers.21.self_attn.k_proj.scales": "model.safetensors",
|
| 374 |
+
"model.layers.21.self_attn.k_proj.weight": "model.safetensors",
|
| 375 |
+
"model.layers.21.self_attn.o_proj.biases": "model.safetensors",
|
| 376 |
+
"model.layers.21.self_attn.o_proj.scales": "model.safetensors",
|
| 377 |
+
"model.layers.21.self_attn.o_proj.weight": "model.safetensors",
|
| 378 |
+
"model.layers.21.self_attn.q_norm.weight": "model.safetensors",
|
| 379 |
+
"model.layers.21.self_attn.q_proj.biases": "model.safetensors",
|
| 380 |
+
"model.layers.21.self_attn.q_proj.scales": "model.safetensors",
|
| 381 |
+
"model.layers.21.self_attn.q_proj.weight": "model.safetensors",
|
| 382 |
+
"model.layers.21.self_attn.v_proj.biases": "model.safetensors",
|
| 383 |
+
"model.layers.21.self_attn.v_proj.scales": "model.safetensors",
|
| 384 |
+
"model.layers.21.self_attn.v_proj.weight": "model.safetensors",
|
| 385 |
+
"model.layers.22.input_layernorm.weight": "model.safetensors",
|
| 386 |
+
"model.layers.22.mlp.down_proj.biases": "model.safetensors",
|
| 387 |
+
"model.layers.22.mlp.down_proj.scales": "model.safetensors",
|
| 388 |
+
"model.layers.22.mlp.down_proj.weight": "model.safetensors",
|
| 389 |
+
"model.layers.22.mlp.gate_proj.biases": "model.safetensors",
|
| 390 |
+
"model.layers.22.mlp.gate_proj.scales": "model.safetensors",
|
| 391 |
+
"model.layers.22.mlp.gate_proj.weight": "model.safetensors",
|
| 392 |
+
"model.layers.22.mlp.up_proj.biases": "model.safetensors",
|
| 393 |
+
"model.layers.22.mlp.up_proj.scales": "model.safetensors",
|
| 394 |
+
"model.layers.22.mlp.up_proj.weight": "model.safetensors",
|
| 395 |
+
"model.layers.22.post_attention_layernorm.weight": "model.safetensors",
|
| 396 |
+
"model.layers.22.self_attn.k_norm.weight": "model.safetensors",
|
| 397 |
+
"model.layers.22.self_attn.k_proj.biases": "model.safetensors",
|
| 398 |
+
"model.layers.22.self_attn.k_proj.scales": "model.safetensors",
|
| 399 |
+
"model.layers.22.self_attn.k_proj.weight": "model.safetensors",
|
| 400 |
+
"model.layers.22.self_attn.o_proj.biases": "model.safetensors",
|
| 401 |
+
"model.layers.22.self_attn.o_proj.scales": "model.safetensors",
|
| 402 |
+
"model.layers.22.self_attn.o_proj.weight": "model.safetensors",
|
| 403 |
+
"model.layers.22.self_attn.q_norm.weight": "model.safetensors",
|
| 404 |
+
"model.layers.22.self_attn.q_proj.biases": "model.safetensors",
|
| 405 |
+
"model.layers.22.self_attn.q_proj.scales": "model.safetensors",
|
| 406 |
+
"model.layers.22.self_attn.q_proj.weight": "model.safetensors",
|
| 407 |
+
"model.layers.22.self_attn.v_proj.biases": "model.safetensors",
|
| 408 |
+
"model.layers.22.self_attn.v_proj.scales": "model.safetensors",
|
| 409 |
+
"model.layers.22.self_attn.v_proj.weight": "model.safetensors",
|
| 410 |
+
"model.layers.23.input_layernorm.weight": "model.safetensors",
|
| 411 |
+
"model.layers.23.mlp.down_proj.biases": "model.safetensors",
|
| 412 |
+
"model.layers.23.mlp.down_proj.scales": "model.safetensors",
|
| 413 |
+
"model.layers.23.mlp.down_proj.weight": "model.safetensors",
|
| 414 |
+
"model.layers.23.mlp.gate_proj.biases": "model.safetensors",
|
| 415 |
+
"model.layers.23.mlp.gate_proj.scales": "model.safetensors",
|
| 416 |
+
"model.layers.23.mlp.gate_proj.weight": "model.safetensors",
|
| 417 |
+
"model.layers.23.mlp.up_proj.biases": "model.safetensors",
|
| 418 |
+
"model.layers.23.mlp.up_proj.scales": "model.safetensors",
|
| 419 |
+
"model.layers.23.mlp.up_proj.weight": "model.safetensors",
|
| 420 |
+
"model.layers.23.post_attention_layernorm.weight": "model.safetensors",
|
| 421 |
+
"model.layers.23.self_attn.k_norm.weight": "model.safetensors",
|
| 422 |
+
"model.layers.23.self_attn.k_proj.biases": "model.safetensors",
|
| 423 |
+
"model.layers.23.self_attn.k_proj.scales": "model.safetensors",
|
| 424 |
+
"model.layers.23.self_attn.k_proj.weight": "model.safetensors",
|
| 425 |
+
"model.layers.23.self_attn.o_proj.biases": "model.safetensors",
|
| 426 |
+
"model.layers.23.self_attn.o_proj.scales": "model.safetensors",
|
| 427 |
+
"model.layers.23.self_attn.o_proj.weight": "model.safetensors",
|
| 428 |
+
"model.layers.23.self_attn.q_norm.weight": "model.safetensors",
|
| 429 |
+
"model.layers.23.self_attn.q_proj.biases": "model.safetensors",
|
| 430 |
+
"model.layers.23.self_attn.q_proj.scales": "model.safetensors",
|
| 431 |
+
"model.layers.23.self_attn.q_proj.weight": "model.safetensors",
|
| 432 |
+
"model.layers.23.self_attn.v_proj.biases": "model.safetensors",
|
| 433 |
+
"model.layers.23.self_attn.v_proj.scales": "model.safetensors",
|
| 434 |
+
"model.layers.23.self_attn.v_proj.weight": "model.safetensors",
|
| 435 |
+
"model.layers.24.input_layernorm.weight": "model.safetensors",
|
| 436 |
+
"model.layers.24.mlp.down_proj.biases": "model.safetensors",
|
| 437 |
+
"model.layers.24.mlp.down_proj.scales": "model.safetensors",
|
| 438 |
+
"model.layers.24.mlp.down_proj.weight": "model.safetensors",
|
| 439 |
+
"model.layers.24.mlp.gate_proj.biases": "model.safetensors",
|
| 440 |
+
"model.layers.24.mlp.gate_proj.scales": "model.safetensors",
|
| 441 |
+
"model.layers.24.mlp.gate_proj.weight": "model.safetensors",
|
| 442 |
+
"model.layers.24.mlp.up_proj.biases": "model.safetensors",
|
| 443 |
+
"model.layers.24.mlp.up_proj.scales": "model.safetensors",
|
| 444 |
+
"model.layers.24.mlp.up_proj.weight": "model.safetensors",
|
| 445 |
+
"model.layers.24.post_attention_layernorm.weight": "model.safetensors",
|
| 446 |
+
"model.layers.24.self_attn.k_norm.weight": "model.safetensors",
|
| 447 |
+
"model.layers.24.self_attn.k_proj.biases": "model.safetensors",
|
| 448 |
+
"model.layers.24.self_attn.k_proj.scales": "model.safetensors",
|
| 449 |
+
"model.layers.24.self_attn.k_proj.weight": "model.safetensors",
|
| 450 |
+
"model.layers.24.self_attn.o_proj.biases": "model.safetensors",
|
| 451 |
+
"model.layers.24.self_attn.o_proj.scales": "model.safetensors",
|
| 452 |
+
"model.layers.24.self_attn.o_proj.weight": "model.safetensors",
|
| 453 |
+
"model.layers.24.self_attn.q_norm.weight": "model.safetensors",
|
| 454 |
+
"model.layers.24.self_attn.q_proj.biases": "model.safetensors",
|
| 455 |
+
"model.layers.24.self_attn.q_proj.scales": "model.safetensors",
|
| 456 |
+
"model.layers.24.self_attn.q_proj.weight": "model.safetensors",
|
| 457 |
+
"model.layers.24.self_attn.v_proj.biases": "model.safetensors",
|
| 458 |
+
"model.layers.24.self_attn.v_proj.scales": "model.safetensors",
|
| 459 |
+
"model.layers.24.self_attn.v_proj.weight": "model.safetensors",
|
| 460 |
+
"model.layers.25.input_layernorm.weight": "model.safetensors",
|
| 461 |
+
"model.layers.25.mlp.down_proj.biases": "model.safetensors",
|
| 462 |
+
"model.layers.25.mlp.down_proj.scales": "model.safetensors",
|
| 463 |
+
"model.layers.25.mlp.down_proj.weight": "model.safetensors",
|
| 464 |
+
"model.layers.25.mlp.gate_proj.biases": "model.safetensors",
|
| 465 |
+
"model.layers.25.mlp.gate_proj.scales": "model.safetensors",
|
| 466 |
+
"model.layers.25.mlp.gate_proj.weight": "model.safetensors",
|
| 467 |
+
"model.layers.25.mlp.up_proj.biases": "model.safetensors",
|
| 468 |
+
"model.layers.25.mlp.up_proj.scales": "model.safetensors",
|
| 469 |
+
"model.layers.25.mlp.up_proj.weight": "model.safetensors",
|
| 470 |
+
"model.layers.25.post_attention_layernorm.weight": "model.safetensors",
|
| 471 |
+
"model.layers.25.self_attn.k_norm.weight": "model.safetensors",
|
| 472 |
+
"model.layers.25.self_attn.k_proj.biases": "model.safetensors",
|
| 473 |
+
"model.layers.25.self_attn.k_proj.scales": "model.safetensors",
|
| 474 |
+
"model.layers.25.self_attn.k_proj.weight": "model.safetensors",
|
| 475 |
+
"model.layers.25.self_attn.o_proj.biases": "model.safetensors",
|
| 476 |
+
"model.layers.25.self_attn.o_proj.scales": "model.safetensors",
|
| 477 |
+
"model.layers.25.self_attn.o_proj.weight": "model.safetensors",
|
| 478 |
+
"model.layers.25.self_attn.q_norm.weight": "model.safetensors",
|
| 479 |
+
"model.layers.25.self_attn.q_proj.biases": "model.safetensors",
|
| 480 |
+
"model.layers.25.self_attn.q_proj.scales": "model.safetensors",
|
| 481 |
+
"model.layers.25.self_attn.q_proj.weight": "model.safetensors",
|
| 482 |
+
"model.layers.25.self_attn.v_proj.biases": "model.safetensors",
|
| 483 |
+
"model.layers.25.self_attn.v_proj.scales": "model.safetensors",
|
| 484 |
+
"model.layers.25.self_attn.v_proj.weight": "model.safetensors",
|
| 485 |
+
"model.layers.26.input_layernorm.weight": "model.safetensors",
|
| 486 |
+
"model.layers.26.mlp.down_proj.biases": "model.safetensors",
|
| 487 |
+
"model.layers.26.mlp.down_proj.scales": "model.safetensors",
|
| 488 |
+
"model.layers.26.mlp.down_proj.weight": "model.safetensors",
|
| 489 |
+
"model.layers.26.mlp.gate_proj.biases": "model.safetensors",
|
| 490 |
+
"model.layers.26.mlp.gate_proj.scales": "model.safetensors",
|
| 491 |
+
"model.layers.26.mlp.gate_proj.weight": "model.safetensors",
|
| 492 |
+
"model.layers.26.mlp.up_proj.biases": "model.safetensors",
|
| 493 |
+
"model.layers.26.mlp.up_proj.scales": "model.safetensors",
|
| 494 |
+
"model.layers.26.mlp.up_proj.weight": "model.safetensors",
|
| 495 |
+
"model.layers.26.post_attention_layernorm.weight": "model.safetensors",
|
| 496 |
+
"model.layers.26.self_attn.k_norm.weight": "model.safetensors",
|
| 497 |
+
"model.layers.26.self_attn.k_proj.biases": "model.safetensors",
|
| 498 |
+
"model.layers.26.self_attn.k_proj.scales": "model.safetensors",
|
| 499 |
+
"model.layers.26.self_attn.k_proj.weight": "model.safetensors",
|
| 500 |
+
"model.layers.26.self_attn.o_proj.biases": "model.safetensors",
|
| 501 |
+
"model.layers.26.self_attn.o_proj.scales": "model.safetensors",
|
| 502 |
+
"model.layers.26.self_attn.o_proj.weight": "model.safetensors",
|
| 503 |
+
"model.layers.26.self_attn.q_norm.weight": "model.safetensors",
|
| 504 |
+
"model.layers.26.self_attn.q_proj.biases": "model.safetensors",
|
| 505 |
+
"model.layers.26.self_attn.q_proj.scales": "model.safetensors",
|
| 506 |
+
"model.layers.26.self_attn.q_proj.weight": "model.safetensors",
|
| 507 |
+
"model.layers.26.self_attn.v_proj.biases": "model.safetensors",
|
| 508 |
+
"model.layers.26.self_attn.v_proj.scales": "model.safetensors",
|
| 509 |
+
"model.layers.26.self_attn.v_proj.weight": "model.safetensors",
|
| 510 |
+
"model.layers.27.input_layernorm.weight": "model.safetensors",
|
| 511 |
+
"model.layers.27.mlp.down_proj.biases": "model.safetensors",
|
| 512 |
+
"model.layers.27.mlp.down_proj.scales": "model.safetensors",
|
| 513 |
+
"model.layers.27.mlp.down_proj.weight": "model.safetensors",
|
| 514 |
+
"model.layers.27.mlp.gate_proj.biases": "model.safetensors",
|
| 515 |
+
"model.layers.27.mlp.gate_proj.scales": "model.safetensors",
|
| 516 |
+
"model.layers.27.mlp.gate_proj.weight": "model.safetensors",
|
| 517 |
+
"model.layers.27.mlp.up_proj.biases": "model.safetensors",
|
| 518 |
+
"model.layers.27.mlp.up_proj.scales": "model.safetensors",
|
| 519 |
+
"model.layers.27.mlp.up_proj.weight": "model.safetensors",
|
| 520 |
+
"model.layers.27.post_attention_layernorm.weight": "model.safetensors",
|
| 521 |
+
"model.layers.27.self_attn.k_norm.weight": "model.safetensors",
|
| 522 |
+
"model.layers.27.self_attn.k_proj.biases": "model.safetensors",
|
| 523 |
+
"model.layers.27.self_attn.k_proj.scales": "model.safetensors",
|
| 524 |
+
"model.layers.27.self_attn.k_proj.weight": "model.safetensors",
|
| 525 |
+
"model.layers.27.self_attn.o_proj.biases": "model.safetensors",
|
| 526 |
+
"model.layers.27.self_attn.o_proj.scales": "model.safetensors",
|
| 527 |
+
"model.layers.27.self_attn.o_proj.weight": "model.safetensors",
|
| 528 |
+
"model.layers.27.self_attn.q_norm.weight": "model.safetensors",
|
| 529 |
+
"model.layers.27.self_attn.q_proj.biases": "model.safetensors",
|
| 530 |
+
"model.layers.27.self_attn.q_proj.scales": "model.safetensors",
|
| 531 |
+
"model.layers.27.self_attn.q_proj.weight": "model.safetensors",
|
| 532 |
+
"model.layers.27.self_attn.v_proj.biases": "model.safetensors",
|
| 533 |
+
"model.layers.27.self_attn.v_proj.scales": "model.safetensors",
|
| 534 |
+
"model.layers.27.self_attn.v_proj.weight": "model.safetensors",
|
| 535 |
+
"model.layers.28.input_layernorm.weight": "model.safetensors",
|
| 536 |
+
"model.layers.28.mlp.down_proj.biases": "model.safetensors",
|
| 537 |
+
"model.layers.28.mlp.down_proj.scales": "model.safetensors",
|
| 538 |
+
"model.layers.28.mlp.down_proj.weight": "model.safetensors",
|
| 539 |
+
"model.layers.28.mlp.gate_proj.biases": "model.safetensors",
|
| 540 |
+
"model.layers.28.mlp.gate_proj.scales": "model.safetensors",
|
| 541 |
+
"model.layers.28.mlp.gate_proj.weight": "model.safetensors",
|
| 542 |
+
"model.layers.28.mlp.up_proj.biases": "model.safetensors",
|
| 543 |
+
"model.layers.28.mlp.up_proj.scales": "model.safetensors",
|
| 544 |
+
"model.layers.28.mlp.up_proj.weight": "model.safetensors",
|
| 545 |
+
"model.layers.28.post_attention_layernorm.weight": "model.safetensors",
|
| 546 |
+
"model.layers.28.self_attn.k_norm.weight": "model.safetensors",
|
| 547 |
+
"model.layers.28.self_attn.k_proj.biases": "model.safetensors",
|
| 548 |
+
"model.layers.28.self_attn.k_proj.scales": "model.safetensors",
|
| 549 |
+
"model.layers.28.self_attn.k_proj.weight": "model.safetensors",
|
| 550 |
+
"model.layers.28.self_attn.o_proj.biases": "model.safetensors",
|
| 551 |
+
"model.layers.28.self_attn.o_proj.scales": "model.safetensors",
|
| 552 |
+
"model.layers.28.self_attn.o_proj.weight": "model.safetensors",
|
| 553 |
+
"model.layers.28.self_attn.q_norm.weight": "model.safetensors",
|
| 554 |
+
"model.layers.28.self_attn.q_proj.biases": "model.safetensors",
|
| 555 |
+
"model.layers.28.self_attn.q_proj.scales": "model.safetensors",
|
| 556 |
+
"model.layers.28.self_attn.q_proj.weight": "model.safetensors",
|
| 557 |
+
"model.layers.28.self_attn.v_proj.biases": "model.safetensors",
|
| 558 |
+
"model.layers.28.self_attn.v_proj.scales": "model.safetensors",
|
| 559 |
+
"model.layers.28.self_attn.v_proj.weight": "model.safetensors",
|
| 560 |
+
"model.layers.29.input_layernorm.weight": "model.safetensors",
|
| 561 |
+
"model.layers.29.mlp.down_proj.biases": "model.safetensors",
|
| 562 |
+
"model.layers.29.mlp.down_proj.scales": "model.safetensors",
|
| 563 |
+
"model.layers.29.mlp.down_proj.weight": "model.safetensors",
|
| 564 |
+
"model.layers.29.mlp.gate_proj.biases": "model.safetensors",
|
| 565 |
+
"model.layers.29.mlp.gate_proj.scales": "model.safetensors",
|
| 566 |
+
"model.layers.29.mlp.gate_proj.weight": "model.safetensors",
|
| 567 |
+
"model.layers.29.mlp.up_proj.biases": "model.safetensors",
|
| 568 |
+
"model.layers.29.mlp.up_proj.scales": "model.safetensors",
|
| 569 |
+
"model.layers.29.mlp.up_proj.weight": "model.safetensors",
|
| 570 |
+
"model.layers.29.post_attention_layernorm.weight": "model.safetensors",
|
| 571 |
+
"model.layers.29.self_attn.k_norm.weight": "model.safetensors",
|
| 572 |
+
"model.layers.29.self_attn.k_proj.biases": "model.safetensors",
|
| 573 |
+
"model.layers.29.self_attn.k_proj.scales": "model.safetensors",
|
| 574 |
+
"model.layers.29.self_attn.k_proj.weight": "model.safetensors",
|
| 575 |
+
"model.layers.29.self_attn.o_proj.biases": "model.safetensors",
|
| 576 |
+
"model.layers.29.self_attn.o_proj.scales": "model.safetensors",
|
| 577 |
+
"model.layers.29.self_attn.o_proj.weight": "model.safetensors",
|
| 578 |
+
"model.layers.29.self_attn.q_norm.weight": "model.safetensors",
|
| 579 |
+
"model.layers.29.self_attn.q_proj.biases": "model.safetensors",
|
| 580 |
+
"model.layers.29.self_attn.q_proj.scales": "model.safetensors",
|
| 581 |
+
"model.layers.29.self_attn.q_proj.weight": "model.safetensors",
|
| 582 |
+
"model.layers.29.self_attn.v_proj.biases": "model.safetensors",
|
| 583 |
+
"model.layers.29.self_attn.v_proj.scales": "model.safetensors",
|
| 584 |
+
"model.layers.29.self_attn.v_proj.weight": "model.safetensors",
|
| 585 |
+
"model.layers.3.input_layernorm.weight": "model.safetensors",
|
| 586 |
+
"model.layers.3.mlp.down_proj.biases": "model.safetensors",
|
| 587 |
+
"model.layers.3.mlp.down_proj.scales": "model.safetensors",
|
| 588 |
+
"model.layers.3.mlp.down_proj.weight": "model.safetensors",
|
| 589 |
+
"model.layers.3.mlp.gate_proj.biases": "model.safetensors",
|
| 590 |
+
"model.layers.3.mlp.gate_proj.scales": "model.safetensors",
|
| 591 |
+
"model.layers.3.mlp.gate_proj.weight": "model.safetensors",
|
| 592 |
+
"model.layers.3.mlp.up_proj.biases": "model.safetensors",
|
| 593 |
+
"model.layers.3.mlp.up_proj.scales": "model.safetensors",
|
| 594 |
+
"model.layers.3.mlp.up_proj.weight": "model.safetensors",
|
| 595 |
+
"model.layers.3.post_attention_layernorm.weight": "model.safetensors",
|
| 596 |
+
"model.layers.3.self_attn.k_norm.weight": "model.safetensors",
|
| 597 |
+
"model.layers.3.self_attn.k_proj.biases": "model.safetensors",
|
| 598 |
+
"model.layers.3.self_attn.k_proj.scales": "model.safetensors",
|
| 599 |
+
"model.layers.3.self_attn.k_proj.weight": "model.safetensors",
|
| 600 |
+
"model.layers.3.self_attn.o_proj.biases": "model.safetensors",
|
| 601 |
+
"model.layers.3.self_attn.o_proj.scales": "model.safetensors",
|
| 602 |
+
"model.layers.3.self_attn.o_proj.weight": "model.safetensors",
|
| 603 |
+
"model.layers.3.self_attn.q_norm.weight": "model.safetensors",
|
| 604 |
+
"model.layers.3.self_attn.q_proj.biases": "model.safetensors",
|
| 605 |
+
"model.layers.3.self_attn.q_proj.scales": "model.safetensors",
|
| 606 |
+
"model.layers.3.self_attn.q_proj.weight": "model.safetensors",
|
| 607 |
+
"model.layers.3.self_attn.v_proj.biases": "model.safetensors",
|
| 608 |
+
"model.layers.3.self_attn.v_proj.scales": "model.safetensors",
|
| 609 |
+
"model.layers.3.self_attn.v_proj.weight": "model.safetensors",
|
| 610 |
+
"model.layers.30.input_layernorm.weight": "model.safetensors",
|
| 611 |
+
"model.layers.30.mlp.down_proj.biases": "model.safetensors",
|
| 612 |
+
"model.layers.30.mlp.down_proj.scales": "model.safetensors",
|
| 613 |
+
"model.layers.30.mlp.down_proj.weight": "model.safetensors",
|
| 614 |
+
"model.layers.30.mlp.gate_proj.biases": "model.safetensors",
|
| 615 |
+
"model.layers.30.mlp.gate_proj.scales": "model.safetensors",
|
| 616 |
+
"model.layers.30.mlp.gate_proj.weight": "model.safetensors",
|
| 617 |
+
"model.layers.30.mlp.up_proj.biases": "model.safetensors",
|
| 618 |
+
"model.layers.30.mlp.up_proj.scales": "model.safetensors",
|
| 619 |
+
"model.layers.30.mlp.up_proj.weight": "model.safetensors",
|
| 620 |
+
"model.layers.30.post_attention_layernorm.weight": "model.safetensors",
|
| 621 |
+
"model.layers.30.self_attn.k_norm.weight": "model.safetensors",
|
| 622 |
+
"model.layers.30.self_attn.k_proj.biases": "model.safetensors",
|
| 623 |
+
"model.layers.30.self_attn.k_proj.scales": "model.safetensors",
|
| 624 |
+
"model.layers.30.self_attn.k_proj.weight": "model.safetensors",
|
| 625 |
+
"model.layers.30.self_attn.o_proj.biases": "model.safetensors",
|
| 626 |
+
"model.layers.30.self_attn.o_proj.scales": "model.safetensors",
|
| 627 |
+
"model.layers.30.self_attn.o_proj.weight": "model.safetensors",
|
| 628 |
+
"model.layers.30.self_attn.q_norm.weight": "model.safetensors",
|
| 629 |
+
"model.layers.30.self_attn.q_proj.biases": "model.safetensors",
|
| 630 |
+
"model.layers.30.self_attn.q_proj.scales": "model.safetensors",
|
| 631 |
+
"model.layers.30.self_attn.q_proj.weight": "model.safetensors",
|
| 632 |
+
"model.layers.30.self_attn.v_proj.biases": "model.safetensors",
|
| 633 |
+
"model.layers.30.self_attn.v_proj.scales": "model.safetensors",
|
| 634 |
+
"model.layers.30.self_attn.v_proj.weight": "model.safetensors",
|
| 635 |
+
"model.layers.31.input_layernorm.weight": "model.safetensors",
|
| 636 |
+
"model.layers.31.mlp.down_proj.biases": "model.safetensors",
|
| 637 |
+
"model.layers.31.mlp.down_proj.scales": "model.safetensors",
|
| 638 |
+
"model.layers.31.mlp.down_proj.weight": "model.safetensors",
|
| 639 |
+
"model.layers.31.mlp.gate_proj.biases": "model.safetensors",
|
| 640 |
+
"model.layers.31.mlp.gate_proj.scales": "model.safetensors",
|
| 641 |
+
"model.layers.31.mlp.gate_proj.weight": "model.safetensors",
|
| 642 |
+
"model.layers.31.mlp.up_proj.biases": "model.safetensors",
|
| 643 |
+
"model.layers.31.mlp.up_proj.scales": "model.safetensors",
|
| 644 |
+
"model.layers.31.mlp.up_proj.weight": "model.safetensors",
|
| 645 |
+
"model.layers.31.post_attention_layernorm.weight": "model.safetensors",
|
| 646 |
+
"model.layers.31.self_attn.k_norm.weight": "model.safetensors",
|
| 647 |
+
"model.layers.31.self_attn.k_proj.biases": "model.safetensors",
|
| 648 |
+
"model.layers.31.self_attn.k_proj.scales": "model.safetensors",
|
| 649 |
+
"model.layers.31.self_attn.k_proj.weight": "model.safetensors",
|
| 650 |
+
"model.layers.31.self_attn.o_proj.biases": "model.safetensors",
|
| 651 |
+
"model.layers.31.self_attn.o_proj.scales": "model.safetensors",
|
| 652 |
+
"model.layers.31.self_attn.o_proj.weight": "model.safetensors",
|
| 653 |
+
"model.layers.31.self_attn.q_norm.weight": "model.safetensors",
|
| 654 |
+
"model.layers.31.self_attn.q_proj.biases": "model.safetensors",
|
| 655 |
+
"model.layers.31.self_attn.q_proj.scales": "model.safetensors",
|
| 656 |
+
"model.layers.31.self_attn.q_proj.weight": "model.safetensors",
|
| 657 |
+
"model.layers.31.self_attn.v_proj.biases": "model.safetensors",
|
| 658 |
+
"model.layers.31.self_attn.v_proj.scales": "model.safetensors",
|
| 659 |
+
"model.layers.31.self_attn.v_proj.weight": "model.safetensors",
|
| 660 |
+
"model.layers.32.input_layernorm.weight": "model.safetensors",
|
| 661 |
+
"model.layers.32.mlp.down_proj.biases": "model.safetensors",
|
| 662 |
+
"model.layers.32.mlp.down_proj.scales": "model.safetensors",
|
| 663 |
+
"model.layers.32.mlp.down_proj.weight": "model.safetensors",
|
| 664 |
+
"model.layers.32.mlp.gate_proj.biases": "model.safetensors",
|
| 665 |
+
"model.layers.32.mlp.gate_proj.scales": "model.safetensors",
|
| 666 |
+
"model.layers.32.mlp.gate_proj.weight": "model.safetensors",
|
| 667 |
+
"model.layers.32.mlp.up_proj.biases": "model.safetensors",
|
| 668 |
+
"model.layers.32.mlp.up_proj.scales": "model.safetensors",
|
| 669 |
+
"model.layers.32.mlp.up_proj.weight": "model.safetensors",
|
| 670 |
+
"model.layers.32.post_attention_layernorm.weight": "model.safetensors",
|
| 671 |
+
"model.layers.32.self_attn.k_norm.weight": "model.safetensors",
|
| 672 |
+
"model.layers.32.self_attn.k_proj.biases": "model.safetensors",
|
| 673 |
+
"model.layers.32.self_attn.k_proj.scales": "model.safetensors",
|
| 674 |
+
"model.layers.32.self_attn.k_proj.weight": "model.safetensors",
|
| 675 |
+
"model.layers.32.self_attn.o_proj.biases": "model.safetensors",
|
| 676 |
+
"model.layers.32.self_attn.o_proj.scales": "model.safetensors",
|
| 677 |
+
"model.layers.32.self_attn.o_proj.weight": "model.safetensors",
|
| 678 |
+
"model.layers.32.self_attn.q_norm.weight": "model.safetensors",
|
| 679 |
+
"model.layers.32.self_attn.q_proj.biases": "model.safetensors",
|
| 680 |
+
"model.layers.32.self_attn.q_proj.scales": "model.safetensors",
|
| 681 |
+
"model.layers.32.self_attn.q_proj.weight": "model.safetensors",
|
| 682 |
+
"model.layers.32.self_attn.v_proj.biases": "model.safetensors",
|
| 683 |
+
"model.layers.32.self_attn.v_proj.scales": "model.safetensors",
|
| 684 |
+
"model.layers.32.self_attn.v_proj.weight": "model.safetensors",
|
| 685 |
+
"model.layers.33.input_layernorm.weight": "model.safetensors",
|
| 686 |
+
"model.layers.33.mlp.down_proj.biases": "model.safetensors",
|
| 687 |
+
"model.layers.33.mlp.down_proj.scales": "model.safetensors",
|
| 688 |
+
"model.layers.33.mlp.down_proj.weight": "model.safetensors",
|
| 689 |
+
"model.layers.33.mlp.gate_proj.biases": "model.safetensors",
|
| 690 |
+
"model.layers.33.mlp.gate_proj.scales": "model.safetensors",
|
| 691 |
+
"model.layers.33.mlp.gate_proj.weight": "model.safetensors",
|
| 692 |
+
"model.layers.33.mlp.up_proj.biases": "model.safetensors",
|
| 693 |
+
"model.layers.33.mlp.up_proj.scales": "model.safetensors",
|
| 694 |
+
"model.layers.33.mlp.up_proj.weight": "model.safetensors",
|
| 695 |
+
"model.layers.33.post_attention_layernorm.weight": "model.safetensors",
|
| 696 |
+
"model.layers.33.self_attn.k_norm.weight": "model.safetensors",
|
| 697 |
+
"model.layers.33.self_attn.k_proj.biases": "model.safetensors",
|
| 698 |
+
"model.layers.33.self_attn.k_proj.scales": "model.safetensors",
|
| 699 |
+
"model.layers.33.self_attn.k_proj.weight": "model.safetensors",
|
| 700 |
+
"model.layers.33.self_attn.o_proj.biases": "model.safetensors",
|
| 701 |
+
"model.layers.33.self_attn.o_proj.scales": "model.safetensors",
|
| 702 |
+
"model.layers.33.self_attn.o_proj.weight": "model.safetensors",
|
| 703 |
+
"model.layers.33.self_attn.q_norm.weight": "model.safetensors",
|
| 704 |
+
"model.layers.33.self_attn.q_proj.biases": "model.safetensors",
|
| 705 |
+
"model.layers.33.self_attn.q_proj.scales": "model.safetensors",
|
| 706 |
+
"model.layers.33.self_attn.q_proj.weight": "model.safetensors",
|
| 707 |
+
"model.layers.33.self_attn.v_proj.biases": "model.safetensors",
|
| 708 |
+
"model.layers.33.self_attn.v_proj.scales": "model.safetensors",
|
| 709 |
+
"model.layers.33.self_attn.v_proj.weight": "model.safetensors",
|
| 710 |
+
"model.layers.34.input_layernorm.weight": "model.safetensors",
|
| 711 |
+
"model.layers.34.mlp.down_proj.biases": "model.safetensors",
|
| 712 |
+
"model.layers.34.mlp.down_proj.scales": "model.safetensors",
|
| 713 |
+
"model.layers.34.mlp.down_proj.weight": "model.safetensors",
|
| 714 |
+
"model.layers.34.mlp.gate_proj.biases": "model.safetensors",
|
| 715 |
+
"model.layers.34.mlp.gate_proj.scales": "model.safetensors",
|
| 716 |
+
"model.layers.34.mlp.gate_proj.weight": "model.safetensors",
|
| 717 |
+
"model.layers.34.mlp.up_proj.biases": "model.safetensors",
|
| 718 |
+
"model.layers.34.mlp.up_proj.scales": "model.safetensors",
|
| 719 |
+
"model.layers.34.mlp.up_proj.weight": "model.safetensors",
|
| 720 |
+
"model.layers.34.post_attention_layernorm.weight": "model.safetensors",
|
| 721 |
+
"model.layers.34.self_attn.k_norm.weight": "model.safetensors",
|
| 722 |
+
"model.layers.34.self_attn.k_proj.biases": "model.safetensors",
|
| 723 |
+
"model.layers.34.self_attn.k_proj.scales": "model.safetensors",
|
| 724 |
+
"model.layers.34.self_attn.k_proj.weight": "model.safetensors",
|
| 725 |
+
"model.layers.34.self_attn.o_proj.biases": "model.safetensors",
|
| 726 |
+
"model.layers.34.self_attn.o_proj.scales": "model.safetensors",
|
| 727 |
+
"model.layers.34.self_attn.o_proj.weight": "model.safetensors",
|
| 728 |
+
"model.layers.34.self_attn.q_norm.weight": "model.safetensors",
|
| 729 |
+
"model.layers.34.self_attn.q_proj.biases": "model.safetensors",
|
| 730 |
+
"model.layers.34.self_attn.q_proj.scales": "model.safetensors",
|
| 731 |
+
"model.layers.34.self_attn.q_proj.weight": "model.safetensors",
|
| 732 |
+
"model.layers.34.self_attn.v_proj.biases": "model.safetensors",
|
| 733 |
+
"model.layers.34.self_attn.v_proj.scales": "model.safetensors",
|
| 734 |
+
"model.layers.34.self_attn.v_proj.weight": "model.safetensors",
|
| 735 |
+
"model.layers.35.input_layernorm.weight": "model.safetensors",
|
| 736 |
+
"model.layers.35.mlp.down_proj.biases": "model.safetensors",
|
| 737 |
+
"model.layers.35.mlp.down_proj.scales": "model.safetensors",
|
| 738 |
+
"model.layers.35.mlp.down_proj.weight": "model.safetensors",
|
| 739 |
+
"model.layers.35.mlp.gate_proj.biases": "model.safetensors",
|
| 740 |
+
"model.layers.35.mlp.gate_proj.scales": "model.safetensors",
|
| 741 |
+
"model.layers.35.mlp.gate_proj.weight": "model.safetensors",
|
| 742 |
+
"model.layers.35.mlp.up_proj.biases": "model.safetensors",
|
| 743 |
+
"model.layers.35.mlp.up_proj.scales": "model.safetensors",
|
| 744 |
+
"model.layers.35.mlp.up_proj.weight": "model.safetensors",
|
| 745 |
+
"model.layers.35.post_attention_layernorm.weight": "model.safetensors",
|
| 746 |
+
"model.layers.35.self_attn.k_norm.weight": "model.safetensors",
|
| 747 |
+
"model.layers.35.self_attn.k_proj.biases": "model.safetensors",
|
| 748 |
+
"model.layers.35.self_attn.k_proj.scales": "model.safetensors",
|
| 749 |
+
"model.layers.35.self_attn.k_proj.weight": "model.safetensors",
|
| 750 |
+
"model.layers.35.self_attn.o_proj.biases": "model.safetensors",
|
| 751 |
+
"model.layers.35.self_attn.o_proj.scales": "model.safetensors",
|
| 752 |
+
"model.layers.35.self_attn.o_proj.weight": "model.safetensors",
|
| 753 |
+
"model.layers.35.self_attn.q_norm.weight": "model.safetensors",
|
| 754 |
+
"model.layers.35.self_attn.q_proj.biases": "model.safetensors",
|
| 755 |
+
"model.layers.35.self_attn.q_proj.scales": "model.safetensors",
|
| 756 |
+
"model.layers.35.self_attn.q_proj.weight": "model.safetensors",
|
| 757 |
+
"model.layers.35.self_attn.v_proj.biases": "model.safetensors",
|
| 758 |
+
"model.layers.35.self_attn.v_proj.scales": "model.safetensors",
|
| 759 |
+
"model.layers.35.self_attn.v_proj.weight": "model.safetensors",
|
| 760 |
+
"model.layers.4.input_layernorm.weight": "model.safetensors",
|
| 761 |
+
"model.layers.4.mlp.down_proj.biases": "model.safetensors",
|
| 762 |
+
"model.layers.4.mlp.down_proj.scales": "model.safetensors",
|
| 763 |
+
"model.layers.4.mlp.down_proj.weight": "model.safetensors",
|
| 764 |
+
"model.layers.4.mlp.gate_proj.biases": "model.safetensors",
|
| 765 |
+
"model.layers.4.mlp.gate_proj.scales": "model.safetensors",
|
| 766 |
+
"model.layers.4.mlp.gate_proj.weight": "model.safetensors",
|
| 767 |
+
"model.layers.4.mlp.up_proj.biases": "model.safetensors",
|
| 768 |
+
"model.layers.4.mlp.up_proj.scales": "model.safetensors",
|
| 769 |
+
"model.layers.4.mlp.up_proj.weight": "model.safetensors",
|
| 770 |
+
"model.layers.4.post_attention_layernorm.weight": "model.safetensors",
|
| 771 |
+
"model.layers.4.self_attn.k_norm.weight": "model.safetensors",
|
| 772 |
+
"model.layers.4.self_attn.k_proj.biases": "model.safetensors",
|
| 773 |
+
"model.layers.4.self_attn.k_proj.scales": "model.safetensors",
|
| 774 |
+
"model.layers.4.self_attn.k_proj.weight": "model.safetensors",
|
| 775 |
+
"model.layers.4.self_attn.o_proj.biases": "model.safetensors",
|
| 776 |
+
"model.layers.4.self_attn.o_proj.scales": "model.safetensors",
|
| 777 |
+
"model.layers.4.self_attn.o_proj.weight": "model.safetensors",
|
| 778 |
+
"model.layers.4.self_attn.q_norm.weight": "model.safetensors",
|
| 779 |
+
"model.layers.4.self_attn.q_proj.biases": "model.safetensors",
|
| 780 |
+
"model.layers.4.self_attn.q_proj.scales": "model.safetensors",
|
| 781 |
+
"model.layers.4.self_attn.q_proj.weight": "model.safetensors",
|
| 782 |
+
"model.layers.4.self_attn.v_proj.biases": "model.safetensors",
|
| 783 |
+
"model.layers.4.self_attn.v_proj.scales": "model.safetensors",
|
| 784 |
+
"model.layers.4.self_attn.v_proj.weight": "model.safetensors",
|
| 785 |
+
"model.layers.5.input_layernorm.weight": "model.safetensors",
|
| 786 |
+
"model.layers.5.mlp.down_proj.biases": "model.safetensors",
|
| 787 |
+
"model.layers.5.mlp.down_proj.scales": "model.safetensors",
|
| 788 |
+
"model.layers.5.mlp.down_proj.weight": "model.safetensors",
|
| 789 |
+
"model.layers.5.mlp.gate_proj.biases": "model.safetensors",
|
| 790 |
+
"model.layers.5.mlp.gate_proj.scales": "model.safetensors",
|
| 791 |
+
"model.layers.5.mlp.gate_proj.weight": "model.safetensors",
|
| 792 |
+
"model.layers.5.mlp.up_proj.biases": "model.safetensors",
|
| 793 |
+
"model.layers.5.mlp.up_proj.scales": "model.safetensors",
|
| 794 |
+
"model.layers.5.mlp.up_proj.weight": "model.safetensors",
|
| 795 |
+
"model.layers.5.post_attention_layernorm.weight": "model.safetensors",
|
| 796 |
+
"model.layers.5.self_attn.k_norm.weight": "model.safetensors",
|
| 797 |
+
"model.layers.5.self_attn.k_proj.biases": "model.safetensors",
|
| 798 |
+
"model.layers.5.self_attn.k_proj.scales": "model.safetensors",
|
| 799 |
+
"model.layers.5.self_attn.k_proj.weight": "model.safetensors",
|
| 800 |
+
"model.layers.5.self_attn.o_proj.biases": "model.safetensors",
|
| 801 |
+
"model.layers.5.self_attn.o_proj.scales": "model.safetensors",
|
| 802 |
+
"model.layers.5.self_attn.o_proj.weight": "model.safetensors",
|
| 803 |
+
"model.layers.5.self_attn.q_norm.weight": "model.safetensors",
|
| 804 |
+
"model.layers.5.self_attn.q_proj.biases": "model.safetensors",
|
| 805 |
+
"model.layers.5.self_attn.q_proj.scales": "model.safetensors",
|
| 806 |
+
"model.layers.5.self_attn.q_proj.weight": "model.safetensors",
|
| 807 |
+
"model.layers.5.self_attn.v_proj.biases": "model.safetensors",
|
| 808 |
+
"model.layers.5.self_attn.v_proj.scales": "model.safetensors",
|
| 809 |
+
"model.layers.5.self_attn.v_proj.weight": "model.safetensors",
|
| 810 |
+
"model.layers.6.input_layernorm.weight": "model.safetensors",
|
| 811 |
+
"model.layers.6.mlp.down_proj.biases": "model.safetensors",
|
| 812 |
+
"model.layers.6.mlp.down_proj.scales": "model.safetensors",
|
| 813 |
+
"model.layers.6.mlp.down_proj.weight": "model.safetensors",
|
| 814 |
+
"model.layers.6.mlp.gate_proj.biases": "model.safetensors",
|
| 815 |
+
"model.layers.6.mlp.gate_proj.scales": "model.safetensors",
|
| 816 |
+
"model.layers.6.mlp.gate_proj.weight": "model.safetensors",
|
| 817 |
+
"model.layers.6.mlp.up_proj.biases": "model.safetensors",
|
| 818 |
+
"model.layers.6.mlp.up_proj.scales": "model.safetensors",
|
| 819 |
+
"model.layers.6.mlp.up_proj.weight": "model.safetensors",
|
| 820 |
+
"model.layers.6.post_attention_layernorm.weight": "model.safetensors",
|
| 821 |
+
"model.layers.6.self_attn.k_norm.weight": "model.safetensors",
|
| 822 |
+
"model.layers.6.self_attn.k_proj.biases": "model.safetensors",
|
| 823 |
+
"model.layers.6.self_attn.k_proj.scales": "model.safetensors",
|
| 824 |
+
"model.layers.6.self_attn.k_proj.weight": "model.safetensors",
|
| 825 |
+
"model.layers.6.self_attn.o_proj.biases": "model.safetensors",
|
| 826 |
+
"model.layers.6.self_attn.o_proj.scales": "model.safetensors",
|
| 827 |
+
"model.layers.6.self_attn.o_proj.weight": "model.safetensors",
|
| 828 |
+
"model.layers.6.self_attn.q_norm.weight": "model.safetensors",
|
| 829 |
+
"model.layers.6.self_attn.q_proj.biases": "model.safetensors",
|
| 830 |
+
"model.layers.6.self_attn.q_proj.scales": "model.safetensors",
|
| 831 |
+
"model.layers.6.self_attn.q_proj.weight": "model.safetensors",
|
| 832 |
+
"model.layers.6.self_attn.v_proj.biases": "model.safetensors",
|
| 833 |
+
"model.layers.6.self_attn.v_proj.scales": "model.safetensors",
|
| 834 |
+
"model.layers.6.self_attn.v_proj.weight": "model.safetensors",
|
| 835 |
+
"model.layers.7.input_layernorm.weight": "model.safetensors",
|
| 836 |
+
"model.layers.7.mlp.down_proj.biases": "model.safetensors",
|
| 837 |
+
"model.layers.7.mlp.down_proj.scales": "model.safetensors",
|
| 838 |
+
"model.layers.7.mlp.down_proj.weight": "model.safetensors",
|
| 839 |
+
"model.layers.7.mlp.gate_proj.biases": "model.safetensors",
|
| 840 |
+
"model.layers.7.mlp.gate_proj.scales": "model.safetensors",
|
| 841 |
+
"model.layers.7.mlp.gate_proj.weight": "model.safetensors",
|
| 842 |
+
"model.layers.7.mlp.up_proj.biases": "model.safetensors",
|
| 843 |
+
"model.layers.7.mlp.up_proj.scales": "model.safetensors",
|
| 844 |
+
"model.layers.7.mlp.up_proj.weight": "model.safetensors",
|
| 845 |
+
"model.layers.7.post_attention_layernorm.weight": "model.safetensors",
|
| 846 |
+
"model.layers.7.self_attn.k_norm.weight": "model.safetensors",
|
| 847 |
+
"model.layers.7.self_attn.k_proj.biases": "model.safetensors",
|
| 848 |
+
"model.layers.7.self_attn.k_proj.scales": "model.safetensors",
|
| 849 |
+
"model.layers.7.self_attn.k_proj.weight": "model.safetensors",
|
| 850 |
+
"model.layers.7.self_attn.o_proj.biases": "model.safetensors",
|
| 851 |
+
"model.layers.7.self_attn.o_proj.scales": "model.safetensors",
|
| 852 |
+
"model.layers.7.self_attn.o_proj.weight": "model.safetensors",
|
| 853 |
+
"model.layers.7.self_attn.q_norm.weight": "model.safetensors",
|
| 854 |
+
"model.layers.7.self_attn.q_proj.biases": "model.safetensors",
|
| 855 |
+
"model.layers.7.self_attn.q_proj.scales": "model.safetensors",
|
| 856 |
+
"model.layers.7.self_attn.q_proj.weight": "model.safetensors",
|
| 857 |
+
"model.layers.7.self_attn.v_proj.biases": "model.safetensors",
|
| 858 |
+
"model.layers.7.self_attn.v_proj.scales": "model.safetensors",
|
| 859 |
+
"model.layers.7.self_attn.v_proj.weight": "model.safetensors",
|
| 860 |
+
"model.layers.8.input_layernorm.weight": "model.safetensors",
|
| 861 |
+
"model.layers.8.mlp.down_proj.biases": "model.safetensors",
|
| 862 |
+
"model.layers.8.mlp.down_proj.scales": "model.safetensors",
|
| 863 |
+
"model.layers.8.mlp.down_proj.weight": "model.safetensors",
|
| 864 |
+
"model.layers.8.mlp.gate_proj.biases": "model.safetensors",
|
| 865 |
+
"model.layers.8.mlp.gate_proj.scales": "model.safetensors",
|
| 866 |
+
"model.layers.8.mlp.gate_proj.weight": "model.safetensors",
|
| 867 |
+
"model.layers.8.mlp.up_proj.biases": "model.safetensors",
|
| 868 |
+
"model.layers.8.mlp.up_proj.scales": "model.safetensors",
|
| 869 |
+
"model.layers.8.mlp.up_proj.weight": "model.safetensors",
|
| 870 |
+
"model.layers.8.post_attention_layernorm.weight": "model.safetensors",
|
| 871 |
+
"model.layers.8.self_attn.k_norm.weight": "model.safetensors",
|
| 872 |
+
"model.layers.8.self_attn.k_proj.biases": "model.safetensors",
|
| 873 |
+
"model.layers.8.self_attn.k_proj.scales": "model.safetensors",
|
| 874 |
+
"model.layers.8.self_attn.k_proj.weight": "model.safetensors",
|
| 875 |
+
"model.layers.8.self_attn.o_proj.biases": "model.safetensors",
|
| 876 |
+
"model.layers.8.self_attn.o_proj.scales": "model.safetensors",
|
| 877 |
+
"model.layers.8.self_attn.o_proj.weight": "model.safetensors",
|
| 878 |
+
"model.layers.8.self_attn.q_norm.weight": "model.safetensors",
|
| 879 |
+
"model.layers.8.self_attn.q_proj.biases": "model.safetensors",
|
| 880 |
+
"model.layers.8.self_attn.q_proj.scales": "model.safetensors",
|
| 881 |
+
"model.layers.8.self_attn.q_proj.weight": "model.safetensors",
|
| 882 |
+
"model.layers.8.self_attn.v_proj.biases": "model.safetensors",
|
| 883 |
+
"model.layers.8.self_attn.v_proj.scales": "model.safetensors",
|
| 884 |
+
"model.layers.8.self_attn.v_proj.weight": "model.safetensors",
|
| 885 |
+
"model.layers.9.input_layernorm.weight": "model.safetensors",
|
| 886 |
+
"model.layers.9.mlp.down_proj.biases": "model.safetensors",
|
| 887 |
+
"model.layers.9.mlp.down_proj.scales": "model.safetensors",
|
| 888 |
+
"model.layers.9.mlp.down_proj.weight": "model.safetensors",
|
| 889 |
+
"model.layers.9.mlp.gate_proj.biases": "model.safetensors",
|
| 890 |
+
"model.layers.9.mlp.gate_proj.scales": "model.safetensors",
|
| 891 |
+
"model.layers.9.mlp.gate_proj.weight": "model.safetensors",
|
| 892 |
+
"model.layers.9.mlp.up_proj.biases": "model.safetensors",
|
| 893 |
+
"model.layers.9.mlp.up_proj.scales": "model.safetensors",
|
| 894 |
+
"model.layers.9.mlp.up_proj.weight": "model.safetensors",
|
| 895 |
+
"model.layers.9.post_attention_layernorm.weight": "model.safetensors",
|
| 896 |
+
"model.layers.9.self_attn.k_norm.weight": "model.safetensors",
|
| 897 |
+
"model.layers.9.self_attn.k_proj.biases": "model.safetensors",
|
| 898 |
+
"model.layers.9.self_attn.k_proj.scales": "model.safetensors",
|
| 899 |
+
"model.layers.9.self_attn.k_proj.weight": "model.safetensors",
|
| 900 |
+
"model.layers.9.self_attn.o_proj.biases": "model.safetensors",
|
| 901 |
+
"model.layers.9.self_attn.o_proj.scales": "model.safetensors",
|
| 902 |
+
"model.layers.9.self_attn.o_proj.weight": "model.safetensors",
|
| 903 |
+
"model.layers.9.self_attn.q_norm.weight": "model.safetensors",
|
| 904 |
+
"model.layers.9.self_attn.q_proj.biases": "model.safetensors",
|
| 905 |
+
"model.layers.9.self_attn.q_proj.scales": "model.safetensors",
|
| 906 |
+
"model.layers.9.self_attn.q_proj.weight": "model.safetensors",
|
| 907 |
+
"model.layers.9.self_attn.v_proj.biases": "model.safetensors",
|
| 908 |
+
"model.layers.9.self_attn.v_proj.scales": "model.safetensors",
|
| 909 |
+
"model.layers.9.self_attn.v_proj.weight": "model.safetensors",
|
| 910 |
+
"model.norm.weight": "model.safetensors"
|
| 911 |
+
}
|
| 912 |
+
}
|
pyproject.toml
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[build-system]
|
| 2 |
+
requires = ["hatchling>=1.27"]
|
| 3 |
+
build-backend = "hatchling.build"
|
| 4 |
+
|
| 5 |
+
[project]
|
| 6 |
+
name = "blum-finance"
|
| 7 |
+
version = "0.1.0"
|
| 8 |
+
description = "Structured local inference and opt-in contribution tools for BLUM Finance."
|
| 9 |
+
requires-python = ">=3.11"
|
| 10 |
+
license = { text = "Apache-2.0" }
|
| 11 |
+
dependencies = [
|
| 12 |
+
"pydantic>=2.10,<3",
|
| 13 |
+
]
|
| 14 |
+
|
| 15 |
+
[project.optional-dependencies]
|
| 16 |
+
inference = [
|
| 17 |
+
"accelerate>=1.2",
|
| 18 |
+
"torch>=2.4",
|
| 19 |
+
"transformers>=4.51",
|
| 20 |
+
]
|
| 21 |
+
mlx = [
|
| 22 |
+
"mlx-lm>=0.31,<0.32",
|
| 23 |
+
]
|
| 24 |
+
hub = [
|
| 25 |
+
"huggingface-hub>=0.30",
|
| 26 |
+
]
|
| 27 |
+
release = [
|
| 28 |
+
"huggingface-hub>=0.30",
|
| 29 |
+
"jinja2>=3.1",
|
| 30 |
+
]
|
| 31 |
+
test = [
|
| 32 |
+
"pytest>=8.3",
|
| 33 |
+
]
|
| 34 |
+
|
| 35 |
+
[project.scripts]
|
| 36 |
+
blum-contribute = "blum_finance.contributions:main"
|
| 37 |
+
|
| 38 |
+
[tool.hatch.build.targets.wheel]
|
| 39 |
+
packages = ["blum_finance"]
|
release_manifest.json
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"schema_version": "blum-finance-release-v1",
|
| 3 |
+
"model_repository": "Italianhype/Blum",
|
| 4 |
+
"base_model": "mlx-community/Qwen3-4B-4bit",
|
| 5 |
+
"base_revision": "4dcb3d101c2a062e5c1d4bb173588c54ea6c4d25",
|
| 6 |
+
"candidate_revision": "ea297ba88ab008e97104b0c118103eef2f8f9ec1",
|
| 7 |
+
"dataset_repository": "Italianhype/Blum-Finance-Reasoning",
|
| 8 |
+
"dataset_revision": "76ad77699d498fc930daf02e452fe3ec8b490f90",
|
| 9 |
+
"runtime": "mlx",
|
| 10 |
+
"promoted": true,
|
| 11 |
+
"evaluation_validated": true,
|
| 12 |
+
"transformers_smoke_test_passed": false,
|
| 13 |
+
"gguf_smoke_test_passed": false,
|
| 14 |
+
"mlx_smoke_test_passed": true,
|
| 15 |
+
"evaluation": {
|
| 16 |
+
"sample_size": 53,
|
| 17 |
+
"base_aggregate_score": 0.0,
|
| 18 |
+
"candidate_aggregate_score": 0.962601,
|
| 19 |
+
"aggregate_delta": 0.962601,
|
| 20 |
+
"no_fabrication": 0.928571,
|
| 21 |
+
"structured_validity": 1.0,
|
| 22 |
+
"calibration_error": 0.0,
|
| 23 |
+
"calibration_sample_size": 0,
|
| 24 |
+
"trace_url": "https://huggingface.co/Italianhype/Blum/blob/main/evaluation/candidate_traces.jsonl"
|
| 25 |
+
},
|
| 26 |
+
"artifact_hashes": {
|
| 27 |
+
"CONTRIBUTING.md": "205a156aeed1dee63816d72f5f564f8b10638094742ef61be3c79228fe8cb048",
|
| 28 |
+
"adapter/adapter_config.json": "81b30269aa85af14db9b69cbda5925151d3b630a67f4510d58b58fc7ad6d2a21",
|
| 29 |
+
"adapter/adapters.safetensors": "0829ae0d42ec0b84236a381dadb327da7edca211777642e549a627bec5c781f3",
|
| 30 |
+
"blum_finance/__init__.py": "9b778a45597bf5526fe9fcdcd945755f7ef66fe96b22c81e900c47d6ddf3198f",
|
| 31 |
+
"blum_finance/contributions.py": "141866a783c3bfd2eff8ab596cceb54134aa0085c00f31cbf14b72870ba316d4",
|
| 32 |
+
"blum_finance/inference.py": "0cccb24358201889125d4291514a9b2b03dcd2ef4e6db9303dcdfef9c8b85714",
|
| 33 |
+
"blum_finance/schemas.py": "b05609b0983fc429893c3d117a0fd8f7262d6c2b701b3ba5d2d31d9141be4c85",
|
| 34 |
+
"chat_template.jinja": "87a2728cb8dc9fe424d624542f6060ec05a1d285ebbec578bb078900e33396b5",
|
| 35 |
+
"config.json": "b5efdcf3b0035a3638e7228dad4d85f5c4a23f156eb7cdb0b44c8366a5d34d9b",
|
| 36 |
+
"evaluation/base_summary.json": "b96a55d2f60bee0792c9e2f17da582611f6c72d9ca0b3d22f05e9818fe43acbd",
|
| 37 |
+
"evaluation/base_traces.jsonl": "bdab7d7d4b490999637c2d9c3dcf6ff5024af2f666fbe6e6bf1568101db83757",
|
| 38 |
+
"evaluation/candidate_generations.jsonl": "ab842f804b7d9bdacb0a371ad4ecdbcdc41234dff36d47561a12b98aa2430bd7",
|
| 39 |
+
"evaluation/candidate_summary.json": "1077e0f5927f76825259d4ed5501e2256a216c09532756bc0d51c47f9ba0418f",
|
| 40 |
+
"evaluation/candidate_traces.jsonl": "e686d76e12a53e4b76ba04ec56acb77c2c6fb683a692c351505ad7744197bde9",
|
| 41 |
+
"evaluation/mlx_smoke_test.json": "5b713d2fb8dccb7a6f4b12c0fa22e78dd45ca30a031e3755fd7d283a610e7939",
|
| 42 |
+
"evaluation/promotion_decision.json": "7c2c6ebd6f0dcadbdc38c44fc32daeb93aa61d16f21d8deb06c7267981c273da",
|
| 43 |
+
"model.safetensors": "52270d4195b046ec5cfbacdf6c6435cd5f3f154a9cf20b4646dab45f87a196d1",
|
| 44 |
+
"model.safetensors.index.json": "388d811b8b7c2608dd04cce1bcb04a8bf715d19b42790894e6d3427ff429a777",
|
| 45 |
+
"pyproject.toml": "11cc19acf391c1cc0cbf8ad2871a69589c1129148f72f14772bb6cbf552850f4",
|
| 46 |
+
"tokenizer.json": "be75606093db2094d7cd20f3c2f385c212750648bd6ea4fb2bf507a6a4c55506",
|
| 47 |
+
"tokenizer_config.json": "d93ac1a2c7adb9ad022f354d822f1f0f57e32e62ef2989e902782d6ab896acfe",
|
| 48 |
+
"training/sanitize_dataset.py": "04b02d62cb4515cc1f69c2b91958e76d12b3555398406fcfeb9a5032704de343",
|
| 49 |
+
"training_manifest.json": "5e1af1aee55c937a192467fc629868cb60d4144f323a92026e2da5b2ac759bf8"
|
| 50 |
+
}
|
| 51 |
+
}
|
tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:be75606093db2094d7cd20f3c2f385c212750648bd6ea4fb2bf507a6a4c55506
|
| 3 |
+
size 11422650
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_prefix_space": false,
|
| 3 |
+
"backend": "tokenizers",
|
| 4 |
+
"bos_token": null,
|
| 5 |
+
"clean_up_tokenization_spaces": false,
|
| 6 |
+
"eos_token": "<|im_end|>",
|
| 7 |
+
"errors": "replace",
|
| 8 |
+
"is_local": true,
|
| 9 |
+
"local_files_only": false,
|
| 10 |
+
"model_max_length": 131072,
|
| 11 |
+
"pad_token": "<|endoftext|>",
|
| 12 |
+
"split_special_tokens": false,
|
| 13 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 14 |
+
"tool_parser_type": "json_tools",
|
| 15 |
+
"unk_token": null
|
| 16 |
+
}
|
training/sanitize_dataset.py
ADDED
|
@@ -0,0 +1,127 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from __future__ import annotations
|
| 2 |
+
|
| 3 |
+
import argparse
|
| 4 |
+
from copy import deepcopy
|
| 5 |
+
import json
|
| 6 |
+
from pathlib import Path
|
| 7 |
+
import re
|
| 8 |
+
from typing import Any
|
| 9 |
+
|
| 10 |
+
|
| 11 |
+
NUMBER_PATTERN = re.compile(r"(?<![A-Za-z])[-+]?\d+(?:\.\d+)?%?")
|
| 12 |
+
REASONING_FIELDS = {
|
| 13 |
+
"thesis",
|
| 14 |
+
"bull_case",
|
| 15 |
+
"bear_case",
|
| 16 |
+
"risks",
|
| 17 |
+
"invalidation_conditions",
|
| 18 |
+
"what_would_change_the_view",
|
| 19 |
+
}
|
| 20 |
+
|
| 21 |
+
|
| 22 |
+
def sanitize_example(example: dict[str, Any]) -> tuple[dict[str, Any], int]:
|
| 23 |
+
"""Remove output numbers that were unavailable in the model input."""
|
| 24 |
+
result = deepcopy(example)
|
| 25 |
+
messages = result.get("messages") or []
|
| 26 |
+
if len(messages) < 2 or messages[-1].get("role") != "assistant":
|
| 27 |
+
return result, 0
|
| 28 |
+
input_text = json.dumps(messages[:-1], ensure_ascii=False, sort_keys=True)
|
| 29 |
+
allowed_numbers = set(NUMBER_PATTERN.findall(input_text))
|
| 30 |
+
try:
|
| 31 |
+
response = json.loads(messages[-1]["content"])
|
| 32 |
+
except (TypeError, json.JSONDecodeError):
|
| 33 |
+
return result, 0
|
| 34 |
+
|
| 35 |
+
changes = 0
|
| 36 |
+
for field in REASONING_FIELDS:
|
| 37 |
+
value = response.get(field)
|
| 38 |
+
sanitized, field_changes = sanitize_value(value, allowed_numbers)
|
| 39 |
+
response[field] = sanitized
|
| 40 |
+
changes += field_changes
|
| 41 |
+
confidence = response.get("confidence")
|
| 42 |
+
if isinstance(confidence, (int, float)) and confidence > 70:
|
| 43 |
+
response["confidence"] = 70
|
| 44 |
+
changes += 1
|
| 45 |
+
messages[-1]["content"] = json.dumps(
|
| 46 |
+
response,
|
| 47 |
+
ensure_ascii=False,
|
| 48 |
+
sort_keys=True,
|
| 49 |
+
)
|
| 50 |
+
return result, changes
|
| 51 |
+
|
| 52 |
+
|
| 53 |
+
def sanitize_value(value: Any, allowed_numbers: set[str]) -> tuple[Any, int]:
|
| 54 |
+
if isinstance(value, list):
|
| 55 |
+
output: list[Any] = []
|
| 56 |
+
changes = 0
|
| 57 |
+
for item in value:
|
| 58 |
+
sanitized, item_changes = sanitize_value(item, allowed_numbers)
|
| 59 |
+
output.append(sanitized)
|
| 60 |
+
changes += item_changes
|
| 61 |
+
return output, changes
|
| 62 |
+
if not isinstance(value, str):
|
| 63 |
+
return value, 0
|
| 64 |
+
|
| 65 |
+
changes = 0
|
| 66 |
+
|
| 67 |
+
def replace(match: re.Match[str]) -> str:
|
| 68 |
+
nonlocal changes
|
| 69 |
+
token = match.group(0)
|
| 70 |
+
if token in allowed_numbers:
|
| 71 |
+
return token
|
| 72 |
+
changes += 1
|
| 73 |
+
return "the observed level"
|
| 74 |
+
|
| 75 |
+
return NUMBER_PATTERN.sub(replace, value), changes
|
| 76 |
+
|
| 77 |
+
|
| 78 |
+
def sanitize_file(
|
| 79 |
+
source: Path,
|
| 80 |
+
*,
|
| 81 |
+
source_output: Path,
|
| 82 |
+
mlx_output: Path,
|
| 83 |
+
) -> dict[str, int]:
|
| 84 |
+
examples = [
|
| 85 |
+
json.loads(line)
|
| 86 |
+
for line in source.read_text(encoding="utf-8").splitlines()
|
| 87 |
+
if line.strip()
|
| 88 |
+
]
|
| 89 |
+
sanitized_rows: list[dict[str, Any]] = []
|
| 90 |
+
changes = 0
|
| 91 |
+
for example in examples:
|
| 92 |
+
sanitized, row_changes = sanitize_example(example)
|
| 93 |
+
sanitized_rows.append(sanitized)
|
| 94 |
+
changes += row_changes
|
| 95 |
+
write_jsonl(source_output, sanitized_rows)
|
| 96 |
+
write_jsonl(
|
| 97 |
+
mlx_output,
|
| 98 |
+
[{"messages": row["messages"]} for row in sanitized_rows],
|
| 99 |
+
)
|
| 100 |
+
return {"examples": len(sanitized_rows), "numeric_replacements": changes}
|
| 101 |
+
|
| 102 |
+
|
| 103 |
+
def write_jsonl(path: Path, rows: list[dict[str, Any]]) -> None:
|
| 104 |
+
path.parent.mkdir(parents=True, exist_ok=True)
|
| 105 |
+
with path.open("w", encoding="utf-8") as handle:
|
| 106 |
+
for row in rows:
|
| 107 |
+
handle.write(json.dumps(row, ensure_ascii=False, sort_keys=True) + "\n")
|
| 108 |
+
|
| 109 |
+
|
| 110 |
+
def main() -> None:
|
| 111 |
+
parser = argparse.ArgumentParser(
|
| 112 |
+
description="Create an evidence-bound BLUM Finance training derivative."
|
| 113 |
+
)
|
| 114 |
+
parser.add_argument("--source", type=Path, required=True)
|
| 115 |
+
parser.add_argument("--source-output", type=Path, required=True)
|
| 116 |
+
parser.add_argument("--mlx-output", type=Path, required=True)
|
| 117 |
+
args = parser.parse_args()
|
| 118 |
+
result = sanitize_file(
|
| 119 |
+
args.source,
|
| 120 |
+
source_output=args.source_output,
|
| 121 |
+
mlx_output=args.mlx_output,
|
| 122 |
+
)
|
| 123 |
+
print(json.dumps(result, indent=2, sort_keys=True))
|
| 124 |
+
|
| 125 |
+
|
| 126 |
+
if __name__ == "__main__":
|
| 127 |
+
main()
|
training_manifest.json
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"base_model": "mlx-community/Qwen3-4B-4bit",
|
| 3 |
+
"base_revision": "4dcb3d101c2a062e5c1d4bb173588c54ea6c4d25",
|
| 4 |
+
"candidate_revision": "ea297ba88ab008e97104b0c118103eef2f8f9ec1",
|
| 5 |
+
"dataset_content_sha256": "4cd60a2a44eabc185f6eceba5e2619aeb11ec437b89fe3cacc5cff240e52deaf",
|
| 6 |
+
"dataset_repository": "Italianhype/Blum-Finance-Reasoning",
|
| 7 |
+
"dataset_revision": "76ad77699d498fc930daf02e452fe3ec8b490f90",
|
| 8 |
+
"early_stopping": {
|
| 9 |
+
"iteration": 20,
|
| 10 |
+
"reason": "Validation loss saturated; stopped at the first configured checkpoint to limit memorization.",
|
| 11 |
+
"validation_loss": 0.02
|
| 12 |
+
},
|
| 13 |
+
"evaluation": {
|
| 14 |
+
"base_summary_sha256": "b96a55d2f60bee0792c9e2f17da582611f6c72d9ca0b3d22f05e9818fe43acbd",
|
| 15 |
+
"candidate_summary_sha256": "1077e0f5927f76825259d4ed5501e2256a216c09532756bc0d51c47f9ba0418f",
|
| 16 |
+
"mlx_smoke_test_sha256": "5b713d2fb8dccb7a6f4b12c0fa22e78dd45ca30a031e3755fd7d283a610e7939",
|
| 17 |
+
"promotion_decision_sha256": "7c2c6ebd6f0dcadbdc38c44fc32daeb93aa61d16f21d8deb06c7267981c273da"
|
| 18 |
+
},
|
| 19 |
+
"evidence_bound_derivative": {
|
| 20 |
+
"numeric_and_confidence_replacements": 3095,
|
| 21 |
+
"policy": "Replace assistant-output numbers absent from point-in-time input and cap unvalidated confidence at 70; input evidence and split membership remain unchanged.",
|
| 22 |
+
"test_sha256": "dcdceea08675e9de4be82e0bfa9aee47f2c10af8a51eb2c9b74548b64803265b",
|
| 23 |
+
"train_sha256": "86f92a5e04cfe19a8c3cc26c4332785b67cd2b2397680c5729ac5753546e863a",
|
| 24 |
+
"validation_sha256": "fdb8d49c13cea279b8a76f8123c9e0a89ec51bfef964fef3f87c4f0ab3954cbc"
|
| 25 |
+
},
|
| 26 |
+
"method": {
|
| 27 |
+
"batch_size": 1,
|
| 28 |
+
"layers": 16,
|
| 29 |
+
"learning_rate": 0.0001,
|
| 30 |
+
"mask_prompt": true,
|
| 31 |
+
"max_seq_length": 1024,
|
| 32 |
+
"rank": 8,
|
| 33 |
+
"seed": 20260728,
|
| 34 |
+
"type": "QLoRA"
|
| 35 |
+
},
|
| 36 |
+
"model_name": "BLUM Finance 4B",
|
| 37 |
+
"runtime": {
|
| 38 |
+
"hardware": "Apple M3 Pro 18 GB",
|
| 39 |
+
"mlx": "0.32.0",
|
| 40 |
+
"mlx_lm": "0.31.3"
|
| 41 |
+
},
|
| 42 |
+
"schema_version": "blum-finance-mlx-training-v1",
|
| 43 |
+
"test": {
|
| 44 |
+
"calibration_labeled_outcomes": 0,
|
| 45 |
+
"samples": 53,
|
| 46 |
+
"test_loss": null,
|
| 47 |
+
"test_perplexity": null
|
| 48 |
+
}
|
| 49 |
+
}
|