Text Generation
Transformers
PyTorch
English
llama
rlhf
alignment
simulation
computational social science
text-generation-inference
Instructions to use agi-css/better-base with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use agi-css/better-base with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="agi-css/better-base")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("agi-css/better-base") model = AutoModelForCausalLM.from_pretrained("agi-css/better-base") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use agi-css/better-base with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "agi-css/better-base" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "agi-css/better-base", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/agi-css/better-base
- SGLang
How to use agi-css/better-base with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "agi-css/better-base" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "agi-css/better-base", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "agi-css/better-base" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "agi-css/better-base", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use agi-css/better-base with Docker Model Runner:
docker model run hf.co/agi-css/better-base
| license: apache-2.0 | |
| datasets: | |
| - alexl83/AlpacaDataCleaned | |
| - sahil2801/CodeAlpaca-20k | |
| language: | |
| - en | |
| library_name: transformers | |
| pipeline_tag: text-generation | |
| tags: | |
| - rlhf | |
| - alignment | |
| - simulation | |
| - computational social science | |
| # Model Card for Better Base LM | |
|  | |
|  | |
| **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](https://github.com/agi-templar/Stable-Alignment). | |
| # Training Procedure | |
| This is the very beginning of Stable Alignment project, which is an enhanced instruction tuning model based on LLaMA. | |
| We improve: | |
| - Instruction tuning data quality, by using [AlpacaDataCleaned](https://github.com/gururise/AlpacaDataCleaned), which fixes many errors in original Alpaca dataset. | |
| - Code pretraining with [codealpaca](https://github.com/sahil280114/codealpaca). | |
| We use the [Alpaca fine-tuning script](https://github.com/tatsu-lab/stanford_alpaca) to train this model. | |
| # 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: | |
| ```bibtex | |
| @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} | |
| } | |
| ``` |