Text Generation
Transformers
bloom
How to use from
vLLM
Install from pip and serve model
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "manojpreveen/bloomz-7b1-v3"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/completions" \
	-H "Content-Type: application/json" \
	--data '{
		"model": "manojpreveen/bloomz-7b1-v3",
		"prompt": "Once upon a time,",
		"max_tokens": 512,
		"temperature": 0.5
	}'
Use Docker
docker model run hf.co/manojpreveen/bloomz-7b1-v3
Quick Links

Instruction Tuned Bloomz-7B1 model on ChatGPT dataset (85k data) using Colossal AI

Base Model: bigscience/bloomz-7b1

Training Details :

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

Dataset Details :

Dataset : iamplus/Instruction_Tuning

Files :

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

Dataset used to train manojpreveen/bloomz-7b1-v3