psinger commited on
Commit
b704baf
1 Parent(s): 6f74324

Upload model card

Browse files
Files changed (1) hide show
  1. README.md +179 -0
README.md ADDED
@@ -0,0 +1,179 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ library_name: transformers
5
+ tags:
6
+ - gpt
7
+ - llm
8
+ - large language model
9
+ - h2o-llmstudio
10
+ inference: false
11
+ thumbnail: https://h2o.ai/etc.clientlibs/h2o/clientlibs/clientlib-site/resources/images/favicon.ico
12
+ ---
13
+ # Model Card
14
+ ## Summary
15
+
16
+ This model was trained using [H2O LLM Studio](https://github.com/h2oai/h2o-llmstudio).
17
+ - Base model: [EleutherAI/gpt-neox-20b](https://huggingface.co/EleutherAI/gpt-neox-20b)
18
+
19
+
20
+ ## Usage
21
+
22
+ To use the model with the `transformers` library on a machine with GPUs, first make sure you have the `transformers` and `torch` libraries installed.
23
+
24
+ ```bash
25
+ pip install transformers==4.28.1
26
+ pip install torch==2.0.0
27
+ ```
28
+
29
+ ```python
30
+ import torch
31
+ from transformers import pipeline
32
+
33
+ generate_text = pipeline(
34
+ model="h2oai/h2ogpt-gm-oasst1-multilang-1024-20b",
35
+ torch_dtype=torch.float16,
36
+ trust_remote_code=True,
37
+ device_map={"": "cuda:0"},
38
+ )
39
+
40
+ res = generate_text(
41
+ "Why is drinking water so healthy?",
42
+ min_new_tokens=2,
43
+ max_new_tokens=256,
44
+ do_sample=False,
45
+ num_beams=2,
46
+ temperature=float(0.3),
47
+ repetition_penalty=float(1.2),
48
+ )
49
+ print(res[0]["generated_text"])
50
+ ```
51
+
52
+ You can print a sample prompt after the preprocessing step to see how it is feed to the tokenizer:
53
+
54
+ ```python
55
+ print(generate_text.preprocess("Why is drinking water so healthy?")["prompt_text"])
56
+ ```
57
+
58
+ ```bash
59
+ <|prompt|>Why is drinking water so healthy?<|endoftext|><|answer|>
60
+ ```
61
+
62
+ Alternatively, if you prefer to not use `trust_remote_code=True` you can download [h2oai_pipeline.py](h2oai_pipeline.py), store it alongside your notebook, and construct the pipeline yourself from the loaded model and tokenizer:
63
+
64
+
65
+ ```python
66
+ import torch
67
+ from h2oai_pipeline import H2OTextGenerationPipeline
68
+ from transformers import AutoModelForCausalLM, AutoTokenizer
69
+
70
+ tokenizer = AutoTokenizer.from_pretrained(
71
+ "h2oai/h2ogpt-gm-oasst1-multilang-1024-20b",
72
+ padding_side="left"
73
+ )
74
+ model = AutoModelForCausalLM.from_pretrained(
75
+ "h2oai/h2ogpt-gm-oasst1-multilang-1024-20b",
76
+ torch_dtype=torch.float16,
77
+ device_map={"": "cuda:0"}
78
+ )
79
+ generate_text = H2OTextGenerationPipeline(model=model, tokenizer=tokenizer)
80
+
81
+ res = generate_text(
82
+ "Why is drinking water so healthy?",
83
+ min_new_tokens=2,
84
+ max_new_tokens=256,
85
+ do_sample=False,
86
+ num_beams=2,
87
+ temperature=float(0.3),
88
+ repetition_penalty=float(1.2),
89
+ )
90
+ print(res[0]["generated_text"])
91
+ ```
92
+
93
+
94
+ You may also construct the pipeline from the loaded model and tokenizer yourself and consider the preprocessing steps:
95
+
96
+ ```python
97
+ from transformers import AutoModelForCausalLM, AutoTokenizer
98
+
99
+
100
+ model_name = "h2oai/h2ogpt-gm-oasst1-multilang-1024-20b" # either local folder or huggingface model name
101
+ # Important: The prompt needs to be in the same format the model was trained with.
102
+ # You can find an example prompt in the experiment logs.
103
+ prompt = "<|prompt|>How are you?<|endoftext|><|answer|>"
104
+
105
+ tokenizer = AutoTokenizer.from_pretrained(model_name)
106
+ model = AutoModelForCausalLM.from_pretrained(model_name)
107
+ model.cuda().eval()
108
+ inputs = tokenizer(prompt, return_tensors="pt", add_special_tokens=False).to("cuda")
109
+
110
+ # generate configuration can be modified to your needs
111
+ tokens = model.generate(
112
+ **inputs,
113
+ min_new_tokens=2,
114
+ max_new_tokens=256,
115
+ do_sample=False,
116
+ num_beams=2,
117
+ temperature=float(0.3),
118
+ repetition_penalty=float(1.2),
119
+ )[0]
120
+
121
+ tokens = tokens[inputs["input_ids"].shape[1]:]
122
+ answer = tokenizer.decode(tokens, skip_special_tokens=True)
123
+ print(answer)
124
+ ```
125
+
126
+ ## Model Architecture
127
+
128
+ ```
129
+ GPTNeoXForCausalLM(
130
+ (gpt_neox): GPTNeoXModel(
131
+ (embed_in): Embedding(50432, 6144)
132
+ (layers): ModuleList(
133
+ (0-43): 44 x GPTNeoXLayer(
134
+ (input_layernorm): LayerNorm((6144,), eps=1e-05, elementwise_affine=True)
135
+ (post_attention_layernorm): LayerNorm((6144,), eps=1e-05, elementwise_affine=True)
136
+ (attention): GPTNeoXAttention(
137
+ (rotary_emb): RotaryEmbedding()
138
+ (query_key_value): Linear(in_features=6144, out_features=18432, bias=True)
139
+ (dense): Linear(in_features=6144, out_features=6144, bias=True)
140
+ )
141
+ (mlp): GPTNeoXMLP(
142
+ (dense_h_to_4h): Linear(in_features=6144, out_features=24576, bias=True)
143
+ (dense_4h_to_h): Linear(in_features=24576, out_features=6144, bias=True)
144
+ (act): FastGELUActivation()
145
+ )
146
+ )
147
+ )
148
+ (final_layer_norm): LayerNorm((6144,), eps=1e-05, elementwise_affine=True)
149
+ )
150
+ (embed_out): Linear(in_features=6144, out_features=50432, bias=False)
151
+ )
152
+ ```
153
+
154
+ ## Model Configuration
155
+
156
+ This model was trained using H2O LLM Studio and with the configuration in [cfg.yaml](cfg.yaml). Visit [H2O LLM Studio](https://github.com/h2oai/h2o-llmstudio) to learn how to train your own large language models.
157
+
158
+
159
+ ## Model Validation
160
+
161
+ Model validation results using [EleutherAI lm-evaluation-harness](https://github.com/EleutherAI/lm-evaluation-harness).
162
+
163
+ ```bash
164
+ CUDA_VISIBLE_DEVICES=0 python main.py --model hf-causal-experimental --model_args pretrained=h2oai/h2ogpt-gm-oasst1-multilang-1024-20b --tasks openbookqa,arc_easy,winogrande,hellaswag,arc_challenge,piqa,boolq --device cuda &> eval.log
165
+ ```
166
+
167
+
168
+ ## Disclaimer
169
+
170
+ Please read this disclaimer carefully before using the large language model provided in this repository. Your use of the model signifies your agreement to the following terms and conditions.
171
+
172
+ - Biases and Offensiveness: The large language model is trained on a diverse range of internet text data, which may contain biased, racist, offensive, or otherwise inappropriate content. By using this model, you acknowledge and accept that the generated content may sometimes exhibit biases or produce content that is offensive or inappropriate. The developers of this repository do not endorse, support, or promote any such content or viewpoints.
173
+ - Limitations: The large language model is an AI-based tool and not a human. It may produce incorrect, nonsensical, or irrelevant responses. It is the user's responsibility to critically evaluate the generated content and use it at their discretion.
174
+ - Use at Your Own Risk: Users of this large language model must assume full responsibility for any consequences that may arise from their use of the tool. The developers and contributors of this repository shall not be held liable for any damages, losses, or harm resulting from the use or misuse of the provided model.
175
+ - Ethical Considerations: Users are encouraged to use the large language model responsibly and ethically. By using this model, you agree not to use it for purposes that promote hate speech, discrimination, harassment, or any form of illegal or harmful activities.
176
+ - Reporting Issues: If you encounter any biased, offensive, or otherwise inappropriate content generated by the large language model, please report it to the repository maintainers through the provided channels. Your feedback will help improve the model and mitigate potential issues.
177
+ - Changes to this Disclaimer: The developers of this repository reserve the right to modify or update this disclaimer at any time without prior notice. It is the user's responsibility to periodically review the disclaimer to stay informed about any changes.
178
+
179
+ By using the large language model provided in this repository, you agree to accept and comply with the terms and conditions outlined in this disclaimer. If you do not agree with any part of this disclaimer, you should refrain from using the model and any content generated by it.