├── LICENSE ├── README.md ├── chapter1 ├── classification.ipynb ├── question-answering.ipynb ├── sentiment-analysis.ipynb └── text-summarization.ipynb ├── chapter10 └── PacktGPT_Plugin │ ├── .well-known │ └── ai-plugin.json │ ├── Dockerfile │ ├── README.md │ ├── app.py │ ├── chart.py │ ├── logo.png │ ├── openapi.yaml │ └── requirements.txt ├── chapter2 ├── dense-vs-sparse.ipynb ├── distance-magnitude.ipynb ├── knn-search.ipynb └── mapping-and-indexing-vectors.ipynb ├── chapter3 └── Chapter_3_Model_Management_and_Vector_Considerations_in_Elastic.ipynb ├── chapter5 ├── Chapter_5_Image_Search.ipynb └── images │ ├── citations.txt │ └── images.tar ├── chapter6 └── chapter6_pii_redaction.ipynb ├── chapter7 └── vector-search-for-observability.ipynb └── chapter9 ├── README.md ├── config.py ├── data-preparation.ipynb ├── main.py ├── recipe_generator.py └── style.css /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vector-Search-for-Practitioners-with-Elastic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vector-Search-for-Practitioners-with-Elastic/HEAD/README.md -------------------------------------------------------------------------------- /chapter1/classification.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vector-Search-for-Practitioners-with-Elastic/HEAD/chapter1/classification.ipynb -------------------------------------------------------------------------------- /chapter1/question-answering.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vector-Search-for-Practitioners-with-Elastic/HEAD/chapter1/question-answering.ipynb -------------------------------------------------------------------------------- /chapter1/sentiment-analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vector-Search-for-Practitioners-with-Elastic/HEAD/chapter1/sentiment-analysis.ipynb -------------------------------------------------------------------------------- /chapter1/text-summarization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vector-Search-for-Practitioners-with-Elastic/HEAD/chapter1/text-summarization.ipynb -------------------------------------------------------------------------------- /chapter10/PacktGPT_Plugin/.well-known/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vector-Search-for-Practitioners-with-Elastic/HEAD/chapter10/PacktGPT_Plugin/.well-known/ai-plugin.json -------------------------------------------------------------------------------- /chapter10/PacktGPT_Plugin/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vector-Search-for-Practitioners-with-Elastic/HEAD/chapter10/PacktGPT_Plugin/Dockerfile -------------------------------------------------------------------------------- /chapter10/PacktGPT_Plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vector-Search-for-Practitioners-with-Elastic/HEAD/chapter10/PacktGPT_Plugin/README.md -------------------------------------------------------------------------------- /chapter10/PacktGPT_Plugin/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vector-Search-for-Practitioners-with-Elastic/HEAD/chapter10/PacktGPT_Plugin/app.py -------------------------------------------------------------------------------- /chapter10/PacktGPT_Plugin/chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vector-Search-for-Practitioners-with-Elastic/HEAD/chapter10/PacktGPT_Plugin/chart.py -------------------------------------------------------------------------------- /chapter10/PacktGPT_Plugin/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vector-Search-for-Practitioners-with-Elastic/HEAD/chapter10/PacktGPT_Plugin/logo.png -------------------------------------------------------------------------------- /chapter10/PacktGPT_Plugin/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vector-Search-for-Practitioners-with-Elastic/HEAD/chapter10/PacktGPT_Plugin/openapi.yaml -------------------------------------------------------------------------------- /chapter10/PacktGPT_Plugin/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vector-Search-for-Practitioners-with-Elastic/HEAD/chapter10/PacktGPT_Plugin/requirements.txt -------------------------------------------------------------------------------- /chapter2/dense-vs-sparse.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vector-Search-for-Practitioners-with-Elastic/HEAD/chapter2/dense-vs-sparse.ipynb -------------------------------------------------------------------------------- /chapter2/distance-magnitude.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vector-Search-for-Practitioners-with-Elastic/HEAD/chapter2/distance-magnitude.ipynb -------------------------------------------------------------------------------- /chapter2/knn-search.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vector-Search-for-Practitioners-with-Elastic/HEAD/chapter2/knn-search.ipynb -------------------------------------------------------------------------------- /chapter2/mapping-and-indexing-vectors.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vector-Search-for-Practitioners-with-Elastic/HEAD/chapter2/mapping-and-indexing-vectors.ipynb -------------------------------------------------------------------------------- /chapter3/Chapter_3_Model_Management_and_Vector_Considerations_in_Elastic.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vector-Search-for-Practitioners-with-Elastic/HEAD/chapter3/Chapter_3_Model_Management_and_Vector_Considerations_in_Elastic.ipynb -------------------------------------------------------------------------------- /chapter5/Chapter_5_Image_Search.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vector-Search-for-Practitioners-with-Elastic/HEAD/chapter5/Chapter_5_Image_Search.ipynb -------------------------------------------------------------------------------- /chapter5/images/citations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vector-Search-for-Practitioners-with-Elastic/HEAD/chapter5/images/citations.txt -------------------------------------------------------------------------------- /chapter5/images/images.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vector-Search-for-Practitioners-with-Elastic/HEAD/chapter5/images/images.tar -------------------------------------------------------------------------------- /chapter6/chapter6_pii_redaction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vector-Search-for-Practitioners-with-Elastic/HEAD/chapter6/chapter6_pii_redaction.ipynb -------------------------------------------------------------------------------- /chapter7/vector-search-for-observability.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vector-Search-for-Practitioners-with-Elastic/HEAD/chapter7/vector-search-for-observability.ipynb -------------------------------------------------------------------------------- /chapter9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vector-Search-for-Practitioners-with-Elastic/HEAD/chapter9/README.md -------------------------------------------------------------------------------- /chapter9/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vector-Search-for-Practitioners-with-Elastic/HEAD/chapter9/config.py -------------------------------------------------------------------------------- /chapter9/data-preparation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vector-Search-for-Practitioners-with-Elastic/HEAD/chapter9/data-preparation.ipynb -------------------------------------------------------------------------------- /chapter9/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vector-Search-for-Practitioners-with-Elastic/HEAD/chapter9/main.py -------------------------------------------------------------------------------- /chapter9/recipe_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vector-Search-for-Practitioners-with-Elastic/HEAD/chapter9/recipe_generator.py -------------------------------------------------------------------------------- /chapter9/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vector-Search-for-Practitioners-with-Elastic/HEAD/chapter9/style.css --------------------------------------------------------------------------------