Views
No views yet
h2ogpt-oig-oasst1-512-6_9b is a 6.9 billion parameter instruction-following large language model licensed for commercial use.
transformers library on a machine with GPUs, first make sure you have the transformers and accelerate libraries installed.1pip install transformers==4.28.1
2pip install accelerate==0.18.01import torch
2from transformers import pipeline
3
4generate_text = pipeline(model="h2oai/h2ogpt-oig-oasst1-512-6_9b", torch_dtype=torch.bfloat16, trust_remote_code=True, device_map="auto", prompt_type='human_bot')
5
6res = generate_text("Why is drinking water so healthy?", max_new_tokens=100)
7print(res[0]["generated_text"])trust_remote_code=True you can download instruct_pipeline.py,
store it alongside your notebook, and construct the pipeline yourself from the loaded model and tokenizer:1import torch
2from h2oai_pipeline import H2OTextGenerationPipeline
3from transformers import AutoModelForCausalLM, AutoTokenizer
4
5tokenizer = AutoTokenizer.from_pretrained("h2oai/h2ogpt-oig-oasst1-512-6_9b", padding_side="left")
6model = AutoModelForCausalLM.from_pretrained("h2oai/h2ogpt-oig-oasst1-512-6_9b", torch_dtype=torch.bfloat16, device_map="auto")
7generate_text = H2OTextGenerationPipeline(model=model, tokenizer=tokenizer, prompt_type='human_bot')
8
9res = generate_text("Why is drinking water so healthy?", max_new_tokens=100)
10print(res[0]["generated_text"])GPTNeoXForCausalLM(
(gpt_neox): GPTNeoXModel(
(embed_in): Embedding(50432, 4096)
(layers): ModuleList(
(0-31): 32 x GPTNeoXLayer(
(input_layernorm): LayerNorm((4096,), eps=1e-05, elementwise_affine=True)
(post_attention_layernorm): LayerNorm((4096,), eps=1e-05, elementwise_affine=True)
(attention): GPTNeoXAttention(
(rotary_emb): RotaryEmbedding()
(query_key_value): Linear(in_features=4096, out_features=12288, bias=True)
(dense): Linear(in_features=4096, out_features=4096, bias=True)
)
(mlp): GPTNeoXMLP(
(dense_h_to_4h): Linear(in_features=4096, out_features=16384, bias=True)
(dense_4h_to_h): Linear(in_features=16384, out_features=4096, bias=True)
(act): GELUActivation()
)
)
)
(final_layer_norm): LayerNorm((4096,), eps=1e-05, elementwise_affine=True)
)
(embed_out): Linear(in_features=4096, out_features=50432, bias=False)
)1GPTNeoXConfig {
2 "_name_or_path": "h2oai/h2ogpt-oig-oasst1-512-6_9b",
3 "architectures": [
4 "GPTNeoXForCausalLM"
5 ],
6 "bos_token_id": 0,
7 "custom_pipeline": {
8 "text-generation": {
9 "impl": "h2oai_pipeline.H2OTextGenerationPipeline",
10 "pt": "AutoModelForCausalLM"
11 }
12 },
13 "eos_token_id": 0,
14 "hidden_act": "gelu",
15 "hidden_size": 4096,
16 "initializer_range": 0.02,
17 "intermediate_size": 16384,
18 "layer_norm_eps": 1e-05,
19 "max_position_embeddings": 2048,
20 "model_type": "gpt_neox",
21 "num_attention_heads": 32,
22 "num_hidden_layers": 32,
23 "rotary_emb_base": 10000,
24 "rotary_pct": 0.25,
25 "tie_word_embeddings": false,
26 "torch_dtype": "float16",
27 "transformers_version": "4.28.1",
28 "use_cache": true,
29 "use_parallel_residual": true,
30 "vocab_size": 50432
31}
32| Task | Version | Metric | Value | Stderr | |
|---|---|---|---|---|---|
| arc_easy | 0 | acc | 0.6591 | ± | 0.0097 |
| acc_norm | 0.6178 | ± | 0.0100 | ||
| arc_challenge | 0 | acc | 0.3174 | ± | 0.0136 |
| acc_norm | 0.3558 | ± | 0.0140 | ||
| openbookqa | 0 | acc | 0.2540 | ± | 0.0195 |
| acc_norm | 0.3580 | ± | 0.0215 | ||
| winogrande | 0 | acc | 0.6069 | ± | 0.0137 |
| piqa | 0 | acc | 0.7486 | ± | 0.0101 |
| acc_norm | 0.7546 | ± | 0.0100 | ||
| hellaswag | 0 | acc | 0.4843 | ± | 0.0050 |
| acc_norm | 0.6388 | ± | 0.0048 | ||
| boolq | 1 | acc | 0.6193 | ± | 0.0085 |