From cdd92771938f09bcb1edc422aa5de2b061e43d32 Mon Sep 17 00:00:00 2001 From: ZiniuYu Date: Tue, 16 Aug 2022 12:09:05 +0800 Subject: [PATCH] chore: minor update --- docs/user-guides/server.md | 2 +- server/clip_server/executors/clip_onnx.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/user-guides/server.md b/docs/user-guides/server.md index ec2913484..964c2c462 100644 --- a/docs/user-guides/server.md +++ b/docs/user-guides/server.md @@ -284,7 +284,7 @@ There are also runtime-specific parameters listed below: | Parameter | Description | |-----------|--------------------------------------------------------------------------------------------------------------------------------| | `device` | 'cpu' or 'cuda'. Default is None, which auto-detects the device. -| `model_path` | The path to the model to be used. If not specified, the model will be downloaded or loaded from the local cache. See [here](#use-custom-model-for-onnx) to learn how to use custom models. | +| `model_path` | The path to the model to be used. If not specified, the model will be downloaded or loaded from the local cache. See [here](#use-custom-model-for-onnx) to learn how to finetune custom models. | ```` diff --git a/server/clip_server/executors/clip_onnx.py b/server/clip_server/executors/clip_onnx.py index 794451b41..05e2b4c58 100644 --- a/server/clip_server/executors/clip_onnx.py +++ b/server/clip_server/executors/clip_onnx.py @@ -39,7 +39,7 @@ def __init__( details. :param model_path: The path to the model to be used. If not specified, the model will be downloaded or loaded from the local cache. Visit https://clip-as-service.jina.ai/user-guides/server/#use-custom-model-for-onnx - to learn how to use custom models. + to learn how to finetune custom models. """ super().__init__(**kwargs)