Text Generation
Transformers
Safetensors
Russian
English
llama
causal-lm
gqa
research
mossez
text-generation-inference
Instructions to use mossez-systems/Mossez-100M-Base with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mossez-systems/Mossez-100M-Base with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="mossez-systems/Mossez-100M-Base")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("mossez-systems/Mossez-100M-Base") model = AutoModelForCausalLM.from_pretrained("mossez-systems/Mossez-100M-Base", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use mossez-systems/Mossez-100M-Base with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "mossez-systems/Mossez-100M-Base" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "mossez-systems/Mossez-100M-Base", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/mossez-systems/Mossez-100M-Base
- SGLang
How to use mossez-systems/Mossez-100M-Base with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "mossez-systems/Mossez-100M-Base" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "mossez-systems/Mossez-100M-Base", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "mossez-systems/Mossez-100M-Base" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "mossez-systems/Mossez-100M-Base", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use mossez-systems/Mossez-100M-Base with Docker Model Runner:
docker model run hf.co/mossez-systems/Mossez-100M-Base
Release Mossez-100M-Base
Browse files- LICENSE +201 -0
- NOTICE.md +70 -0
- README.md +230 -0
- SHA256SUMS +9 -0
- config.json +30 -0
- generation_config.json +10 -0
- model.safetensors +3 -0
- special_tokens_map.json +30 -0
- tokenizer.json +0 -0
- tokenizer_config.json +44 -0
LICENSE
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Apache License
|
| 2 |
+
Version 2.0, January 2004
|
| 3 |
+
http://www.apache.org/licenses/
|
| 4 |
+
|
| 5 |
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
| 6 |
+
|
| 7 |
+
1. Definitions.
|
| 8 |
+
|
| 9 |
+
"License" shall mean the terms and conditions for use, reproduction,
|
| 10 |
+
and distribution as defined by Sections 1 through 9 of this document.
|
| 11 |
+
|
| 12 |
+
"Licensor" shall mean the copyright owner or entity authorized by
|
| 13 |
+
the copyright owner that is granting the License.
|
| 14 |
+
|
| 15 |
+
"Legal Entity" shall mean the union of the acting entity and all
|
| 16 |
+
other entities that control, are controlled by, or are under common
|
| 17 |
+
control with that entity. For the purposes of this definition,
|
| 18 |
+
"control" means (i) the power, direct or indirect, to cause the
|
| 19 |
+
direction or management of such entity, whether by contract or
|
| 20 |
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
| 21 |
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
| 22 |
+
|
| 23 |
+
"You" (or "Your") shall mean an individual or Legal Entity
|
| 24 |
+
exercising permissions granted by this License.
|
| 25 |
+
|
| 26 |
+
"Source" form shall mean the preferred form for making modifications,
|
| 27 |
+
including but not limited to software source code, documentation
|
| 28 |
+
source, and configuration files.
|
| 29 |
+
|
| 30 |
+
"Object" form shall mean any form resulting from mechanical
|
| 31 |
+
transformation or translation of a Source form, including but
|
| 32 |
+
not limited to compiled object code, generated documentation,
|
| 33 |
+
and conversions to other media types.
|
| 34 |
+
|
| 35 |
+
"Work" shall mean the work of authorship, whether in Source or
|
| 36 |
+
Object form, made available under the License, as indicated by a
|
| 37 |
+
copyright notice that is included in or attached to the work
|
| 38 |
+
(an example is provided in the Appendix below).
|
| 39 |
+
|
| 40 |
+
"Derivative Works" shall mean any work, whether in Source or Object
|
| 41 |
+
form, that is based on (or derived from) the Work and for which the
|
| 42 |
+
editorial revisions, annotations, elaborations, or other modifications
|
| 43 |
+
represent, as a whole, an original work of authorship. For the purposes
|
| 44 |
+
of this License, Derivative Works shall not include works that remain
|
| 45 |
+
separable from, or merely link (or bind by name) to the interfaces of,
|
| 46 |
+
the Work and Derivative Works thereof.
|
| 47 |
+
|
| 48 |
+
"Contribution" shall mean any work of authorship, including
|
| 49 |
+
the original version of the Work and any modifications or additions
|
| 50 |
+
to that Work or Derivative Works thereof, that is intentionally
|
| 51 |
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
| 52 |
+
or by an individual or Legal Entity authorized to submit on behalf of
|
| 53 |
+
the copyright owner. For the purposes of this definition, "submitted"
|
| 54 |
+
means any form of electronic, verbal, or written communication sent
|
| 55 |
+
to the Licensor or its representatives, including but not limited to
|
| 56 |
+
communication on electronic mailing lists, source code control systems,
|
| 57 |
+
and issue tracking systems that are managed by, or on behalf of, the
|
| 58 |
+
Licensor for the purpose of discussing and improving the Work, but
|
| 59 |
+
excluding communication that is conspicuously marked or otherwise
|
| 60 |
+
designated in writing by the copyright owner as "Not a Contribution."
|
| 61 |
+
|
| 62 |
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
| 63 |
+
on behalf of whom a Contribution has been received by Licensor and
|
| 64 |
+
subsequently incorporated within the Work.
|
| 65 |
+
|
| 66 |
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
| 67 |
+
this License, each Contributor hereby grants to You a perpetual,
|
| 68 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
| 69 |
+
copyright license to reproduce, prepare Derivative Works of,
|
| 70 |
+
publicly display, publicly perform, sublicense, and distribute the
|
| 71 |
+
Work and such Derivative Works in Source or Object form.
|
| 72 |
+
|
| 73 |
+
3. Grant of Patent License. Subject to the terms and conditions of
|
| 74 |
+
this License, each Contributor hereby grants to You a perpetual,
|
| 75 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
| 76 |
+
(except as stated in this section) patent license to make, have made,
|
| 77 |
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
| 78 |
+
where such license applies only to those patent claims licensable
|
| 79 |
+
by such Contributor that are necessarily infringed by their
|
| 80 |
+
Contribution(s) alone or by combination of their Contribution(s)
|
| 81 |
+
with the Work to which such Contribution(s) was submitted. If You
|
| 82 |
+
institute patent litigation against any entity (including a
|
| 83 |
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
| 84 |
+
or a Contribution incorporated within the Work constitutes direct
|
| 85 |
+
or contributory patent infringement, then any patent licenses
|
| 86 |
+
granted to You under this License for that Work shall terminate
|
| 87 |
+
as of the date such litigation is filed.
|
| 88 |
+
|
| 89 |
+
4. Redistribution. You may reproduce and distribute copies of the
|
| 90 |
+
Work or Derivative Works thereof in any medium, with or without
|
| 91 |
+
modifications, and in Source or Object form, provided that You
|
| 92 |
+
meet the following conditions:
|
| 93 |
+
|
| 94 |
+
(a) You must give any other recipients of the Work or
|
| 95 |
+
Derivative Works a copy of this License; and
|
| 96 |
+
|
| 97 |
+
(b) You must cause any modified files to carry prominent notices
|
| 98 |
+
stating that You changed the files; and
|
| 99 |
+
|
| 100 |
+
(c) You must retain, in the Source form of any Derivative Works
|
| 101 |
+
that You distribute, all copyright, patent, trademark, and
|
| 102 |
+
attribution notices from the Source form of the Work,
|
| 103 |
+
excluding those notices that do not pertain to any part of
|
| 104 |
+
the Derivative Works; and
|
| 105 |
+
|
| 106 |
+
(d) If the Work includes a "NOTICE" text file as part of its
|
| 107 |
+
distribution, then any Derivative Works that You distribute must
|
| 108 |
+
include a readable copy of the attribution notices contained
|
| 109 |
+
within such NOTICE file, excluding those notices that do not
|
| 110 |
+
pertain to any part of the Derivative Works, in at least one
|
| 111 |
+
of the following places: within a NOTICE text file distributed
|
| 112 |
+
as part of the Derivative Works; within the Source form or
|
| 113 |
+
documentation, if provided along with the Derivative Works; or,
|
| 114 |
+
within a display generated by the Derivative Works, if and
|
| 115 |
+
wherever such third-party notices normally appear. The contents
|
| 116 |
+
of the NOTICE file are for informational purposes only and
|
| 117 |
+
do not modify the License. You may add Your own attribution
|
| 118 |
+
notices within Derivative Works that You distribute, alongside
|
| 119 |
+
or as an addendum to the NOTICE text from the Work, provided
|
| 120 |
+
that such additional attribution notices cannot be construed
|
| 121 |
+
as modifying the License.
|
| 122 |
+
|
| 123 |
+
You may add Your own copyright statement to Your modifications and
|
| 124 |
+
may provide additional or different license terms and conditions
|
| 125 |
+
for use, reproduction, or distribution of Your modifications, or
|
| 126 |
+
for any such Derivative Works as a whole, provided Your use,
|
| 127 |
+
reproduction, and distribution of the Work otherwise complies with
|
| 128 |
+
the conditions stated in this License.
|
| 129 |
+
|
| 130 |
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
| 131 |
+
any Contribution intentionally submitted for inclusion in the Work
|
| 132 |
+
by You to the Licensor shall be under the terms and conditions of
|
| 133 |
+
this License, without any additional terms or conditions.
|
| 134 |
+
Notwithstanding the above, nothing herein shall supersede or modify
|
| 135 |
+
the terms of any separate license agreement you may have executed
|
| 136 |
+
with Licensor regarding such Contributions.
|
| 137 |
+
|
| 138 |
+
6. Trademarks. This License does not grant permission to use the trade
|
| 139 |
+
names, trademarks, service marks, or product names of the Licensor,
|
| 140 |
+
except as required for reasonable and customary use in describing the
|
| 141 |
+
origin of the Work and reproducing the content of the NOTICE file.
|
| 142 |
+
|
| 143 |
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
| 144 |
+
agreed to in writing, Licensor provides the Work (and each
|
| 145 |
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
| 146 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
| 147 |
+
implied, including, without limitation, any warranties or conditions
|
| 148 |
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
| 149 |
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
| 150 |
+
appropriateness of using or redistributing the Work and assume any
|
| 151 |
+
risks associated with Your exercise of permissions under this License.
|
| 152 |
+
|
| 153 |
+
8. Limitation of Liability. In no event and under no legal theory,
|
| 154 |
+
whether in tort (including negligence), contract, or otherwise,
|
| 155 |
+
unless required by applicable law (such as deliberate and grossly
|
| 156 |
+
negligent acts) or agreed to in writing, shall any Contributor be
|
| 157 |
+
liable to You for damages, including any direct, indirect, special,
|
| 158 |
+
incidental, or consequential damages of any character arising as a
|
| 159 |
+
result of this License or out of the use or inability to use the
|
| 160 |
+
Work (including but not limited to damages for loss of goodwill,
|
| 161 |
+
work stoppage, computer failure or malfunction, or any and all
|
| 162 |
+
other commercial damages or losses), even if such Contributor
|
| 163 |
+
has been advised of the possibility of such damages.
|
| 164 |
+
|
| 165 |
+
9. Accepting Warranty or Additional Liability. While redistributing
|
| 166 |
+
the Work or Derivative Works thereof, You may choose to offer,
|
| 167 |
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
| 168 |
+
or other liability obligations and/or rights consistent with this
|
| 169 |
+
License. However, in accepting such obligations, You may act only
|
| 170 |
+
on Your own behalf and on Your sole responsibility, not on behalf
|
| 171 |
+
of any other Contributor, and only if You agree to indemnify,
|
| 172 |
+
defend, and hold each Contributor harmless for any liability
|
| 173 |
+
incurred by, or claims asserted against, such Contributor by reason
|
| 174 |
+
of your accepting any such warranty or additional liability.
|
| 175 |
+
|
| 176 |
+
END OF TERMS AND CONDITIONS
|
| 177 |
+
|
| 178 |
+
APPENDIX: How to apply the Apache License to your work.
|
| 179 |
+
|
| 180 |
+
To apply the Apache License to your work, attach the following
|
| 181 |
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
| 182 |
+
replaced with your own identifying information. (Don't include
|
| 183 |
+
the brackets!) The text should be enclosed in the appropriate
|
| 184 |
+
comment syntax for the file format. We also recommend that a
|
| 185 |
+
file or class name and description of purpose be included on the
|
| 186 |
+
same "printed page" as the copyright notice for easier
|
| 187 |
+
identification within third-party archives.
|
| 188 |
+
|
| 189 |
+
Copyright [yyyy] [name of copyright owner]
|
| 190 |
+
|
| 191 |
+
Licensed under the Apache License, Version 2.0 (the "License");
|
| 192 |
+
you may not use this file except in compliance with the License.
|
| 193 |
+
You may obtain a copy of the License at
|
| 194 |
+
|
| 195 |
+
http://www.apache.org/licenses/LICENSE-2.0
|
| 196 |
+
|
| 197 |
+
Unless required by applicable law or agreed to in writing, software
|
| 198 |
+
distributed under the License is distributed on an "AS IS" BASIS,
|
| 199 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 200 |
+
See the License for the specific language governing permissions and
|
| 201 |
+
limitations under the License.
|
NOTICE.md
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Mossez-100M-Base
|
| 2 |
+
Copyright 2026 Mossez Systems
|
| 3 |
+
|
| 4 |
+
This product includes model weights and accompanying original materials
|
| 5 |
+
developed by Mossez Systems.
|
| 6 |
+
|
| 7 |
+
TRAINING DATA ATTRIBUTION
|
| 8 |
+
|
| 9 |
+
The model was trained on processed subsets derived in part from the
|
| 10 |
+
following third-party data sources. The source datasets and underlying
|
| 11 |
+
documents are not redistributed in this model repository.
|
| 12 |
+
|
| 13 |
+
1. FineWeb2
|
| 14 |
+
|
| 15 |
+
Project: HuggingFaceFW/fineweb-2
|
| 16 |
+
Source: https://huggingface.co/datasets/HuggingFaceFW/fineweb-2
|
| 17 |
+
License: Open Data Commons Attribution License (ODC-By) v1.0
|
| 18 |
+
Additional terms: Common Crawl Terms of Use may apply.
|
| 19 |
+
|
| 20 |
+
FineWeb2 was created by the Hugging Face FineWeb team and contributors.
|
| 21 |
+
See the dataset card for authorship, methodology, citations, limitations,
|
| 22 |
+
opt-out information, and the complete licensing notice.
|
| 23 |
+
|
| 24 |
+
2. FineWeb / FineWeb-Edu-derived English data
|
| 25 |
+
|
| 26 |
+
Project: HuggingFaceFW/fineweb
|
| 27 |
+
Source: https://huggingface.co/datasets/HuggingFaceFW/fineweb
|
| 28 |
+
License: Open Data Commons Attribution License (ODC-By) v1.0
|
| 29 |
+
Additional terms: Common Crawl Terms of Use may apply.
|
| 30 |
+
|
| 31 |
+
FineWeb was created by the Hugging Face FineWeb team and contributors.
|
| 32 |
+
See the dataset card for authorship, methodology, citations, limitations,
|
| 33 |
+
opt-out information, and the complete licensing notice.
|
| 34 |
+
|
| 35 |
+
3. Wikimedia Wikipedia
|
| 36 |
+
|
| 37 |
+
Project: wikimedia/wikipedia
|
| 38 |
+
Source: https://huggingface.co/datasets/wikimedia/wikipedia
|
| 39 |
+
Configurations used: 20231101.ru and 20231101.en
|
| 40 |
+
Dataset revision used:
|
| 41 |
+
b04c8d1ceb2f5cd4588862100d08de323dccfbaa
|
| 42 |
+
|
| 43 |
+
Wikipedia text is made available under the applicable Wikimedia
|
| 44 |
+
licensing terms, including the Creative Commons Attribution-ShareAlike
|
| 45 |
+
license and the GNU Free Documentation License. Individual media and
|
| 46 |
+
other materials may use different licenses. Consult the source article
|
| 47 |
+
and Wikimedia licensing pages for details.
|
| 48 |
+
|
| 49 |
+
4. Common Crawl
|
| 50 |
+
|
| 51 |
+
FineWeb and FineWeb2 are derived from Common Crawl snapshots.
|
| 52 |
+
Source: https://commoncrawl.org/
|
| 53 |
+
Use of Common Crawl data is subject to Common Crawl's terms and the
|
| 54 |
+
rights associated with the original source documents.
|
| 55 |
+
|
| 56 |
+
The licenses and notices above apply to the respective third-party
|
| 57 |
+
datasets and source materials. They are separate from the Apache License
|
| 58 |
+
2.0 applied by Mossez Systems to the model weights and original repository
|
| 59 |
+
materials.
|
| 60 |
+
|
| 61 |
+
No dataset creator, source-site operator, Wikimedia contributor, Common
|
| 62 |
+
Crawl, Hugging Face, PyTorch, or Transformers contributor endorses
|
| 63 |
+
Mossez Systems or Mossez-100M-Base merely because their work or services
|
| 64 |
+
were used during model development.
|
| 65 |
+
|
| 66 |
+
"Mossez" and related product names may be trademarks of Mossez Systems.
|
| 67 |
+
Third-party names and trademarks belong to their respective owners.
|
| 68 |
+
|
| 69 |
+
This NOTICE file is informational and does not modify the terms of the
|
| 70 |
+
Apache License 2.0 or any third-party license.
|
README.md
ADDED
|
@@ -0,0 +1,230 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
language:
|
| 4 |
+
- ru
|
| 5 |
+
- en
|
| 6 |
+
library_name: transformers
|
| 7 |
+
pipeline_tag: text-generation
|
| 8 |
+
datasets:
|
| 9 |
+
- HuggingFaceFW/fineweb-2
|
| 10 |
+
- HuggingFaceFW/fineweb
|
| 11 |
+
- wikimedia/wikipedia
|
| 12 |
+
tags:
|
| 13 |
+
- causal-lm
|
| 14 |
+
- base-model
|
| 15 |
+
- llama
|
| 16 |
+
- gqa
|
| 17 |
+
- russian
|
| 18 |
+
- english
|
| 19 |
+
- research
|
| 20 |
+
- mossez
|
| 21 |
+
---
|
| 22 |
+
|
| 23 |
+
# Mossez-100M-Base
|
| 24 |
+
|
| 25 |
+
**Mossez-100M-Base** is a compact decoder-only causal language model developed by Mossez Systems for research, local inference, and experimentation with Russian–English language modeling.
|
| 26 |
+
|
| 27 |
+
The released weights include the model's initial web pretraining followed by a quality-focused continued-pretraining stage. The continued-pretraining stage is part of the model's training history; the public model name remains **Mossez-100M-Base**.
|
| 28 |
+
|
| 29 |
+
> This is a base model, not a chat or instruction-following model.
|
| 30 |
+
|
| 31 |
+
## Model details
|
| 32 |
+
|
| 33 |
+
| Property | Value |
|
| 34 |
+
|---|---:|
|
| 35 |
+
| Parameters | 100,092,672 |
|
| 36 |
+
| Architecture | Llama-compatible decoder-only Transformer |
|
| 37 |
+
| Layers | 12 |
|
| 38 |
+
| Hidden size | 768 |
|
| 39 |
+
| Query attention heads | 12 |
|
| 40 |
+
| Key/value heads | 4 |
|
| 41 |
+
| Intermediate size | 2,048 |
|
| 42 |
+
| Context length | 1,024 tokens |
|
| 43 |
+
| Vocabulary | 32,000 |
|
| 44 |
+
| Tokenizer | Byte-level BPE |
|
| 45 |
+
| Activation | SwiGLU / SiLU |
|
| 46 |
+
| Normalization | RMSNorm |
|
| 47 |
+
| Position encoding | RoPE |
|
| 48 |
+
| Embeddings | Tied input/output embeddings |
|
| 49 |
+
| Primary languages | Russian, English |
|
| 50 |
+
| Weight format | Safetensors, FP32 |
|
| 51 |
+
|
| 52 |
+
## Intended use
|
| 53 |
+
|
| 54 |
+
The model is intended for:
|
| 55 |
+
|
| 56 |
+
- research on compact causal language models;
|
| 57 |
+
- local text completion;
|
| 58 |
+
- tokenizer, inference, and post-training experiments;
|
| 59 |
+
- use as a base checkpoint for continued pretraining or supervised fine-tuning;
|
| 60 |
+
- educational and reproducibility work.
|
| 61 |
+
|
| 62 |
+
The model is **not** intended to be used as a factual authority, production assistant, safety-critical system, or autonomous decision-maker.
|
| 63 |
+
|
| 64 |
+
## Training
|
| 65 |
+
|
| 66 |
+
### Initial pretraining
|
| 67 |
+
|
| 68 |
+
The initial model was trained on a Russian–English web corpus:
|
| 69 |
+
|
| 70 |
+
- approximately 85% Russian FineWeb2-HQ data;
|
| 71 |
+
- approximately 15% English FineWeb-Edu data;
|
| 72 |
+
- 2,000,027,648 training-token exposure;
|
| 73 |
+
- 30,518 optimizer steps;
|
| 74 |
+
- 65,536 effective tokens per optimizer step;
|
| 75 |
+
- sequence length 1,024.
|
| 76 |
+
|
| 77 |
+
### Quality continued pretraining
|
| 78 |
+
|
| 79 |
+
The final public weights received an additional 100,007,936-token quality-focused continued-pretraining stage:
|
| 80 |
+
|
| 81 |
+
| Source | Training tokens |
|
| 82 |
+
|---|---:|
|
| 83 |
+
| Russian Wikipedia | 60,004,352 |
|
| 84 |
+
| English Wikipedia | 25,001,984 |
|
| 85 |
+
| Replay from the original corpus | 15,001,600 |
|
| 86 |
+
| **Total** | **100,007,936** |
|
| 87 |
+
|
| 88 |
+
Wikipedia source configurations:
|
| 89 |
+
|
| 90 |
+
- `wikimedia/wikipedia`, `20231101.ru`;
|
| 91 |
+
- `wikimedia/wikipedia`, `20231101.en`;
|
| 92 |
+
- pinned dataset revision: `b04c8d1ceb2f5cd4588862100d08de323dccfbaa`.
|
| 93 |
+
|
| 94 |
+
The Wikipedia corpus was normalized, filtered, exactly deduplicated, near-deduplicated, and split at source-article level to prevent chunks from the same article crossing train, validation, and test sets.
|
| 95 |
+
|
| 96 |
+
Continued-pretraining configuration:
|
| 97 |
+
|
| 98 |
+
- 1,526 optimizer steps;
|
| 99 |
+
- effective batch: 65,536 tokens;
|
| 100 |
+
- maximum learning rate: `5e-5`;
|
| 101 |
+
- 50 warmup steps;
|
| 102 |
+
- cosine decay;
|
| 103 |
+
- AdamW;
|
| 104 |
+
- gradient checkpointing;
|
| 105 |
+
- final selected checkpoint: step 1,526.
|
| 106 |
+
|
| 107 |
+
### Total training exposure
|
| 108 |
+
|
| 109 |
+
The combined training exposure was:
|
| 110 |
+
|
| 111 |
+
**2,100,035,584 tokens**
|
| 112 |
+
|
| 113 |
+
This number is token exposure, not a claim of unique corpus size.
|
| 114 |
+
|
| 115 |
+
## Evaluation
|
| 116 |
+
|
| 117 |
+
Perplexity was measured with sequence length 1,024. Lower is better.
|
| 118 |
+
|
| 119 |
+
| Evaluation set | Before quality CPT | Mossez-100M-Base | Relative PPL improvement |
|
| 120 |
+
|---|---:|---:|---:|
|
| 121 |
+
| Wikipedia validation | 19.5363 | 13.6782 | 29.99% |
|
| 122 |
+
| Independent Russian test | 18.0996 | 12.8478 | 29.02% |
|
| 123 |
+
| Independent English test | 22.4920 | 16.0280 | 28.74% |
|
| 124 |
+
| Independent combined test | 19.3179 | 13.7286 | 28.93% |
|
| 125 |
+
| Original web-domain validation | 20.0903 | 20.7899 | -3.48% |
|
| 126 |
+
|
| 127 |
+
The quality-focused stage substantially improved performance on held-out encyclopedic text while causing a modest regression on the original web-domain validation set.
|
| 128 |
+
|
| 129 |
+
The independent combined test contained 2,048 blocks, or 2,097,152 tokens:
|
| 130 |
+
|
| 131 |
+
- Russian: 1,434 blocks;
|
| 132 |
+
- English: 614 blocks.
|
| 133 |
+
|
| 134 |
+
## Usage
|
| 135 |
+
|
| 136 |
+
Install a recent version of `transformers`, `torch`, and `safetensors`.
|
| 137 |
+
|
| 138 |
+
```python
|
| 139 |
+
import torch
|
| 140 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 141 |
+
|
| 142 |
+
model_id = "mossez-systems/Mossez-100M-Base"
|
| 143 |
+
|
| 144 |
+
device = "cuda" if torch.cuda.is_available() else "cpu"
|
| 145 |
+
dtype = torch.float16 if device == "cuda" else torch.float32
|
| 146 |
+
|
| 147 |
+
tokenizer = AutoTokenizer.from_pretrained(model_id)
|
| 148 |
+
model = AutoModelForCausalLM.from_pretrained(
|
| 149 |
+
model_id,
|
| 150 |
+
dtype=dtype,
|
| 151 |
+
)
|
| 152 |
+
model.to(device)
|
| 153 |
+
model.eval()
|
| 154 |
+
|
| 155 |
+
prompt = "Искусственный интеллект — область информатики, которая"
|
| 156 |
+
inputs = tokenizer(
|
| 157 |
+
prompt,
|
| 158 |
+
return_tensors="pt",
|
| 159 |
+
add_special_tokens=False,
|
| 160 |
+
).to(device)
|
| 161 |
+
|
| 162 |
+
with torch.inference_mode():
|
| 163 |
+
output = model.generate(
|
| 164 |
+
**inputs,
|
| 165 |
+
do_sample=True,
|
| 166 |
+
temperature=0.8,
|
| 167 |
+
top_p=0.9,
|
| 168 |
+
top_k=50,
|
| 169 |
+
repetition_penalty=1.08,
|
| 170 |
+
max_new_tokens=96,
|
| 171 |
+
pad_token_id=tokenizer.eos_token_id,
|
| 172 |
+
)
|
| 173 |
+
|
| 174 |
+
print(tokenizer.decode(output[0], skip_special_tokens=True))
|
| 175 |
+
```
|
| 176 |
+
|
| 177 |
+
### Prompting notes
|
| 178 |
+
|
| 179 |
+
This is a base completion model. It does not have a chat template and was not trained to follow `system`, `user`, and `assistant` roles. Sentence beginnings and document-style prefixes work better than chat-style prompts.
|
| 180 |
+
|
| 181 |
+
Greedy decoding is useful for diagnostics but is more likely to collapse into repetition. Sampling does not guarantee factuality.
|
| 182 |
+
|
| 183 |
+
## Limitations
|
| 184 |
+
|
| 185 |
+
Mossez-100M-Base is a small research model and has significant limitations:
|
| 186 |
+
|
| 187 |
+
- it can hallucinate names, dates, places, quotations, and causal relationships;
|
| 188 |
+
- it may confuse entities or continue a prompt as if it referred to another subject;
|
| 189 |
+
- it can repeat words, phrases, headings, or entire semantic patterns;
|
| 190 |
+
- it may generate fluent but false encyclopedic-looking text;
|
| 191 |
+
- it is not instruction tuned and may ignore requests or formatting constraints;
|
| 192 |
+
- its 1,024-token context window is small;
|
| 193 |
+
- Russian performance is generally stronger than English performance;
|
| 194 |
+
- its knowledge is not current and should not be treated as a reliable snapshot of the world;
|
| 195 |
+
- it may reproduce biases, errors, personal information, or undesirable content present in public web data;
|
| 196 |
+
- its outputs have not been comprehensively evaluated for safety.
|
| 197 |
+
|
| 198 |
+
Do not rely on the model for medical, legal, financial, security, or other high-stakes decisions.
|
| 199 |
+
|
| 200 |
+
## Training data and attribution
|
| 201 |
+
|
| 202 |
+
The model was trained on processed subsets derived from:
|
| 203 |
+
|
| 204 |
+
- [FineWeb2](https://huggingface.co/datasets/HuggingFaceFW/fineweb-2), released under ODC-By 1.0 and subject to Common Crawl terms;
|
| 205 |
+
- [FineWeb](https://huggingface.co/datasets/HuggingFaceFW/fineweb), released under ODC-By 1.0 and subject to Common Crawl terms;
|
| 206 |
+
- [Wikimedia Wikipedia](https://huggingface.co/datasets/wikimedia/wikipedia), whose source text is available under the applicable Wikimedia licensing terms, including CC BY-SA and GFDL.
|
| 207 |
+
|
| 208 |
+
The original datasets are not redistributed in this model repository. Dataset licenses and source-site terms remain applicable to the underlying data. See `NOTICE.md` for attribution information.
|
| 209 |
+
|
| 210 |
+
## License
|
| 211 |
+
|
| 212 |
+
The model weights and original repository materials are released under the Apache License 2.0. Third-party datasets, source text, names, and trademarks remain subject to their own licenses and terms.
|
| 213 |
+
|
| 214 |
+
See `LICENSE` and `NOTICE.md`.
|
| 215 |
+
|
| 216 |
+
## Citation
|
| 217 |
+
|
| 218 |
+
```bibtex
|
| 219 |
+
@software{mossez_100m_base_2026,
|
| 220 |
+
author = {{Mossez Systems}},
|
| 221 |
+
title = {Mossez-100M-Base},
|
| 222 |
+
year = {2026},
|
| 223 |
+
publisher = {Hugging Face},
|
| 224 |
+
url = {https://huggingface.co/mossez-systems/Mossez-100M-Base}
|
| 225 |
+
}
|
| 226 |
+
```
|
| 227 |
+
|
| 228 |
+
## Acknowledgements
|
| 229 |
+
|
| 230 |
+
This work uses resources made available by Hugging Face, Common Crawl, Wikimedia contributors, the PyTorch project, and the Transformers project. Their inclusion here does not imply endorsement of Mossez Systems or this model.
|
SHA256SUMS
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
8173d5c29b4f956d532781d2b86e4e30f83e6b7878dce18c919451d6ba707c90 LICENSE
|
| 2 |
+
8e180cfd59df3a24bd15ffd727cd57d844d2a8f38eafcca3e8236b514baaeb70 NOTICE.md
|
| 3 |
+
298388108faf99baf7fc7ded2ed13edd682843a2607a4e1f43e1a170b24ed7ee README.md
|
| 4 |
+
b6cba12011b98568443cf802552efa85fee7d063eb4987ec029ddfcdac153059 config.json
|
| 5 |
+
fd7dc91f46abe151dacc53a938170ae579ac0ecdc16767f2eb3a8ec9ce6c0215 generation_config.json
|
| 6 |
+
02d9bcad7edadb85ac49828a16d871afc754d5cf06d39d1884396a3d7ae8041d model.safetensors
|
| 7 |
+
358c249e2fb29060c6b73157d428853b0c48710deffc8ee670ab1013880946c9 special_tokens_map.json
|
| 8 |
+
541a8d183b201f4b3b965f5ed3c1fb745243025fe7de6f930e56fa902b8f0fd3 tokenizer_config.json
|
| 9 |
+
bd2201b1a953b1b761c416bbc8037a3323cb9d30002849f3fdb2604971b294b7 tokenizer.json
|
config.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"LlamaForCausalLM"
|
| 4 |
+
],
|
| 5 |
+
"attention_bias": false,
|
| 6 |
+
"attention_dropout": 0.0,
|
| 7 |
+
"bos_token_id": 1,
|
| 8 |
+
"dtype": "float32",
|
| 9 |
+
"eos_token_id": 2,
|
| 10 |
+
"head_dim": 64,
|
| 11 |
+
"hidden_act": "silu",
|
| 12 |
+
"hidden_size": 768,
|
| 13 |
+
"initializer_range": 0.02,
|
| 14 |
+
"intermediate_size": 2048,
|
| 15 |
+
"max_position_embeddings": 1024,
|
| 16 |
+
"mlp_bias": false,
|
| 17 |
+
"model_type": "llama",
|
| 18 |
+
"num_attention_heads": 12,
|
| 19 |
+
"num_hidden_layers": 12,
|
| 20 |
+
"num_key_value_heads": 4,
|
| 21 |
+
"pad_token_id": 3,
|
| 22 |
+
"pretraining_tp": 1,
|
| 23 |
+
"rms_norm_eps": 1e-05,
|
| 24 |
+
"rope_scaling": null,
|
| 25 |
+
"rope_theta": 10000.0,
|
| 26 |
+
"tie_word_embeddings": true,
|
| 27 |
+
"transformers_version": "4.56.2",
|
| 28 |
+
"use_cache": true,
|
| 29 |
+
"vocab_size": 32000
|
| 30 |
+
}
|
generation_config.json
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_from_model_config": true,
|
| 3 |
+
"bos_token_id": 1,
|
| 4 |
+
"eos_token_id": [
|
| 5 |
+
2
|
| 6 |
+
],
|
| 7 |
+
"pad_token_id": 3,
|
| 8 |
+
"transformers_version": "4.56.2",
|
| 9 |
+
"use_cache": false
|
| 10 |
+
}
|
model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:02d9bcad7edadb85ac49828a16d871afc754d5cf06d39d1884396a3d7ae8041d
|
| 3 |
+
size 400382912
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token": {
|
| 3 |
+
"content": "<s>",
|
| 4 |
+
"lstrip": false,
|
| 5 |
+
"normalized": false,
|
| 6 |
+
"rstrip": false,
|
| 7 |
+
"single_word": false
|
| 8 |
+
},
|
| 9 |
+
"eos_token": {
|
| 10 |
+
"content": "</s>",
|
| 11 |
+
"lstrip": false,
|
| 12 |
+
"normalized": false,
|
| 13 |
+
"rstrip": false,
|
| 14 |
+
"single_word": false
|
| 15 |
+
},
|
| 16 |
+
"pad_token": {
|
| 17 |
+
"content": "<pad>",
|
| 18 |
+
"lstrip": false,
|
| 19 |
+
"normalized": false,
|
| 20 |
+
"rstrip": false,
|
| 21 |
+
"single_word": false
|
| 22 |
+
},
|
| 23 |
+
"unk_token": {
|
| 24 |
+
"content": "<unk>",
|
| 25 |
+
"lstrip": false,
|
| 26 |
+
"normalized": false,
|
| 27 |
+
"rstrip": false,
|
| 28 |
+
"single_word": false
|
| 29 |
+
}
|
| 30 |
+
}
|
tokenizer.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"added_tokens_decoder": {
|
| 3 |
+
"0": {
|
| 4 |
+
"content": "<unk>",
|
| 5 |
+
"lstrip": false,
|
| 6 |
+
"normalized": false,
|
| 7 |
+
"rstrip": false,
|
| 8 |
+
"single_word": false,
|
| 9 |
+
"special": true
|
| 10 |
+
},
|
| 11 |
+
"1": {
|
| 12 |
+
"content": "<s>",
|
| 13 |
+
"lstrip": false,
|
| 14 |
+
"normalized": false,
|
| 15 |
+
"rstrip": false,
|
| 16 |
+
"single_word": false,
|
| 17 |
+
"special": true
|
| 18 |
+
},
|
| 19 |
+
"2": {
|
| 20 |
+
"content": "</s>",
|
| 21 |
+
"lstrip": false,
|
| 22 |
+
"normalized": false,
|
| 23 |
+
"rstrip": false,
|
| 24 |
+
"single_word": false,
|
| 25 |
+
"special": true
|
| 26 |
+
},
|
| 27 |
+
"3": {
|
| 28 |
+
"content": "<pad>",
|
| 29 |
+
"lstrip": false,
|
| 30 |
+
"normalized": false,
|
| 31 |
+
"rstrip": false,
|
| 32 |
+
"single_word": false,
|
| 33 |
+
"special": true
|
| 34 |
+
}
|
| 35 |
+
},
|
| 36 |
+
"bos_token": "<s>",
|
| 37 |
+
"clean_up_tokenization_spaces": false,
|
| 38 |
+
"eos_token": "</s>",
|
| 39 |
+
"extra_special_tokens": {},
|
| 40 |
+
"model_max_length": 1024,
|
| 41 |
+
"pad_token": "<pad>",
|
| 42 |
+
"tokenizer_class": "PreTrainedTokenizerFast",
|
| 43 |
+
"unk_token": "<unk>"
|
| 44 |
+
}
|