Text Generation
GGUF
Japanese
japanese-stablelm
causal-lm
5 papers
maddes8cht commited on
Commit
958e7bd
1 Parent(s): 1bd2b7e

"Update README.md"

Browse files
Files changed (1) hide show
  1. README.md +174 -0
README.md ADDED
@@ -0,0 +1,174 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - japanese-stablelm
5
+ - causal-lm
6
+ pipeline_tag: text-generation
7
+ datasets:
8
+ - wikipedia
9
+ - mc4
10
+ - cc100
11
+ - oscar-corpus/OSCAR-2301
12
+ - oscar-corpus/OSCAR-2201
13
+ - cerebras/SlimPajama-627B
14
+ language:
15
+ - ja
16
+ extra_gated_fields:
17
+ Name: text
18
+ Email: text
19
+ Country: text
20
+ Organization or Affiliation: text
21
+ I allow Stability AI to contact me about information related to its models and research: checkbox
22
+ ---
23
+ [![banner](https://maddes8cht.github.io/assets/buttons/Huggingface-banner.jpg)]()
24
+
25
+ I'm constantly enhancing these model descriptions to provide you with the most relevant and comprehensive information
26
+
27
+ # japanese-stablelm-3b-4e1t-base - GGUF
28
+ - Model creator: [stabilityai](https://huggingface.co/stabilityai)
29
+ - Original model: [japanese-stablelm-3b-4e1t-base](https://huggingface.co/stabilityai/japanese-stablelm-3b-4e1t-base)
30
+
31
+ # StableLM
32
+ This is a Model based on StableLM.
33
+ Stablelm is a familiy of Language Models by Stability AI.
34
+
35
+ ## Note:
36
+ Current (as of 2023-11-15) implementations of Llama.cpp only support GPU offloading up to 34 Layers with these StableLM Models.
37
+ The model will crash immediately if -ngl is larger than 34.
38
+ The model works fine however without any gpu acceleration.
39
+
40
+
41
+
42
+ # About GGUF format
43
+
44
+ `gguf` is the current file format used by the [`ggml`](https://github.com/ggerganov/ggml) library.
45
+ A growing list of Software is using it and can therefore use this model.
46
+ The core project making use of the ggml library is the [llama.cpp](https://github.com/ggerganov/llama.cpp) project by Georgi Gerganov
47
+
48
+ # Quantization variants
49
+
50
+ There is a bunch of quantized files available to cater to your specific needs. Here's how to choose the best option for you:
51
+
52
+ # Legacy quants
53
+
54
+ Q4_0, Q4_1, Q5_0, Q5_1 and Q8 are `legacy` quantization types.
55
+ Nevertheless, they are fully supported, as there are several circumstances that cause certain model not to be compatible with the modern K-quants.
56
+ ## Note:
57
+ Now there's a new option to use K-quants even for previously 'incompatible' models, although this involves some fallback solution that makes them not *real* K-quants. More details can be found in affected model descriptions.
58
+ (This mainly refers to Falcon 7b and Starcoder models)
59
+
60
+ # K-quants
61
+
62
+ K-quants are designed with the idea that different levels of quantization in specific parts of the model can optimize performance, file size, and memory load.
63
+ So, if possible, use K-quants.
64
+ With a Q6_K, you'll likely find it challenging to discern a quality difference from the original model - ask your model two times the same question and you may encounter bigger quality differences.
65
+
66
+
67
+
68
+
69
+ ---
70
+
71
+ # Original Model Card:
72
+ # Japanese StableLM-3B-4E1T Base
73
+
74
+ ## Model Description
75
+
76
+ This is a 3B-parameter decoder-only language model with a focus on maximizing Japanese language modeling performance and Japanese downstream task performance.
77
+ We conducted continued pretraining using Japanese data on the English language model, [StableLM-3B-4E1T](https://huggingface.co/stabilityai/stablelm-3b-4e1t/), to transfer the model's knowledge and capabilities to Japanese.
78
+
79
+ *If you are looking for an instruction-following model, please check [Japanese StableLM-3B-4E1T Instruct](https://huggingface.co/stabilityai/japanese-stablelm-3b-4e1t-instruct)*.
80
+
81
+ *If you are in search of a larger model, please check [Japanese Stable LM Base Gamma 7B](https://huggingface.co/stabilityai/japanese-stablelm-base-gamma-7b)*.
82
+
83
+
84
+ ## Usage
85
+
86
+ ```python
87
+ from transformers import AutoModelForCausalLM, AutoTokenizer
88
+ tokenizer = AutoTokenizer.from_pretrained("stabilityai/japanese-stablelm-3b-4e1t-base")
89
+ model = AutoModelForCausalLM.from_pretrained(
90
+ "stabilityai/japanese-stablelm-3b-4e1t-base",
91
+ trust_remote_code=True,
92
+ torch_dtype="auto",
93
+ )
94
+ model.cuda()
95
+ inputs = tokenizer("AI で科学研究を加速するには、", return_tensors="pt").to("cuda")
96
+ tokens = model.generate(
97
+ **inputs,
98
+ max_new_tokens=64,
99
+ temperature=0.75,
100
+ top_p=0.95,
101
+ do_sample=True,
102
+ )
103
+ print(tokenizer.decode(tokens[0], skip_special_tokens=True))
104
+ ```
105
+
106
+ ## Model Details
107
+
108
+ * **Developed by**: [Stability AI](https://stability.ai/)
109
+ * **Model type**: `Japanese StableLM-3B-4E1T Base` model is an auto-regressive language models based on the transformer decoder architecture.
110
+ * **Language(s)**: Japanese
111
+ * **License**: This model is licensed under [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0).
112
+ * **Contact**: For questions and comments about the model, please join [Stable Community Japan](https://discord.gg/StableJP). For future announcements / information about Stability AI models, research, and events, please follow https://twitter.com/StabilityAI_JP.
113
+
114
+ ### Model Architecture
115
+
116
+ The model is a decoder-only transformer similar to the LLaMA ([Touvron et al., 2023](https://arxiv.org/abs/2307.09288)) architecture with the following modifications:
117
+
118
+ | Parameters | Hidden Size | Layers | Heads | Sequence Length |
119
+ |----------------|-------------|--------|-------|-----------------|
120
+ | 2,795,443,200 | 2560 | 32 | 32 | 4096 |
121
+
122
+ * **Position Embeddings**: Rotary Position Embeddings ([Su et al., 2021](https://arxiv.org/abs/2104.09864)) applied to the first 25% of head embedding dimensions for improved throughput following [Black et al. (2022)](https://arxiv.org/pdf/2204.06745.pdf).
123
+ * **Normalization**: LayerNorm ([Ba et al., 2016](https://arxiv.org/abs/1607.06450)) with learned bias terms as opposed to RMSNorm ([Zhang & Sennrich, 2019](https://arxiv.org/abs/1910.07467)).
124
+ * **Tokenizer**: GPT-NeoX ([Black et al., 2022](https://arxiv.org/abs/2204.06745)).
125
+
126
+
127
+ ### Training Dataset
128
+
129
+ Around 100B tokens from a mixture of the following corpora were used for the continued pretraining.
130
+
131
+ - [Japanese/English Wikipedia](https://dumps.wikimedia.org/other/cirrussearch)
132
+ - [Japanese mc4](https://huggingface.co/datasets/mc4)
133
+ - [Japanese CC-100](http://data.statmt.org/cc-100/ja.txt.xz)
134
+ - [Japanese OSCAR](https://oscar-project.github.io/documentation/)
135
+ - [SlimPajama](https://huggingface.co/datasets/cerebras/SlimPajama-627B) without the Books3 subset
136
+
137
+
138
+ ## Use and Limitations
139
+
140
+ ### Intended Use
141
+
142
+ The model is intended to be used by all individuals as a foundational model for application-specific fine-tuning without strict limitations on commercial use.
143
+
144
+ ### Limitations and bias
145
+
146
+ The pre-training dataset may have contained offensive or inappropriate content even after applying data cleansing filters which can be reflected in the model-generated text. We recommend users exercise reasonable caution when using these models in production systems. Do not use the model for any applications that may cause harm or distress to individuals or groups.
147
+
148
+ ## Credits
149
+
150
+ The continued pre-training was carried out by [Takuya Akiba](https://huggingface.co/iwiwi).
151
+ Other aspects, including data preparation and evaluation, were handled by the Language Team of Stability AI Japan, notably [Meng Lee](https://huggingface.co/leemeng), [Fujiki Nakamura](https://huggingface.co/fujiki), [Makoto Shing](https://huggingface.co/mkshing), [Paul McCann](https://huggingface.co/polm-stability), and [Naoki Orii](https://huggingface.co/mrorii).
152
+
153
+ ## Acknowledgements
154
+
155
+ We are grateful for the contributions of the EleutherAI Polyglot-JA team in helping us to collect a large amount of pre-training data in Japanese. Polyglot-JA members includes Hyunwoong Ko (Project Lead), Fujiki Nakamura (originally started this project when he commited to the Polyglot team), Yunho Mo, Minji Jung, KeunSeok Im, and Su-Kyeong Jang.
156
+
157
+ We are also appreciative of [AI Novelist/Sta (Bit192, Inc.)](https://ai-novel.com/index.php) and the numerous contributors from [Stable Community Japan](https://discord.gg/VPrcE475HB) for assisting us in gathering a large amount of high-quality Japanese textual data for model training.
158
+
159
+ ***End of original Model File***
160
+ ---
161
+
162
+
163
+ ## Please consider to support my work
164
+ **Coming Soon:** I'm in the process of launching a sponsorship/crowdfunding campaign for my work. I'm evaluating Kickstarter, Patreon, or the new GitHub Sponsors platform, and I am hoping for some support and contribution to the continued availability of these kind of models. Your support will enable me to provide even more valuable resources and maintain the models you rely on. Your patience and ongoing support are greatly appreciated as I work to make this page an even more valuable resource for the community.
165
+
166
+ <center>
167
+
168
+ [![GitHub](https://maddes8cht.github.io/assets/buttons/github-io-button.png)](https://maddes8cht.github.io)
169
+ [![Stack Exchange](https://stackexchange.com/users/flair/26485911.png)](https://stackexchange.com/users/26485911)
170
+ [![GitHub](https://maddes8cht.github.io/assets/buttons/github-button.png)](https://github.com/maddes8cht)
171
+ [![HuggingFace](https://maddes8cht.github.io/assets/buttons/huggingface-button.png)](https://huggingface.co/maddes8cht)
172
+ [![Twitter](https://maddes8cht.github.io/assets/buttons/twitter-button.png)](https://twitter.com/maddes1966)
173
+
174
+ </center>