Views
No views yet

1slices:
2 - sources:
3 - model: cognitivecomputations/dolphin-llama2-7b
4 layer_range: [0, 32]
5 - model: Tensoic/Llama-2-openhermes
6 layer_range: [0, 32]
7merge_method: slerp
8base_model: Tensoic/Llama-2-openhermes
9parameters:
10 t:
11 - filter: self_attn
12 value: [0, 0.5, 0.3, 0.7, 1]
13 - filter: mlp
14 value: [1, 0.5, 0.7, 0.3, 0]
15 - value: 0.5
16dtype: bfloat161<|im_start|>system
2You are a helpful, respectful and honest assistant. Always answer as helpfully as possible, while being safe.
3Your answers should not include any harmful, unethical, racist, sexist, toxic, dangerous, or illegal content.
4Please ensure that your responses are socially unbiased and positive in nature.
5
6If a question does not make any sense, or is not factually coherent, explain why instead of answering something not correct.
7If you don't know the answer to a question, please don't share false information.
8<|im_end|>
9<|im_start|>user
10{ .Prompt}
11<|im_end|>
12<|im_start|>assistant| T | Model | Average | ARC | HellaSwag | MMLU | TruthfulQA | Winogrande | GSM8K |
|---|---|---|---|---|---|---|---|---|
| 0 | meta-llama/llama-2-13b-hf | 55.69 | 59.39 | 82.13 | 55.77 | 37.38 | 76.64 | 22.82 |
| 1 | sethuiyer/OpenDolphinHermes_Llama2_7B | 54.24 | 55.03 | 78.74 | 52.25 | 46.1 | 73.16 | 20.17 |
| 2 | togethercomputer/Llama-2-7B-32K-Instruct | 50.02 | 51.11 | 78.51 | 46.11 | 44.86 | 73.88 | 5.69 |
| 3 | togethercomputer/LLaMa-2-7B-32K | 47.07 | 47.53 | 76.14 | 43.33 | 39.23 | 71.9 | 4.32 |
1!pip install -qU transformers accelerate
2
3from transformers import AutoTokenizer
4import transformers
5import torch
6
7model = "sethuiyer/OpenDolphinHermes_Llama2_7B"
8messages = [{"role": "user", "content": "What is a large language model?"}]
9
10tokenizer = AutoTokenizer.from_pretrained(model)
11prompt = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
12pipeline = transformers.pipeline(
13 "text-generation",
14 model=model,
15 torch_dtype=torch.float16,
16 device_map="auto",
17)
18
19outputs = pipeline(prompt, max_new_tokens=256, do_sample=True, temperature=0.7, top_k=50, top_p=0.95)
20print(outputs[0]["generated_text"])1A large language model is a type of artificial intelligence system that has been trained on a massive amount of data, often millions or even billions of words, to learn the patterns and relationships between words and phrases.
2These models can then be used to generate new text, understand and translate languages, and perform various natural language processing tasks.
3They have become increasingly popular in recent years due to advances in machine learning technology and their ability to achieve high levels of accuracy and performance on natural language processing tasks.
4Examples of large language models include GPT-2, BERT, and T5.| Metric | Value |
|---|---|
| Avg. | 54.24 |
| AI2 Reasoning Challenge (25-Shot) | 55.03 |
| HellaSwag (10-Shot) | 78.74 |
| MMLU (5-Shot) | 52.25 |
| TruthfulQA (0-shot) | 46.10 |
| Winogrande (5-shot) | 73.16 |
| GSM8k (5-shot) | 20.17 |