Skip to content

Commit 3a17857

Browse files
committed
Rephrasing docs
1 parent e0324e7 commit 3a17857

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/developer-backends.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# RedisAI Development Backends
22

33
This document describes how ONNXRuntime backend can be built from this repository.
4-
We build ONNXRuntime library with DISABLE_EXTERNAL_INITIALIZERS=ON build flag, which is not the default configuration. This means that loading ONNX models that use external files to store the initial (usually very large) values of the model's operations, is invalid. That is, initializers values must be part of the serialized model, which is also the standard use case.
4+
We build the ONNXRuntime library with the DISABLE_EXTERNAL_INITIALIZERS=ON build flag. As a result, loading ONNX models that use external files to store the initial (usually very large) values of the model's operations, is invalid. Hence, initialization values must be part of the serialized model, which is also the standard use case.
55

66
It is compiled in a docker, which is responsible for the configuration and installation of all tools required the build process.
77

88
To follow these instructions, this repository must be cloned with all of its submodules (i.e *git clone --recursive https://github.com/redisai/redisai*)
99

10-
GNU Make is used as a runner for the dockerfile generator. Python is the language used for the generator script, and jinja is the templating library used to create the docker file from a template *dockerfile.tmpl* that can be found in the `/opt/build/onnxruntime` directory.
10+
GNU Make is used as a runner for the dockerfile generator. Python is the language used for the generator script, and jinja is the templating library used to create the docker file from the template *dockerfile.tmpl*, located in the `/opt/build/onnxruntime` directory.
1111

1212
### Tools
1313

@@ -24,7 +24,7 @@ On ubuntu bionic these can be installed by running the following steps, to insta
2424
sudo apt install python3 python3-dev make docker
2525
python3 -m venv /path/to/venv
2626
source /path/to/venv/bin/activate
27-
pip install jinja
27+
pip install jinja2
2828
```
2929

3030
-------

0 commit comments

Comments
 (0)