You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -23,13 +23,13 @@ If you want to run examples, make sure you have [git-lfs](https://git-lfs.github
23
23
To quickly tryout RedisAI, launch an instance using docker:
24
24
25
25
```sh
26
-
docker run -p 6379:6379 -it --rm redisai/redisai
26
+
docker run -p 6379:6379 -it --rm redislabs/redisai
27
27
```
28
28
29
29
For docker instance with GPU support, you can launch it from `tensorwerk/redisai-gpu`
30
30
31
31
```sh
32
-
docker run -p 6379:6379 --gpus all -it --rm redisai/redisai:latest-gpu
32
+
docker run -p 6379:6379 --gpus all -it --rm redislabs/redisai:latest-gpu
33
33
```
34
34
35
35
But if you'd like to build the docker image, you need a machine that has Nvidia driver (CUDA 10.0), nvidia-container-toolkit and Docker 19.03+ installed. For detailed information, checkout [nvidia-docker documentation](https://github.com/NVIDIA/nvidia-docker)
Copy file name to clipboardExpand all lines: docs/commands.md
+11-3Lines changed: 11 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -661,14 +661,14 @@ Because `AI.DAGRUN` provides the `PERSIST` option it is flagged as a 'write' com
661
661
Refer to the Redis [`READONLY` command](https://redis.io/commands/readonly) for further information about read-only cluster replicas.
662
662
663
663
## AI.INFO
664
-
The **`AI.INFO`** command returns information about the execution a model or a script.
664
+
The **`AI.INFO`** command returns general module information or information about the execution a model or a script.
665
665
666
666
Runtime information is collected each time that [`AI.MODELRUN`](#aimodelrun) or [`AI.SCRIPTRUN`](#aiscriptrun) is called. The information is stored locally by the executing RedisAI engine, so when deployed in a cluster each shard stores its own runtime information.
667
667
668
668
**Redis API**
669
669
670
670
```
671
-
AI.INFO <key> [RESETSTAT]
671
+
AI.INFO [<key>] [RESETSTAT]
672
672
```
673
673
674
674
_Arguments_
@@ -678,7 +678,15 @@ _Arguments_
678
678
679
679
_Return_
680
680
681
-
An array with alternating entries that represent the following key-value pairs:
681
+
For a module genernal information: An array with alternating entries that represent the following key-value pairs:
682
+
683
+
***Version**: a string showing the current module version.
684
+
***Low level API Version**: a string showing the current module's low level api version.
685
+
***RDB Encoding version**: a string showing the current module's RDB encoding version.
686
+
***TensorFlow version**: a string showing the current loaded TesnorFlow backend version.
687
+
***ONNX version**: a string showing the current loaded ONNX Runtime backend version.
688
+
689
+
For model or script runtime information: An array with alternating entries that represent the following key-value pairs:
682
690
683
691
***KEY**: a String of the name of the key storing the model or script value
684
692
***TYPE**: a String of the type of value (i.e. 'MODEL' or 'SCRIPT')
0 commit comments