How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("text-generation", model="taicheng/zephyr-7b-align-scan-0.0-1.0-linear-2")
messages = [
    {"role": "user", "content": "Who are you?"},
]
pipe(messages)
# Load model directly
from transformers import AutoTokenizer, AutoModelForMultimodalLM

tokenizer = AutoTokenizer.from_pretrained("taicheng/zephyr-7b-align-scan-0.0-1.0-linear-2")
model = AutoModelForMultimodalLM.from_pretrained("taicheng/zephyr-7b-align-scan-0.0-1.0-linear-2")
messages = [
    {"role": "user", "content": "Who are you?"},
]
inputs = tokenizer.apply_chat_template(
	messages,
	add_generation_prompt=True,
	tokenize=True,
	return_dict=True,
	return_tensors="pt",
).to(model.device)

outputs = model.generate(**inputs, max_new_tokens=40)
print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:]))
Quick Links

zephyr-7b-align-scan-0.0-1.0-linear-2

This model is a fine-tuned version of alignment-handbook/zephyr-7b-sft-full on the HuggingFaceH4/ultrafeedback_binarized dataset. It achieves the following results on the evaluation set:

  • Loss: 0.8962
  • Rewards/chosen: 1.9939
  • Rewards/rejected: 0.7547
  • Rewards/accuracies: 0.3333
  • Rewards/margins: 1.2392
  • Logps/rejected: -80.3691
  • Logps/chosen: -72.4852
  • Logits/rejected: -2.5165
  • Logits/chosen: -2.5326

Model description

More information needed

Intended uses & limitations

More information needed

Training and evaluation data

More information needed

Training procedure

Training hyperparameters

The following hyperparameters were used during training:

  • learning_rate: 6.25619875685306e-07
  • train_batch_size: 8
  • eval_batch_size: 8
  • seed: 42
  • distributed_type: multi-GPU
  • num_devices: 4
  • gradient_accumulation_steps: 2
  • total_train_batch_size: 64
  • total_eval_batch_size: 32
  • optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
  • lr_scheduler_type: linear
  • lr_scheduler_warmup_ratio: 0.1
  • num_epochs: 2

Training results

Training Loss Epoch Step Validation Loss Rewards/chosen Rewards/rejected Rewards/accuracies Rewards/margins Logps/rejected Logps/chosen Logits/rejected Logits/chosen
0.6244 1.0417 100 0.8359 1.9508 1.2167 0.3333 0.7341 -79.9043 -72.5286 -2.5408 -2.5561

Framework versions

  • Transformers 4.44.2
  • Pytorch 2.4.0
  • Datasets 2.21.0
  • Tokenizers 0.19.1
Downloads last month
2
Safetensors
Model size
7B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for taicheng/zephyr-7b-align-scan-0.0-1.0-linear-2

Finetuned
(393)
this model

Dataset used to train taicheng/zephyr-7b-align-scan-0.0-1.0-linear-2