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
Copy file name to clipboardExpand all lines: README.md
+45-2Lines changed: 45 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@
8
8
# RedisAI Python Client
9
9
10
10
11
-
## Installing
11
+
## Installation
12
12
13
13
1. Install Redis 5.0 or above
14
14
@@ -20,6 +20,49 @@
20
20
$ pip install redisai
21
21
```
22
22
23
-
[RedisAI example repo](https://github.com/RedisAI/redisai-examples) shows few examples made using redisai-py under `python_client` section.
[RedisAI example repo](https://github.com/RedisAI/redisai-examples) shows few examples made using redisai-py under `python_client` section. Checkout [ml2rt](https://github.com/hhsecond/ml2rt) for convenient functions those might help in converting models (sparkml, sklearn, xgboost to ONNX), serializing models to disk, loading it back to redisai-py etc.
29
+
30
+
For a quick walk through, checkout this example
31
+
32
+
```python
33
+
from redisai import Client
34
+
from redisai import Tensor, BlobTensor, DType, Device, Backend
0 commit comments