From bf3e251ec168ec6e3b89578ad697945115bbf676 Mon Sep 17 00:00:00 2001 From: Michael Goin Date: Wed, 11 Oct 2023 16:29:30 -0400 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0cc7b98d86..1ff1252ac6 100644 --- a/README.md +++ b/README.md @@ -61,11 +61,11 @@ limitations under the License. ### ✨NEW✨ DeepSparse LLMs -We are pleased to announce initial support for LLMs in DeepSparse, starting with MosaicML's MPT-7b. +We are pleased to announce initial support for LLMs in DeepSparse, starting with [MosaicML's MPT-7b](https://github.com/neuralmagic/deepsparse/tree/main/research/mpt). ```python from deepsparse import TextGeneration -model = TextGeneration(model="zoo:nlg/text_generation/mpt-7b/pytorch/huggingface/mpt_chat/pruned50_quant-none") +model = TextGeneration(model="zoo:mpt-7b-gsm8k_mpt_pretrain-pruned60_quantized") print(model("Are you excited about LLMs?", max_new_tokens=20).generations[0].text) ### > Yes, I am excited about LLMs! ```