├── INSTALL.md ├── LICENSE ├── README.md ├── TODO ├── setup.py ├── simsearch ├── __init__.py ├── bsets.py ├── indexer.py ├── simsphinx.py └── utils.py ├── tests └── test_argsort_best.py ├── tools ├── index_features.py └── query_index.py └── tutorial ├── README.md ├── config └── sphinx_indexer.cfg ├── data ├── sim-index │ └── .gitignore ├── sph-index │ └── .gitignore └── sph-logs │ └── .gitignore ├── sql ├── _build_from_imdb.sql ├── imdb_top400.data.sql └── imdb_top400.schema.sql └── test.py /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexksikes/SimSearch/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexksikes/SimSearch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexksikes/SimSearch/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexksikes/SimSearch/HEAD/TODO -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexksikes/SimSearch/HEAD/setup.py -------------------------------------------------------------------------------- /simsearch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexksikes/SimSearch/HEAD/simsearch/__init__.py -------------------------------------------------------------------------------- /simsearch/bsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexksikes/SimSearch/HEAD/simsearch/bsets.py -------------------------------------------------------------------------------- /simsearch/indexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexksikes/SimSearch/HEAD/simsearch/indexer.py -------------------------------------------------------------------------------- /simsearch/simsphinx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexksikes/SimSearch/HEAD/simsearch/simsphinx.py -------------------------------------------------------------------------------- /simsearch/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexksikes/SimSearch/HEAD/simsearch/utils.py -------------------------------------------------------------------------------- /tests/test_argsort_best.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexksikes/SimSearch/HEAD/tests/test_argsort_best.py -------------------------------------------------------------------------------- /tools/index_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexksikes/SimSearch/HEAD/tools/index_features.py -------------------------------------------------------------------------------- /tools/query_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexksikes/SimSearch/HEAD/tools/query_index.py -------------------------------------------------------------------------------- /tutorial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexksikes/SimSearch/HEAD/tutorial/README.md -------------------------------------------------------------------------------- /tutorial/config/sphinx_indexer.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexksikes/SimSearch/HEAD/tutorial/config/sphinx_indexer.cfg -------------------------------------------------------------------------------- /tutorial/data/sim-index/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tutorial/data/sph-index/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tutorial/data/sph-logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tutorial/sql/_build_from_imdb.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexksikes/SimSearch/HEAD/tutorial/sql/_build_from_imdb.sql -------------------------------------------------------------------------------- /tutorial/sql/imdb_top400.data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexksikes/SimSearch/HEAD/tutorial/sql/imdb_top400.data.sql -------------------------------------------------------------------------------- /tutorial/sql/imdb_top400.schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexksikes/SimSearch/HEAD/tutorial/sql/imdb_top400.schema.sql -------------------------------------------------------------------------------- /tutorial/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexksikes/SimSearch/HEAD/tutorial/test.py --------------------------------------------------------------------------------