Skip to content

Commit 53776ca

Browse files
Vector dtype recipe update for int8 (#61)
* renames notebook * adds example demonstrating integer vector datatype * removes version check until 0.4.0 is released * updates notebook links in README * shows how to convert index to use int8 vectors * updates redis docker image * fixes execution count error
1 parent 4e5ae43 commit 53776ca

File tree

3 files changed

+460
-81
lines changed

3 files changed

+460
-81
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787

8888
services:
8989
redis:
90-
image: redis/redis-stack-server:latest
90+
image: redis:8.0-M03
9191
ports:
9292
- 6379:6379
9393

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Need quickstarts to begin your Redis AI journey? **Start here.**
4646
| [/vector-search/00_redispy.ipynb](/python-recipes/vector-search/00_redispy.ipynb) | Vector search with Redis python client |
4747
| [/vector-search/01_redisvl.ipynb](/python-recipes/vector-search/01_redisvl.ipynb) | Vector search with Redis Vector Library |
4848
| [/vector-search/02_hybrid_search.ipynb](/python-recipes/vector-search/02_hybrid_search.ipynb) | Hybrid search techniques with Redis (BM25 + Vector) |
49-
| [/vector-search/03_float16_support.ipynb](/python-recipes/vector-search/03_float16_support.ipynb) | Shows how to convert a float32 index to use float16 |
49+
| [/vector-search/03_dtype_support.ipynb](/python-recipes/vector-search/03_dtype_support.ipynb) | Shows how to convert a float32 index to float16 or integer dataypes|
5050

5151

5252
### Retrieval Augmented Generation (RAG)
@@ -109,6 +109,7 @@ Routing is a simple and effective way of preventing misuses with your AI applica
109109
| --- | --- |
110110
| [/recommendation-systems/00_content_filtering.ipynb](python-recipes/recommendation-systems/00_content_filtering.ipynb) | Intro content filtering example with redisvl |
111111
| [/recommendation-systems/01_collaborative_filtering.ipynb](python-recipes/recommendation-systems/01_collaborative_filtering.ipynb) | Intro collaborative filtering example with redisvl |
112+
| [/recommendation-systems/02_two_towers.ipynb](python-recipes/recommendation-systems/02_two_towers.ipynb) | Intro deep learning two tower example with redisvl |
112113

113114
### Feature Store
114115
| Recipe | Description |

0 commit comments

Comments
 (0)