Skip to content

Commit 4e5ce11

Browse files
authored
Merge pull request #2 from dataiku/release/0.1.0
Clean and polish before release
2 parents 48374c2 + 60f5f7a commit 4e5ce11

26 files changed

Lines changed: 877 additions & 435 deletions

File tree

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright [yyyy] [name of copyright owner]
189+
Copyright 2020 Dataiku
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ unit-tests:
3131
pip install --no-cache-dir -r tests/python/requirements.txt; \
3232
pip install --no-cache-dir -r code-env/python/spec/requirements.txt; \
3333
export PYTHONPATH="$(PYTHONPATH):$(PWD)/python-lib"; \
34-
pytest -o junit_family=xunit2 --junitxml=unit.xml tests/python/unit || true; \
34+
pytest -o junit_family=xunit2 --junitxml=unit.xml tests/python/unit || true; \
3535
deactivate; \
3636
)
3737
@echo "[SUCCESS] Running unit tests: Done!"

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
# Near Neighbors Search Plugin
1+
# Similarity Search Plugin
22

3-
This Dataiku DSS plugin provides two recipes to build and use Near Neighbor Search (NNS) indices.
3+
![GitHub release (latest by date)](https://img.shields.io/github/v/release/dataiku/dss-plugin-similarity-search) ![Build status](https://img.shields.io/badge/build-passing-brightgreen) ![Support level](https://img.shields.io/badge/support-Unsupported-orange)
44

5-
This plugin is not compatible with partitioning.
5+
This Dataiku DSS plugin provides two recipes to find similar items in your data using Nearest Neighbor Search indices.
66

7-
Documentation: https://www.dataiku.com/dss/plugins/info/near-neighbor-search.html
7+
⚠️ This plugin is not currently compatible with [partitioning](https://doc.dataiku.com/dss/latest/partitions/index.html).
8+
9+
Documentation: https://www.dataiku.com/product/plugins/similarity-search/
810

911
## License
1012

11-
This plugin is distributed under the Apache License version 2.0
13+
This plugin is distributed under the Apache License version 2.0.

code-env/python/desc.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44
],
55
"forceConda": false,
66
"installCorePackages": true,
7-
"installJupyterSupport": false
7+
"installJupyterSupport": true,
8+
"corePackagesSet": "PANDAS10"
89
}
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
annoy==1.16.3
22
faiss-cpu==1.6.1
3-
simplejson==3.17.0
3+
simplejson==3.17.0
4+
tqdm==4.51.0

custom-recipes/near-neighbors-search-find-near-neighbors/recipe.py

Lines changed: 0 additions & 48 deletions
This file was deleted.

custom-recipes/near-neighbors-search-index-creation/recipe.json

Lines changed: 0 additions & 124 deletions
This file was deleted.

custom-recipes/near-neighbors-search-index-creation/recipe.py

Lines changed: 0 additions & 20 deletions
This file was deleted.

0 commit comments

Comments
 (0)