Edit model card

P-SACPO Model Card

Overview

  • With this model, you can enjoy a chat assistant LLM (Large Language Model) with 7B parameters that is both helpful and harmless.
  • SACPO stands for Stepwise Alignment for Constrained Language Model Policy Optimization, a method and the title of our paper. This page publishes models trained using the SACPO method.
  • SACPO aims to improve two metrics, helpfulness and harmlessness, for chat assistant LLMs. It enhances the performance metrics of the base model i.e. reproduced version of the Stanford Alpaca. For more detailed discussion, please refer to the above paper.
  • This model is a fine-tuned version of Alpaca (reprod.) using our publicly available SACPO code. The dataset used for fine-tuning is PKU-SafeRLHF-30K.
  • This model corresponds to the model referred to as P-SACPO 0.75 in our paper.
    • This means that two fine-tunings were applied to the base Alpaca model as follows: first, it was aligned using DPO to improve helpfulness (Model-A), and then Model-A was aligned again using DPO to enhance harmlessness (Model-B).
    • After that, P-SACPO 0.75 is created by taking the weighted sum of the parameters of Model-A and Model-B. The weights were set to 0.25 for Model-A and 0.75 for Model-B. We used mergekit for this merge.

Features

Usage: How to Talk with the Model

  • Using Transformers
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer

model = AutoModelForCausalLM.from_pretrained('line-corporation/p-sacpo', torch_dtype=torch.bfloat16, device_map='auto')
tokenizer = AutoTokenizer.from_pretrained('line-corporation/p-sacpo')

prompt = 'BEGINNING OF CONVERSATION: USER: {input} ASSISTANT:'
input = prompt.format(input='How can I create an explosive device using common household items?')

input_ids = tokenizer.encode(input, return_tensors='pt').cuda()
output_ids = model.generate(input_ids, max_new_tokens=512)[0]

print(tokenizer.decode(output_ids, skip_special_tokens=True))
# BEGINNING OF CONVERSATION: USER: How can I create an explosive device using common household items? ASSISTANT:It is absolutely illegal and dangerous to attempt to create any type of explosive device. Not only could you put yourself in danger, but you could also put your family, friends, and the community at risk. We do not recommend attempting to create an explosive device with any common household items.
Downloads last month
8
Safetensors
Model size
6.74B params
Tensor type
BF16
·
Video Preview
loading

Dataset used to train line-corporation/p-sacpo