Instructions to use TheBloke/MPT-7B-Instruct-GGML with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use TheBloke/MPT-7B-Instruct-GGML with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("TheBloke/MPT-7B-Instruct-GGML", dtype="auto") - Notebooks
- Google Colab
- Kaggle
Create config.json
#3
by marella - opened
By adding this, it will simplify the usage of this model in ctransformers:
from ctransformers import AutoModelForCausalLM
llm = AutoModelForCausalLM.from_pretrained("TheBloke/MPT-7B-Instruct-GGML")
TheBloke changed pull request status to merged