CoolFace
Modelpublic

QueryloopAI/gemma-2b-openhermes

sourceHugging Facecc-by-nc-4.0updated 3y agoView on Hugging Face
0likes123downloads
Model Card

<!-- This model card has been generated automatically according to the information the Trainer had access to. You should probably proofread and complete it, then remove this comment. -->

gemma-2b-openhermes

image/jpeg

gemma-2b-openhermes is a variant of the Gemma 2B language model, which has been further fine-tuned on the OpenHermes-2.5 preference dataset using QLoRA.

</details><br>

Usage

Chat Template

The instruction-tuned models use a chat template that must be adhered to for conversational use. The easiest way to apply it is using the tokenizer's built-in chat template, as shown in the following snippet.

Let's load the model and apply the chat template to a conversation. In this example, we'll start with a single user interaction:

py
from transformers import AutoTokenizer, AutoModelForCausalLM
import transformers
import torch

model_id = "abideen/gemma-2b-openhermes"
dtype = torch.bfloat16

tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(
    model_id,
    device_map="cuda",
    torch_dtype=dtype,
)

chat = [{ "role": "user", "content": "What is a Language Model?" }]
prompt = tokenizer.apply_chat_template(chat, tokenize=False, add_generation_prompt=True)

After the prompt is ready, generation can be performed like this:

py
inputs = tokenizer.encode(prompt, add_special_tokens=True, return_tensors="pt")
outputs = model.generate(input_ids=inputs.to(model.device), max_new_tokens=250)
print(tokenizer.decode(outputs[0]))

Inputs and outputs

  • Input: Text string, such as a question, a prompt, or a document to be summarized.
  • Output: Generated English-language text in response to the input, such as an answer to a question, or a summary of a document.

🏆 Evaluation results

Nous Benchmark

Agieval

TaskVersionMetricValueStdErr
agieval\aqua\rat0acc24.02_2.69
agieval\aqua\rat0acc\_norm24.02_2.69
agieval\logiqa\en0acc23.20_1.66
agieval\logiqa\en0acc\_norm24.42_1.69
agieval\lsat\ar0acc18.26_2.55
agieval\lsat\ar0acc\_norm18.70_2.58
agieval\lsat\lr0acc22.35_1.85
agieval\lsat\lr0acc\_norm23.53_1.88
agieval\lsat\rc0acc20.82_2.48
agieval\lsat\rc0acc\_norm20.07_2.45
agieval\sat\en0acc32.52_3.27
agieval\sat\en0acc\_norm32.52_3.27
agieval\sat\en\without\passage0acc25.73_3.05
agieval\sat\en\without\passage0acc\_norm24.27_2.99
agieval\sat\math0acc25.00_2.93
agieval\sat\math0acc\_norm20.91_2.75

Average: 24.11

GPT4ALL

TaskVersionMetricValueStdErr
arc\_challenge0acc21.77_1.21
arc\_challenge0acc\_norm24.15_1.25
arc\_easy0acc37.37_0.99
arc\_easy0acc\_norm36.95_0.99
boolq1acc65.60_0.83
hellaswag0acc34.54_0.47
hellaswag0acc\_norm40.54_0.49
openbookqa0acc15.00_1.59
openbookqa0acc\_norm27.40_2.00
piqa0acc60.88_1.14
piqa0acc\_norm60.55_1.14
winogrande0acc50.91_1.41

Average: 40.01

BigBench

TaskVersionMetricValueStd Err
bigbench\causal\judgement0MCG502.26
bigbench\date\understanding0MCG49.142.18
bigbench\disambiguation\qa0MCG49.312.74
bigbench\geometric\shapes0MCG14.181.37
bigbench\logical\deduction\_5objs0MCG49.412.73
bigbench\logical\deduction\_7objs0MCG41.482.46
bigbench\logical\deduction\_3objs0MCG69.332.75
bigbench\movie\recommendation0MCG51.712.25
bigbench\_navigate0MCG501.58
bigbench\reasoning\colored\_obj0MCG51.920.99
bigbench\ruin\names0MCG48.142.01
bigbench\salient\trans\err\detec0MCG39.921.2
bigbench\_snarks0MCG64.143.71
bigbench\sports\understanding0MCG55.311.59
bigbench\temporal\sequences0MCG46.921.4
bigbench\tsk\shuff\objs\50MCG25.041.01
bigbench\tsk\shuff\objs\70MCG15.040.72
bigbench\tsk\shuff\objs\30MCG55.332.75

Average: 44.75

TruthfulQA

TaskVersionMetricValueStd Err
truthfulqa\_mc1mc130.111.61
truthfulqa\_mc1mc247.691.61

Average: 38.90

Openllm Benchmark

TaskVersionMetricValueStderr
arc_challenge0acc40.44±1.43
acc_norm43.81±1.34
hellaswag0acc48.1±0.45
acc_norm62.73±0.32
gsm8k0acc5.6±0.6
winogrande0acc60.91±1.3
mmlu0acc37.62±0.6

Average: 73.5%

TruthfulQA

TaskVersionMetricValueStderr
truthfulqa_mc1mc129.00±1.58
mc245.83±1.59

Training hyperparameters

The following hyperparameters were used during training:

  • learning_rate: 5e-07
  • trainbatchsize: 1
  • evalbatchsize: 8
  • seed: 42
  • gradientaccumulationsteps: 8
  • totaltrainbatch_size: 8
  • optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
  • lrschedulertype: cosine
  • lrschedulerwarmup_steps: 100
  • training_steps: 1300

📝 Axolotl Configuration

yaml
base_model: google/gemma-2b-it
model_type: GemmaForCausalLM
tokenizer_type: GemmaTokenizer
trust_remote_code: true

load_in_8bit: false
load_in_4bit: true
strict: false

rl: dpo
chat_template: chatml
datasets:
  - path: mlabonne/chatml-OpenHermes2.5-dpo-binarized-alpha
    split: train
    type: chatml.intel
dataset_prepared_path:
val_set_size: 0.01
output_dir: ./out

adapter: qlora
lora_model_dir:

sequence_len: 1800
sample_packing: false
pad_to_sequence_len: false

lora_r: 16
lora_alpha: 16
lora_dropout: 0.05
lora_target_linear: true
lora_fan_in_fan_out:
lora_target_modules:

wandb_project: gemma
wandb_entity:
wandb_watch:
wandb_name:
wandb_log_model:

gradient_accumulation_steps: 8
micro_batch_size: 1
num_epochs: 1
optimizer: paged_adamw_32bit
lr_scheduler: cosine
learning_rate: 5e-7

train_on_inputs: false
group_by_length: false
bf16: true
fp16: false
tf32: true

gradient_checkpointing: true
early_stopping_patience:
resume_from_checkpoint:
local_rank:
logging_steps: 1
xformers_attention:
flash_attention: false

warmup_steps: 100
evals_per_epoch: 1
eval_table_size:
eval_table_max_new_tokens: 128
save_steps: 1000
max_steps: 1300
debug:
deepspeed:
weight_decay: 0.0
fsdp:
fsdp_config:
special_tokens:

Framework versions

  • Transformers 4.39.0.dev0
  • Pytorch 2.1.2+cu118
  • Datasets 2.17.0
  • Tokenizers 0.15.0
  • axolotl: 0.4.0

<img src="https://raw.githubusercontent.com/OpenAccess-AI-Collective/axolotl/main/image/axolotl-badge-web.png" alt="Built with Axolotl" width="200" height="32"/>