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/mpt-30b-v5", trust_remote_code=True)
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM

tokenizer = AutoTokenizer.from_pretrained("iamplus/mpt-30b-v5", trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained("iamplus/mpt-30b-v5", trust_remote_code=True)
Quick Links

Base Model : manojpreveen/mpt-30b-v4

Tool : MosaicML's llm-foundry (https://github.com/mosaicml/llm-foundry)

Dataset : Entire flan1m-GPT4 dataset

Config yaml with Model Params : https://huggingface.co/manojpreveen/mpt-30b-v5/blob/main/mpt-30b_v5.yaml

Description : mosaicml/mpt-30b -> Finetuning on (Entire flan3m-GPT3.5 dataset for 4 epochs) iamplus/mpt-30b-v4 -> Finetuning on (Entire flan1m-GPT4 dataset for 4 epochs) -> iamplus/mpt-30b-v5

Prompt Format :

<system>: [system prompt]

<human>: [question]

<bot>:
Downloads last month
5
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Dataset used to train iamplus/mpt-30b-v5