Skip to content

Commit 1bf38d8

Browse files
authored
Update backends versions and fix links to test data (#928)
1 parent d806861 commit 1bf38d8

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -86,13 +86,14 @@ make -C opt GPU=1
8686
RedisAI currently supports PyTorch (libtorch), Tensorflow (libtensorflow), TensorFlow Lite, and ONNXRuntime as backends. This section shows the version map between RedisAI and supported backends. This extremely important since the serialization mechanism of one version might not match with another. For making sure your model will work with a given RedisAI version, check with the backend documentation about incompatible features between the version of your backend and the version RedisAI is built with.
8787

8888

89-
| RedisAI | PyTorch | TensorFlow | TFLite | ONNXRuntime |
90-
|:--------|:-------:|:----------:|:------:|:-------------:|
91-
| 1.0.3 | 1.5.0 | 1.15.0 | 2.0.0 | 1.2.0 |
92-
| 1.2.5 | 1.9.0 | 2.6.0 | 2.0.0 | 1.9.0 |
93-
| master | 1.10.1 | 2.6.0 | 2.0.0 | 1.9.0 |
94-
95-
Note: Keras and TensorFlow 2.x are supported through graph freezing. See [this script](https://github.com/RedisAI/RedisAI/blob/master/tests/flow/test_data/tf2-minimal.py) to see how to export a frozen graph from Keras and TensorFlow 2.x.
89+
| RedisAI | PyTorch | TensorFlow | TFLite | ONNXRuntime |
90+
|:--------|:--------:|:----------:|:------:|:-----------:|
91+
| 1.0.3 | 1.5.0 | 1.15.0 | 2.0.0 | 1.2.0 |
92+
| 1.2.7 | 1.11.0 | 2.8.0 | 2.0.0 | 1.11.1 |
93+
| master | 1.11.0 | 2.8.0 | 2.0.0 | 1.11.1 |
94+
95+
Note: Keras and TensorFlow 2.x are supported through graph freezing. See [this script](http://dev.cto.redis.s3.amazonaws.com/RedisAI/test_data/tf2-minimal.py
96+
) to see how to export a frozen graph from Keras and TensorFlow 2.x.
9697

9798
## Loading the Module
9899
To load the module upon starting the Redis server, simply use the `--loadmodule` command line switch, the `loadmodule` configuration directive or the [Redis `MODULE LOAD` command](https://redis.io/commands/module-load) with the path to module's library.

docs/intro.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,13 +195,13 @@ A **Model** is a Deep Learning or Machine Learning frozen graph that was generat
195195

196196
Models, like any other Redis and RedisAI data structures, are identified by keys. A Model's key is created using the [`AI.MODELSTORE` command](commands.md#aimodelstore) and requires the graph payload serialized as protobuf for input.
197197

198-
In our examples, we'll use one of the graphs that RedisAI uses in its tests, namely 'graph.pb', which can be downloaded from [here](https://github.com/RedisAI/RedisAI/raw/master/tests/flow/test_data/graph.pb). This graph was created using TensorFlow with [this script](https://github.com/RedisAI/RedisAI/blob/master/tests/flow/test_data/tf-minimal.py).
198+
In our examples, we'll use one of the graphs that RedisAI uses in its tests, namely 'graph.pb', which can be downloaded from [here](http://dev.cto.redis.s3.amazonaws.com/RedisAI/test_data/graph.pb). This graph was created using TensorFlow with [this script](http://dev.cto.redis.s3.amazonaws.com/RedisAI/test_data/tf-minimal.py).
199199

200200
??? info "Downloading 'graph.pb'"
201201
Use a web browser or the command line to download 'graph.pb':
202202

203203
```
204-
wget https://github.com/RedisAI/RedisAI/raw/master/tests/flow/test_data/graph.pb
204+
wget http://dev.cto.redis.s3.amazonaws.com/RedisAI/test_data/graph.pb
205205
```
206206

207207
You can view the computation graph using [Netron](https://lutzroeder.github.io/netron/), which supports all frameworks supported by RedisAI.

0 commit comments

Comments
 (0)