Edit model card

Vigogne

Vigogne-instruct-bloom-7b1: A French Instruction-following BLOOM Model

Vigogne-instruct-bloom-7b1 is a bigscience/bloom-7b1 model fine-tuned to follow the 🇫🇷 French instructions.

For more information, please visit the Github repo: https://github.com/bofenghuang/vigogne

Usage and License Notices: Same as Stanford Alpaca, Vigogne is intended and licensed for research use only. The dataset is CC BY NC 4.0 (allowing only non-commercial use) and models trained using the dataset should not be used outside of research purposes.

Usage

This repo only contains the low-rank adapter. In order to access the complete model, you also need to load the base LLM model and tokenizer.

from peft import PeftModel
from transformers import AutoModelForCausalLM, AutoTokenizer

base_model_name_or_path = "bigscience/bloom-7b1"
lora_model_name_or_path = "bofenghuang/vigogne-instruct-bloom-7b1"

tokenizer = AutoTokenizer.from_pretrained(base_model_name_or_path, padding_side="right", use_fast=False)
model = AutoModelForCausalLM.from_pretrained(
    base_model_name_or_path,
    load_in_8bit=True,
    torch_dtype=torch.float16,
    device_map="auto",
)
model = PeftModel.from_pretrained(model, lora_model_name_or_path)

You can infer this model by using the following Google Colab Notebook.

Open In Colab

Limitations

Vigogne is still under development, and there are many limitations that have to be addressed. Please note that it is possible that the model generates harmful or biased content, incorrect information or generally unhelpful answers.

Downloads last month
0
Inference Examples
Inference API (serverless) has been turned off for this model.

Dataset used to train bofenghuang/vigogne-bloom-7b1-instruct

Collection including bofenghuang/vigogne-bloom-7b1-instruct