CONTRIBUTING.md
LICENSE.txt
MANIFEST.in
README.md
VERSION
setup.cfg
setup.py
etc/smqtk/proxymanager.config
etc/smqtk/postgres/example_pgbouncer.ini
etc/smqtk/postgres/classification_element/example_table_init.sql
etc/smqtk/postgres/descriptor_element/example_table_init.sql
etc/smqtk/postgres/descriptor_index/example_table_init.sql
python/smqtk/__init__.py
python/smqtk/compute_functions.py
python/smqtk.egg-info/PKG-INFO
python/smqtk.egg-info/SOURCES.txt
python/smqtk.egg-info/dependency_links.txt
python/smqtk.egg-info/entry_points.txt
python/smqtk.egg-info/requires.txt
python/smqtk.egg-info/top_level.txt
python/smqtk/algorithms/__init__.py
python/smqtk/algorithms/classifier/__init__.py
python/smqtk/algorithms/classifier/index_label.py
python/smqtk/algorithms/classifier/libsvm.py
python/smqtk/algorithms/descriptor_generator/__init__.py
python/smqtk/algorithms/descriptor_generator/caffe_descriptor.py
python/smqtk/algorithms/descriptor_generator/colordescriptor/INSTALL.md
python/smqtk/algorithms/descriptor_generator/colordescriptor/__init__.py
python/smqtk/algorithms/descriptor_generator/colordescriptor/colordescriptor.py
python/smqtk/algorithms/descriptor_generator/colordescriptor/encode_FLANN.py
python/smqtk/algorithms/descriptor_generator/colordescriptor/utils.py
python/smqtk/algorithms/descriptor_generator/kwcnndescriptor/LICENSE
python/smqtk/algorithms/descriptor_generator/kwcnndescriptor/__init__.py
python/smqtk/algorithms/descriptor_generator/kwcnndescriptor/kwcnndescriptor.py
python/smqtk/algorithms/descriptor_generator/kwcnndescriptor/kwcnnmodel.npy
python/smqtk/algorithms/nn_index/__init__.py
python/smqtk/algorithms/nn_index/faiss.py
python/smqtk/algorithms/nn_index/flann.py
python/smqtk/algorithms/nn_index/mrpt.py
python/smqtk/algorithms/nn_index/hash_index/__init__.py
python/smqtk/algorithms/nn_index/hash_index/linear.py
python/smqtk/algorithms/nn_index/hash_index/sklearn_balltree.py
python/smqtk/algorithms/nn_index/lsh/__init__.py
python/smqtk/algorithms/nn_index/lsh/functors/__init__.py
python/smqtk/algorithms/nn_index/lsh/functors/itq.py
python/smqtk/algorithms/nn_index/lsh/functors/simple_rp.py
python/smqtk/algorithms/relevancy_index/__init__.py
python/smqtk/algorithms/relevancy_index/libsvm_hik.py
python/smqtk/bin/__init__.py
python/smqtk/bin/check_images.py
python/smqtk/bin/classifier_kfold_validation.py
python/smqtk/bin/classifier_model_validation.py
python/smqtk/bin/classifyFiles.py
python/smqtk/bin/computeDescriptor.py
python/smqtk/bin/compute_classifications.py
python/smqtk/bin/compute_hash_codes.py
python/smqtk/bin/compute_many_descriptors.py
python/smqtk/bin/createFileIngest.py
python/smqtk/bin/createGirderIngest.py
python/smqtk/bin/descriptors_to_svmtrainfile.py
python/smqtk/bin/generate_image_transform.py
python/smqtk/bin/iqrTrainClassifier.py
python/smqtk/bin/iqr_app_model_generation.py
python/smqtk/bin/make_balltree.py
python/smqtk/bin/minibatch_kmeans_clusters.py
python/smqtk/bin/nearest_neighbors.py
python/smqtk/bin/proxyManagerServer.py
python/smqtk/bin/removeOldFiles.py
python/smqtk/bin/runApplication.py
python/smqtk/bin/summarizePlugins.py
python/smqtk/bin/train_itq.py
python/smqtk/exceptions/__init__.py
python/smqtk/iqr/__init__.py
python/smqtk/iqr/iqr_controller.py
python/smqtk/iqr/iqr_session.py
python/smqtk/representation/__init__.py
python/smqtk/representation/classification_element_factory.py
python/smqtk/representation/descriptor_element_factory.py
python/smqtk/representation/classification_element/__init__.py
python/smqtk/representation/classification_element/file.py
python/smqtk/representation/classification_element/memory.py
python/smqtk/representation/classification_element/postgres.py
python/smqtk/representation/data_element/__init__.py
python/smqtk/representation/data_element/file_element.py
python/smqtk/representation/data_element/girder.py
python/smqtk/representation/data_element/hbase_element.py
python/smqtk/representation/data_element/memory_element.py
python/smqtk/representation/data_element/url_element.py
python/smqtk/representation/data_set/__init__.py
python/smqtk/representation/data_set/file_set.py
python/smqtk/representation/data_set/memory_set.py
python/smqtk/representation/descriptor_element/__init__.py
python/smqtk/representation/descriptor_element/_io.py
python/smqtk/representation/descriptor_element/cached_element_wrapper.py
python/smqtk/representation/descriptor_element/local_elements.py
python/smqtk/representation/descriptor_element/postgres.py
python/smqtk/representation/descriptor_element/solr_element.py
python/smqtk/representation/descriptor_index/__init__.py
python/smqtk/representation/descriptor_index/memory.py
python/smqtk/representation/descriptor_index/postgres.py
python/smqtk/representation/descriptor_index/solr_index.py
python/smqtk/representation/key_value/__init__.py
python/smqtk/representation/key_value/memory.py
python/smqtk/tests/__init__.py
python/smqtk/tests/test_cf_mbkmeans_clustering.py
python/smqtk/tests/algorithms/__init__.py
python/smqtk/tests/algorithms/classifier/__init__.py
python/smqtk/tests/algorithms/classifier/test_ClassifierAbstract.py
python/smqtk/tests/algorithms/classifier/test_IndexLabelClassifier.py
python/smqtk/tests/algorithms/classifier/test_SupervisedClassifierAbstract.py
python/smqtk/tests/algorithms/classifier/test_libsvm.py
python/smqtk/tests/algorithms/descriptor_generator/__init__.py
python/smqtk/tests/algorithms/descriptor_generator/test_DG_abstract.py
python/smqtk/tests/algorithms/descriptor_generator/test_caffe.py
python/smqtk/tests/algorithms/descriptor_generator/test_colordescriptor.py
python/smqtk/tests/algorithms/nn_index/__init__.py
python/smqtk/tests/algorithms/nn_index/test_NNI_FLANN.py
python/smqtk/tests/algorithms/nn_index/test_NNI_MRPT.py
python/smqtk/tests/algorithms/nn_index/test_NNI_abstract.py
python/smqtk/tests/algorithms/nn_index/test_NNI_lsh.py
python/smqtk/tests/algorithms/nn_index/hash_index/__init__.py
python/smqtk/tests/algorithms/nn_index/hash_index/test_HI_balltree.py
python/smqtk/tests/algorithms/nn_index/hash_index/test_linear.py
python/smqtk/tests/algorithms/nn_index/lsh_hash_functors/__init__.py
python/smqtk/tests/algorithms/nn_index/lsh_hash_functors/test_abstract.py
python/smqtk/tests/algorithms/nn_index/lsh_hash_functors/test_impl_getter.py
python/smqtk/tests/algorithms/nn_index/lsh_hash_functors/test_itq.py
python/smqtk/tests/algorithms/relevancy_index/__init__.py
python/smqtk/tests/algorithms/relevancy_index/test_RI_abstract.py
python/smqtk/tests/algorithms/relevancy_index/test_svm_hik.py
python/smqtk/tests/data/Lenna.alexnet_fc7_output.npy
python/smqtk/tests/data/Lenna.png
python/smqtk/tests/data/caffe.dummpy_network.prototxt
python/smqtk/tests/data/caffe.dummy_mean.npy
python/smqtk/tests/data/caffe.empty_model.caffemodel
python/smqtk/tests/data/test_file.dat
python/smqtk/tests/data/test_labels.txt
python/smqtk/tests/data/text_file
python/smqtk/tests/data/test_data_file_set_tree/UUID_0.dataElement
python/smqtk/tests/data/test_data_file_set_tree/UUID_1.dataElement
python/smqtk/tests/data/test_data_file_set_tree/UUID_2.dataElement
python/smqtk/tests/data/test_data_file_set_tree/nonmatching_filename
python/smqtk/tests/data/test_data_file_set_tree/0/0/UUID_000.dataElement
python/smqtk/tests/data/test_data_file_set_tree/0/0/UUID_001.dataElement
python/smqtk/tests/data/test_data_file_set_tree/0/0/UUID_003.dataelemenT
python/smqtk/tests/data/test_data_file_set_tree/0/1/UUID_012.dataElement
python/smqtk/tests/data/test_data_file_set_tree/1/3/something_else
python/smqtk/tests/data/test_data_file_set_tree/1/8/UUID_180.dataElement
python/smqtk/tests/data/test_data_file_set_tree/3/1/UUID_317.dataElement
python/smqtk/tests/data/test_data_file_set_tree/4/3/2/1/UUID_43210.dataElement
python/smqtk/tests/representation/__init__.py
python/smqtk/tests/representation/test_DescriptorElementFactory.py
python/smqtk/tests/representation/ClassificationElement/__init__.py
python/smqtk/tests/representation/ClassificationElement/test_CE_abstract.py
python/smqtk/tests/representation/ClassificationElement/test_CE_memory.py
python/smqtk/tests/representation/DataElement/__init__.py
python/smqtk/tests/representation/DataElement/test_DataElement_abstract.py
python/smqtk/tests/representation/DataElement/test_DataFileElement.py
python/smqtk/tests/representation/DataElement/test_DataMemoryElement.py
python/smqtk/tests/representation/DataElement/test_DataUrlElement.py
python/smqtk/tests/representation/DataElement/test_GirderDataElement.py
python/smqtk/tests/representation/DataElement/test_HBaseDataElement.py
python/smqtk/tests/representation/DataElement/test_from_uri.py
python/smqtk/tests/representation/DataSet/__init__.py
python/smqtk/tests/representation/DataSet/test_DataSet_abstract.py
python/smqtk/tests/representation/DataSet/test_FileSet.py
python/smqtk/tests/representation/DataSet/test_MemorySet.py
python/smqtk/tests/representation/DataSet/test_plugins.py
python/smqtk/tests/representation/DescriptorElement/__init__.py
python/smqtk/tests/representation/DescriptorElement/test_DescriptorElement_abstract.py
python/smqtk/tests/representation/DescriptorElement/test_DescriptorFileElement.py
python/smqtk/tests/representation/DescriptorElement/test_DescriptorMemoryElement.py
python/smqtk/tests/representation/DescriptorElement/test_DescriptorSolrElement.py
python/smqtk/tests/representation/DescriptorIndex/__init__.py
python/smqtk/tests/representation/DescriptorIndex/test_DI_abstract.py
python/smqtk/tests/representation/DescriptorIndex/test_DI_memory.py
python/smqtk/tests/representation/KeyValueStore/__init__.py
python/smqtk/tests/representation/KeyValueStore/test_KeyValueStoreAbstract.py
python/smqtk/tests/representation/KeyValueStore/test_MemoryKeyValueStore.py
python/smqtk/tests/utils/__init__.py
python/smqtk/tests/utils/test_bit_utils.py
python/smqtk/tests/utils/test_configurable_interface.py
python/smqtk/tests/utils/test_configuration.py
python/smqtk/tests/utils/test_factors.py
python/smqtk/tests/utils/test_image_utils.py
python/smqtk/tests/utils/test_merge_dict.py
python/smqtk/tests/utils/test_metrics.py
python/smqtk/tests/utils/test_parallel.py
python/smqtk/tests/utils/test_plugin_get.py
python/smqtk/tests/utils/test_plugin_tools.py
python/smqtk/tests/utils/test_string_utils.py
python/smqtk/tests/utils/test_url_tools.py
python/smqtk/tests/utils/file_utils/__init__.py
python/smqtk/tests/utils/file_utils/test_FileModificationMonitor.py
python/smqtk/tests/utils/file_utils/test_file_mimetype_filemagic.py
python/smqtk/tests/utils/file_utils/test_file_mimetype_tika.py
python/smqtk/tests/utils/file_utils/test_safe_create_dir.py
python/smqtk/tests/utils/file_utils/test_safe_file_write.py
python/smqtk/tests/utils/test_plugin_dir/__init__.py
python/smqtk/tests/utils/test_plugin_dir/external_1.py
python/smqtk/tests/utils/test_plugin_dir/external_2.py
python/smqtk/tests/utils/test_plugin_dir/internal_plugins/__init__.py
python/smqtk/tests/utils/test_plugin_dir/internal_plugins/implNormal.py
python/smqtk/tests/utils/test_plugin_dir/internal_plugins/implPartial.py
python/smqtk/tests/utils/test_plugin_dir/internal_plugins/implSkip.py
python/smqtk/utils/__init__.py
python/smqtk/utils/bin_utils.py
python/smqtk/utils/bit_utils.py
python/smqtk/utils/configurable_interface.py
python/smqtk/utils/database_info.py
python/smqtk/utils/distance_kernel.py
python/smqtk/utils/factors.py
python/smqtk/utils/feature_memory.py
python/smqtk/utils/file_utils.py
python/smqtk/utils/girder.py
python/smqtk/utils/image_utils.py
python/smqtk/utils/metrics.py
python/smqtk/utils/mongo_sessions.py
python/smqtk/utils/parallel.py
python/smqtk/utils/plugin.py
python/smqtk/utils/preview_cache.py
python/smqtk/utils/proxy_manager.py
python/smqtk/utils/read_write_lock.py
python/smqtk/utils/safe_config_comment_parser.py
python/smqtk/utils/signal_handler.py
python/smqtk/utils/simple_timer.py
python/smqtk/utils/string_utils.py
python/smqtk/utils/timed_cache.py
python/smqtk/utils/url.py
python/smqtk/utils/video_utils.py
python/smqtk/utils/jsmin/README.txt
python/smqtk/utils/jsmin/__init__.py
python/smqtk/utils/jsmin/test.py
python/smqtk/web/__init__.py
python/smqtk/web/descriptor_service/__init__.py
python/smqtk/web/descriptor_service/example_config.json
python/smqtk/web/iqr_service/__init__.py
python/smqtk/web/iqr_service/api.rst
python/smqtk/web/iqr_service/use_case_example.rst
python/smqtk/web/nearestneighbor_service/__init__.py
python/smqtk/web/nearestneighbor_service/example_config.json
python/smqtk/web/search_app/__init__.py
python/smqtk/web/search_app/config.IqrSearchApp.json
python/smqtk/web/search_app/config.classifyFiles.json
python/smqtk/web/search_app/config.iqrTrainClassifier.json
python/smqtk/web/search_app/modules/__init__.py
python/smqtk/web/search_app/modules/static_host.py
python/smqtk/web/search_app/modules/file_upload/FileUploadMod.py
python/smqtk/web/search_app/modules/file_upload/__init__.py
python/smqtk/web/search_app/modules/file_upload/static/css/smqtk_upload.css
python/smqtk/web/search_app/modules/file_upload/static/js/flow.js
python/smqtk/web/search_app/modules/file_upload/static/js/flow.min.js
python/smqtk/web/search_app/modules/file_upload/static/js/smqtk_upload.js
python/smqtk/web/search_app/modules/iqr/__init__.py
python/smqtk/web/search_app/modules/iqr/iqr_search.py
python/smqtk/web/search_app/modules/iqr/static/css/smqtk.iqr.css
python/smqtk/web/search_app/modules/iqr/static/img/carbon-rejected.png
python/smqtk/web/search_app/modules/iqr/static/img/carbon-rejected_on.png
python/smqtk/web/search_app/modules/iqr/static/img/carbon-verified.png
python/smqtk/web/search_app/modules/iqr/static/img/carbon-verified_on.png
python/smqtk/web/search_app/modules/iqr/static/img/explicit_marker_off.png
python/smqtk/web/search_app/modules/iqr/static/img/explicit_marker_on.png
python/smqtk/web/search_app/modules/iqr/static/img/explicit_overlay.png
python/smqtk/web/search_app/modules/iqr/static/img/loading.gif
python/smqtk/web/search_app/modules/iqr/static/js/FileSaver.LICENSE.md
python/smqtk/web/search_app/modules/iqr/static/js/FileSaver.js
python/smqtk/web/search_app/modules/iqr/static/js/FileSaver.min.js
python/smqtk/web/search_app/modules/iqr/static/js/smqtk.data_view.js
python/smqtk/web/search_app/modules/iqr/static/js/smqtk.iqr_refine_view.js
python/smqtk/web/search_app/modules/iqr/static/js/smqtk.iqr_status_view.js
python/smqtk/web/search_app/modules/iqr/static/js/smqtk.iqr_view.js
python/smqtk/web/search_app/modules/iqr/static/js/smqtk.progress_bars.js
python/smqtk/web/search_app/modules/iqr/templates/base.html
python/smqtk/web/search_app/modules/iqr/templates/iqr_search_index.html
python/smqtk/web/search_app/modules/login/LoginMod.py
python/smqtk/web/search_app/modules/login/__init__.py
python/smqtk/web/search_app/modules/login/users.json
python/smqtk/web/search_app/modules/login/templates/login.html
python/smqtk/web/search_app/static/css/bootstrap-theme.css
python/smqtk/web/search_app/static/css/bootstrap-theme.min.css
python/smqtk/web/search_app/static/css/bootstrap.css
python/smqtk/web/search_app/static/css/bootstrap.min.css
python/smqtk/web/search_app/static/css/clip.view.css
python/smqtk/web/search_app/static/css/jquery-ui.css
python/smqtk/web/search_app/static/css/jquery-ui.min.css
python/smqtk/web/search_app/static/css/jquery-ui.structure.css
python/smqtk/web/search_app/static/css/jquery-ui.structure.min.css
python/smqtk/web/search_app/static/css/jquery-ui.theme.css
python/smqtk/web/search_app/static/css/jquery-ui.theme.min.css
python/smqtk/web/search_app/static/css/images/ui-bg_diagonals-thick_18_b81900_40x40.png
python/smqtk/web/search_app/static/css/images/ui-bg_diagonals-thick_20_666666_40x40.png
python/smqtk/web/search_app/static/css/images/ui-bg_flat_10_000000_40x100.png
python/smqtk/web/search_app/static/css/images/ui-bg_glass_100_f6f6f6_1x400.png
python/smqtk/web/search_app/static/css/images/ui-bg_glass_100_fdf5ce_1x400.png
python/smqtk/web/search_app/static/css/images/ui-bg_glass_65_ffffff_1x400.png
python/smqtk/web/search_app/static/css/images/ui-bg_gloss-wave_35_f6a828_500x100.png
python/smqtk/web/search_app/static/css/images/ui-bg_highlight-soft_100_eeeeee_1x100.png
python/smqtk/web/search_app/static/css/images/ui-bg_highlight-soft_75_ffe45c_1x100.png
python/smqtk/web/search_app/static/css/images/ui-icons_222222_256x240.png
python/smqtk/web/search_app/static/css/images/ui-icons_228ef1_256x240.png
python/smqtk/web/search_app/static/css/images/ui-icons_ef8c08_256x240.png
python/smqtk/web/search_app/static/css/images/ui-icons_ffd27a_256x240.png
python/smqtk/web/search_app/static/css/images/ui-icons_ffffff_256x240.png
python/smqtk/web/search_app/static/img/Kitwarelogo-gradation.png
python/smqtk/web/search_app/static/img/cancel.png
python/smqtk/web/search_app/static/img/done.png
python/smqtk/web/search_app/static/img/pause.png
python/smqtk/web/search_app/static/img/resume.png
python/smqtk/web/search_app/static/js/bootbox.js
python/smqtk/web/search_app/static/js/bootbox.min.js
python/smqtk/web/search_app/static/js/bootstrap.js
python/smqtk/web/search_app/static/js/bootstrap.min.js
python/smqtk/web/search_app/static/js/jquery-1.11.1.js
python/smqtk/web/search_app/static/js/jquery-1.11.1.min.js
python/smqtk/web/search_app/static/js/jquery-ui.js
python/smqtk/web/search_app/static/js/jquery-ui.min.js
python/smqtk/web/search_app/static/js/jquery.timer.js
python/smqtk/web/search_app/static/js/setZeroTimeout.js
python/smqtk/web/search_app/static/js/smqtk.alerts.js
python/smqtk/web/search_app/templates/base.html
python/smqtk/web/search_app/templates/index.html