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')