tatsu-lab/alpaca
Viewer • Updated • 52k • 107k • 966
How to use LinhDuong/bloom-7b1-alpaca with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("question-answering", model="LinhDuong/bloom-7b1-alpaca") # Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("LinhDuong/bloom-7b1-alpaca", dtype="auto")We try to finetune these BLOOM models using alpaca_data_cleaned.json from https://github.com/gururise/AlpacaDataCleaned
You can find our source at here https://github.com/linhduongtuan/BLOOM-LORA