Text Generation
Transformers
PyTorch
bloom
text-generation-inference
How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("text-generation", model="iamplus/bloomz-7b1-v1")
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM

tokenizer = AutoTokenizer.from_pretrained("iamplus/bloomz-7b1-v1")
model = AutoModelForCausalLM.from_pretrained("iamplus/bloomz-7b1-v1")
Quick Links

First Version of Instruction Tuned Bloomz-7B1 model on ChatGPT dataset (85k data) using HF Deepspeed

Base Model: bigscience/bloomz-7b1

Training Details :

  • Epochs: 5
  • Batch Size : 5 instantaneous per device x 2 gradient accumulation steps x 8 gpus = 80
  • Max Length : 512
  • Weight Decay : 0
  • Learning Rate : 5e-5
  • Learning Rate Scheduler Type : Linear
  • Number of warmup steps : 0
  • Machine : 8xA100 80GB

Dataset Details :

Dataset : iamplus/Instruction_Tuning

Files :

  • chat_gpt_v1.csv
Downloads last month
6
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Dataset used to train iamplus/bloomz-7b1-v1