From 9a0a4d926c03a60e39b859300e76b4c6b2ff1447 Mon Sep 17 00:00:00 2001 From: Merve Noyan Date: Thu, 7 Sep 2023 17:24:14 +0300 Subject: [PATCH] nit --- docs/source/supported_models.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/source/supported_models.md b/docs/source/supported_models.md index f18e7397..5c4219d1 100644 --- a/docs/source/supported_models.md +++ b/docs/source/supported_models.md @@ -28,7 +28,8 @@ AutoModelForCausalLM.from_pretrained(, device_map="auto")` AutoModelForSeq2SeqLM.from_pretrained(, device_map="auto") ``` -If you wish to serve a different version of a model that exists in a local folder, you can use `weight-cache-override` flag like below 👇 +If you wish to serve a supported model that already exists on a local folder, you can use `weight-cache-override` flag like below. Otherwise, it will be downloaded to Hugging Face Hub cache. + ```bash text-generation-launcher --model-id bigscience/bloom --weights-cache-override ```