From ff3fea8318e90dd3dfa73e181404fcd15cff0c15 Mon Sep 17 00:00:00 2001 From: Haotian Li <37772067+htlee6@users.noreply.github.com> Date: Thu, 13 Jul 2023 11:49:56 +0800 Subject: [PATCH] typo corrected --- redisai/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redisai/client.py b/redisai/client.py index 8730d36..f78dbdf 100644 --- a/redisai/client.py +++ b/redisai/client.py @@ -235,7 +235,7 @@ def modelstore( >>> # Torch model >>> model_path = os.path.join('path/to/TorchScriptModel.pt') >>> model = open(model_path, 'rb').read() - >>> con.modeltore("model", 'torch', 'cpu', model, tag='v1.0') + >>> con.modelstore("model", 'torch', 'cpu', model, tag='v1.0') 'OK' >>> # Tensorflow model >>> model_path = os.path.join('/path/to/tf_frozen_graph.pb')