mav23 commited on
Commit
85dac76
1 Parent(s): 0307b7b

Upload folder using huggingface_hub

Browse files
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ japanese-stablelm-base-gamma-7b.Q4_0.gguf filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,105 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+
24
+ # Japanese Stable LM Base Gamma 7B
25
+
26
+ ## Model Description
27
+
28
+ This is a 7B-parameter decoder-only language model with a focus on maximizing Japanese language modeling performance and Japanese downstream task performance.
29
+ We conducted continued pretraining using Japanese data on the English language model, [Mistral-7B-v0.1](https://huggingface.co/mistralai/Mistral-7B-v0.1), to transfer the model's knowledge and capabilities to Japanese.
30
+
31
+ *If you are looking for an instruction-following model, check [Japanese Stable LM Instruct Gamma 7B](https://huggingface.co/stabilityai/japanese-stablelm-instruct-gamma-7b)*.
32
+
33
+ *If you are in search of a smaller model, please check [Japanese StableLM-3B-4E1T Base](https://huggingface.co/stabilityai/japanese-stablelm-3b-4e1t-base).*
34
+
35
+
36
+ ## Usage
37
+
38
+ Ensure you are using Transformers 4.34.0 or newer.
39
+
40
+ ```python
41
+ from transformers import AutoModelForCausalLM, AutoTokenizer
42
+ tokenizer = AutoTokenizer.from_pretrained("stabilityai/japanese-stablelm-base-gamma-7b")
43
+ model = AutoModelForCausalLM.from_pretrained(
44
+ "stabilityai/japanese-stablelm-base-gamma-7b",
45
+ torch_dtype="auto",
46
+ )
47
+ model.cuda()
48
+ inputs = tokenizer("AI で科学研究を加速するには、", return_tensors="pt").to("cuda")
49
+ tokens = model.generate(
50
+ **inputs,
51
+ max_new_tokens=64,
52
+ temperature=0.75,
53
+ top_p=0.95,
54
+ do_sample=True,
55
+ )
56
+ print(tokenizer.decode(tokens[0], skip_special_tokens=True))
57
+ ```
58
+
59
+ ## Model Details
60
+
61
+ * **Developed by**: [Stability AI](https://stability.ai/)
62
+ * **Model type**: `Japanese Stable LM Base Gamma 7B` model is an auto-regressive language model based on the transformer decoder architecture.
63
+ * **Language(s)**: Japanese
64
+ * **License**: This model is licensed under [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0).
65
+ * **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.
66
+
67
+ ### Model Architecture
68
+
69
+ For details, please see Mistral AI's [paper](https://arxiv.org/abs/2310.06825) and [release blog post](https://mistral.ai/news/announcing-mistral-7b/).
70
+
71
+
72
+ ### Training Dataset
73
+
74
+ Around 100B tokens from a mixture of the following corpora were used for the continued pretraining.
75
+
76
+ - [Japanese/English Wikipedia](https://dumps.wikimedia.org/other/cirrussearch)
77
+ - [Japanese mc4](https://huggingface.co/datasets/mc4)
78
+ - [Japanese CC-100](http://data.statmt.org/cc-100/ja.txt.xz)
79
+ - [Japanese OSCAR](https://oscar-project.github.io/documentation/)
80
+ - [SlimPajama](https://huggingface.co/datasets/cerebras/SlimPajama-627B) without the Books3 subset
81
+
82
+
83
+ ## Use and Limitations
84
+
85
+ ### Intended Use
86
+
87
+ 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.
88
+
89
+ ### Limitations and bias
90
+
91
+ 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.
92
+
93
+ ## Credits
94
+
95
+ The continued pre-training was carried out by [Takuya Akiba](https://huggingface.co/iwiwi).
96
+ 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).
97
+
98
+
99
+ ## Acknowledgements
100
+
101
+ This model is based on Mistral-7B-v0.1 released by the Mistral AI team. We are grateful to the Mistral AI team for providing such an excellent base model.
102
+
103
+ 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.
104
+
105
+ 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.
japanese-stablelm-base-gamma-7b.Q4_0.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:57a8dfe9887d5438a6432c18d229743de154a9b213961310a5ec33121df056f8
3
+ size 4108917024