Skip to content

Commit 192300a

Browse files
committed
Fixed couple of stuffs based on PR review
1 parent 9bf45c9 commit 192300a

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

docs/howtos/redisai/getting-started/index-gettingstarted.mdx

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,15 @@ Ensure that Python3.8+ is installed.
6464
brew install python
6565
```
6666

67+
Create a Python virtual environment and activate it:
68+
69+
```bash
70+
python3 -m venv venv
71+
. ./venv/bin/activate
72+
```
73+
74+
75+
6776
### Step 3. Install PIP
6877

6978
```bash
@@ -95,7 +104,7 @@ RedisAI supports DL/ML identifiers and their respective backend libraries, inclu
95104
A complete list of supported backends is in the [release notes for each version](https://docs.redis.com/latest/modules/redisai/release-notes/redisai-1.0-release-notes/).
96105

97106
```bash
98-
python3 build.py
107+
python build.py
99108
```
100109

101110
### Step 7: Deploy the Model into RedisAI
@@ -131,7 +140,7 @@ This will set the key 'iris' to the 2x4 RedisAI tensor (i.e. 2 sets of inputs of
131140
```
132141

133142
where,
134-
- iris refers to the tensor's key name,
143+
- iris:in refers to the tensor's key name,
135144
- FLOAT is a tensor's data type
136145
- {5.0 3.4 1.6 0.4} refers to 1st item with 4 features
137146
- {6.0 2.2 5.0 1.5} refers to 2nd item with 4 features

0 commit comments

Comments
 (0)