--- license: apache-2.0 datasets: - timdettmers/openassistant-guanaco pipeline_tag: text-generation --- Model fine-tuned in 4-bit precision using QLoRA on [timdettmers/openassistant-guanaco](https://huggingface.co/datasets/timdettmers/openassistant-guanaco) with weights merged after training. Made using this [Google Colab notebook](https://colab.research.google.com/drive/1PEQyJO1-f6j0S_XJ8DV50NkpzasXkrzd?usp=sharing). It can be easily imported using the `AutoModelForCausalLM` class from `transformers`: ``` from transformers import AutoModelForCausalLM model = AutoModelForCausalLM("mlabonne/llama-2-7b-guanaco") ```