Edit model card

Model Card for So(cially)-Good LM

model image

model image

Efficient, Effective, and Stable alternative of RLHF!

Instead of training an additional reward model that is likely to be gamed, we directly train the model on the social games! 🕹️ 🎲 🎮

Full details on simulation and training can be found here.

Training Procedure

Trained with Stable Alignment on 8xA100s for 3H. The start checkpoint is the hh-rlhf-sft model.

We have also released the better-base model which is the start checkpoint of SFT.

Here is the training script:

torchrun --nproc_per_node=8 --master_port=36646 train_alignment.py \
    --model_name_or_path /workspace/hhh-sft \
    --data_path /workspace/sandbox_v1.json \
    --bf16 True \
    --output_dir /workspace/output_lm \
    --num_train_epochs 2 \
    --per_device_train_batch_size 1 \
    --per_device_eval_batch_size 1 \
    --gradient_accumulation_steps 8 \
    --evaluation_strategy "no" \
    --save_strategy "steps" \
    --save_steps 200 \
    --save_total_limit 1 \
    --learning_rate 2e-5 \
    --weight_decay 0. \
    --warmup_ratio 0.03 \
    --lr_scheduler_type "cosine" \
    --logging_steps 1 \
    --fsdp "full_shard auto_wrap" \
    --fsdp_transformer_layer_cls_to_wrap 'LlamaDecoderLayer' \
    --tf32 True \
    --model_max_length 480 \
    --rating_scale 7 \
    --margin 1 \
    --max_flow False \
    --ratio 0.2 \
    --num_comp 3

Bias, Risks, and Limitations

Although this project aims to better align current LMs with social norms, inappropriate content and inherent biases in the training data will still impair the alignment of the model.

The model should not be used directly in any application, without a prior assessment of safety and fairness concerns specific to the application.

Citation

Please cite our paper if you use the data or code in this repo:

@misc{liu2023sociallyaligned,
      title={Training Socially Aligned Language Models in Simulated Human Society},
      author={Ruibo Liu and Ruixin Yang and Chenyan Jia and Ge Zhang and Denny Zhou and Andrew M. Dai and Diyi Yang and Soroush Vosoughi},
      year={2023},
      eprint={2305.16960},
      archivePrefix={arXiv},
      primaryClass={cs.CL}
}
Downloads last month
6

Dataset used to train agi-css/socially-good-lm