├── .coveragerc ├── .gitattributes ├── .gitignore ├── .travis.yml ├── HISTORY.md ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── conda-recipes ├── elasticsearch-py │ ├── bld.bat │ ├── build.sh │ └── meta.yaml ├── funcy │ ├── bld.bat │ ├── build.sh │ └── meta.yaml ├── httpretty │ ├── bld.bat │ ├── build.sh │ └── meta.yaml ├── ijson │ ├── bld.bat │ ├── build.sh │ └── meta.yaml ├── jsonpickle │ ├── bld.bat │ ├── build.sh │ └── meta.yaml ├── liblinear │ ├── bld.bat │ ├── build.sh │ └── meta.yaml ├── libsvm │ ├── bld.bat │ ├── build.sh │ ├── enable_zip.patch │ └── meta.yaml ├── nltk │ ├── bld.bat │ ├── build.sh │ └── meta.yaml ├── pattern │ ├── bld.bat │ ├── build.sh │ ├── meta.yaml │ └── no_lib_packaging.patch ├── pyldavis │ ├── bld.bat │ ├── build.sh │ └── meta.yaml ├── pypandoc │ ├── build.sh │ └── meta.yaml ├── pysolr │ ├── bld.bat │ ├── build.sh │ └── meta.yaml ├── setuptools-markdown │ ├── build.sh │ └── meta.yaml ├── smart_open │ ├── bld.bat │ ├── build.sh │ ├── httpretty_version.patch │ └── meta.yaml ├── solrpy │ ├── bld.bat │ ├── build.sh │ └── meta.yaml ├── textblob │ ├── bld.bat │ ├── build.sh │ └── meta.yaml ├── topik │ ├── build.sh │ └── meta.yaml ├── urllib3 │ ├── bld.bat │ ├── build.sh │ └── meta.yaml └── versioneer │ ├── bld.bat │ ├── build.sh │ ├── meta.yaml │ ├── setup.cfg │ └── setup.py ├── docs ├── Makefile ├── _static │ └── img │ │ ├── thumbnail_ldavis.png │ │ └── thumbnail_termite.png ├── api │ ├── modules.rst │ ├── topik.fileio.rst │ ├── topik.fileio.tests.rst │ ├── topik.models.rst │ ├── topik.models.tests.rst │ ├── topik.rst │ ├── topik.simple_run.rst │ ├── topik.simple_run.tests.rst │ ├── topik.tokenizers.rst │ ├── topik.tokenizers.tests.rst │ ├── topik.transformers.rst │ ├── topik.vectorizers.rst │ ├── topik.vectorizers.tests.rst │ ├── topik.visualizers.rst │ └── topik.visualizers.tests.rst ├── api_levels.rst ├── conf.py ├── example.rst ├── index.rst ├── installation.rst ├── intro-dev.rst ├── make.bat ├── projects.rst ├── read_input.rst ├── requirements.txt ├── tokenization.rst ├── topic_modeling.rst ├── usage_python.rst ├── vectorization.rst ├── visualization.rst └── viz │ ├── ldavis_open.html │ ├── modal.html │ ├── reviews_pyldavis.html │ ├── reviews_termite.html │ ├── termite_open.html │ ├── thumbnail_ldavis.png │ └── thumbnail_termite.png ├── environment.yml ├── requirements.txt ├── requirements_recipes ├── elasticsearch │ ├── bld.bat │ ├── build.sh │ └── meta.yaml ├── solrpy │ ├── bld.bat │ ├── build.sh │ └── meta.yaml └── urllib3 │ ├── bld.bat │ ├── build.sh │ └── meta.yaml ├── setup.cfg ├── setup.py ├── topik ├── __init__.py ├── _version.py ├── fileio │ ├── __init__.py │ ├── _registry.py │ ├── base_output.py │ ├── in_document_folder.py │ ├── in_elastic.py │ ├── in_json.py │ ├── out_elastic.py │ ├── out_memory.py │ ├── project.py │ ├── reader.py │ └── tests │ │ ├── __init__.py │ │ ├── _solutions.py │ │ ├── data │ │ ├── .DS_Store │ │ ├── termite.csv │ │ ├── test_data_folder_files │ │ │ ├── doc1 │ │ │ ├── doc2 │ │ │ └── doc3 │ │ ├── test_data_folder_files_gz │ │ │ ├── doc1.gz │ │ │ ├── doc2.gz │ │ │ └── doc3.gz │ │ ├── test_data_folder_files_junk │ │ │ ├── doc1 │ │ │ ├── doc2 │ │ │ └── doc3 │ │ ├── test_data_json_stream.json │ │ ├── test_data_large_json.json │ │ ├── test_data_solr │ │ │ ├── solr-json-file-0.json │ │ │ ├── solr-json-file-1.json │ │ │ ├── solr-json-file-10.json │ │ │ ├── solr-json-file-11.json │ │ │ ├── solr-json-file-12.json │ │ │ ├── solr-json-file-13.json │ │ │ ├── solr-json-file-14.json │ │ │ ├── solr-json-file-15.json │ │ │ ├── solr-json-file-16.json │ │ │ ├── solr-json-file-17.json │ │ │ ├── solr-json-file-18.json │ │ │ ├── solr-json-file-19.json │ │ │ ├── solr-json-file-2.json │ │ │ ├── solr-json-file-20.json │ │ │ ├── solr-json-file-21.json │ │ │ ├── solr-json-file-22.json │ │ │ ├── solr-json-file-23.json │ │ │ ├── solr-json-file-24.json │ │ │ ├── solr-json-file-25.json │ │ │ ├── solr-json-file-26.json │ │ │ ├── solr-json-file-27.json │ │ │ ├── solr-json-file-28.json │ │ │ ├── solr-json-file-29.json │ │ │ ├── solr-json-file-3.json │ │ │ ├── solr-json-file-30.json │ │ │ ├── solr-json-file-31.json │ │ │ ├── solr-json-file-32.json │ │ │ ├── solr-json-file-33.json │ │ │ ├── solr-json-file-34.json │ │ │ ├── solr-json-file-35.json │ │ │ ├── solr-json-file-36.json │ │ │ ├── solr-json-file-37.json │ │ │ ├── solr-json-file-38.json │ │ │ ├── solr-json-file-39.json │ │ │ ├── solr-json-file-4.json │ │ │ ├── solr-json-file-40.json │ │ │ ├── solr-json-file-41.json │ │ │ ├── solr-json-file-42.json │ │ │ ├── solr-json-file-43.json │ │ │ ├── solr-json-file-44.json │ │ │ ├── solr-json-file-45.json │ │ │ ├── solr-json-file-46.json │ │ │ ├── solr-json-file-47.json │ │ │ ├── solr-json-file-48.json │ │ │ ├── solr-json-file-49.json │ │ │ ├── solr-json-file-5.json │ │ │ ├── solr-json-file-50.json │ │ │ ├── solr-json-file-51.json │ │ │ ├── solr-json-file-52.json │ │ │ ├── solr-json-file-53.json │ │ │ ├── solr-json-file-54.json │ │ │ ├── solr-json-file-55.json │ │ │ ├── solr-json-file-56.json │ │ │ ├── solr-json-file-57.json │ │ │ ├── solr-json-file-58.json │ │ │ ├── solr-json-file-59.json │ │ │ ├── solr-json-file-6.json │ │ │ ├── solr-json-file-60.json │ │ │ ├── solr-json-file-61.json │ │ │ ├── solr-json-file-62.json │ │ │ ├── solr-json-file-63.json │ │ │ ├── solr-json-file-64.json │ │ │ ├── solr-json-file-65.json │ │ │ ├── solr-json-file-66.json │ │ │ ├── solr-json-file-67.json │ │ │ ├── solr-json-file-68.json │ │ │ ├── solr-json-file-69.json │ │ │ ├── solr-json-file-7.json │ │ │ ├── solr-json-file-70.json │ │ │ ├── solr-json-file-71.json │ │ │ ├── solr-json-file-72.json │ │ │ ├── solr-json-file-73.json │ │ │ ├── solr-json-file-74.json │ │ │ ├── solr-json-file-75.json │ │ │ ├── solr-json-file-76.json │ │ │ ├── solr-json-file-77.json │ │ │ ├── solr-json-file-78.json │ │ │ ├── solr-json-file-79.json │ │ │ ├── solr-json-file-8.json │ │ │ ├── solr-json-file-80.json │ │ │ ├── solr-json-file-81.json │ │ │ ├── solr-json-file-82.json │ │ │ ├── solr-json-file-83.json │ │ │ ├── solr-json-file-84.json │ │ │ ├── solr-json-file-85.json │ │ │ ├── solr-json-file-86.json │ │ │ ├── solr-json-file-87.json │ │ │ ├── solr-json-file-88.json │ │ │ ├── solr-json-file-89.json │ │ │ ├── solr-json-file-9.json │ │ │ ├── solr-json-file-90.json │ │ │ ├── solr-json-file-91.json │ │ │ ├── solr-json-file-92.json │ │ │ ├── solr-json-file-93.json │ │ │ ├── solr-json-file-94.json │ │ │ ├── solr-json-file-95.json │ │ │ ├── solr-json-file-96.json │ │ │ ├── solr-json-file-97.json │ │ │ ├── solr-json-file-98.json │ │ │ └── solr-json-file-99.json │ │ └── wiki_sample_data.json │ │ ├── test_in_document_folder.py │ │ ├── test_in_elastic.py │ │ ├── test_in_json.py │ │ ├── test_outputs.py │ │ ├── test_project.py │ │ └── test_reader.py ├── models │ ├── __init__.py │ ├── _registry.py │ ├── base_model_output.py │ ├── lda.py │ ├── plsa.py │ └── tests │ │ ├── __init__.py │ │ ├── test_data.py │ │ ├── test_lda.py │ │ └── test_plsa.py ├── simple_run │ ├── __init__.py │ ├── cli.py │ ├── run.py │ └── tests │ │ ├── __init__.py │ │ └── test_run_api.py ├── singleton_registry.py ├── tokenizers │ ├── __init__.py │ ├── _registry.py │ ├── entities.py │ ├── ngrams.py │ ├── simple.py │ └── tests │ │ ├── __init__.py │ │ ├── test_entities.py │ │ ├── test_ngrams.py │ │ └── test_simple.py ├── transformers │ ├── __init__.py │ └── _registry.py ├── vectorizers │ ├── __init__.py │ ├── _registry.py │ ├── bag_of_words.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_bag_of_words.py │ │ ├── test_output.py │ │ └── test_tfidf.py │ ├── tfidf.py │ └── vectorizer_output.py └── visualizers │ ├── __init__.py │ ├── _registry.py │ ├── data_formatters.py │ ├── pyldavis.py │ ├── termite_plot.py │ └── tests │ ├── __init__.py │ ├── test_ldavis.py │ └── test_termite.py └── versioneer.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | topik/_version.py export-subst 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/.travis.yml -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/README.md -------------------------------------------------------------------------------- /conda-recipes/elasticsearch-py/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/conda-recipes/elasticsearch-py/bld.bat -------------------------------------------------------------------------------- /conda-recipes/elasticsearch-py/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | $PYTHON setup.py install 4 | -------------------------------------------------------------------------------- /conda-recipes/elasticsearch-py/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/conda-recipes/elasticsearch-py/meta.yaml -------------------------------------------------------------------------------- /conda-recipes/funcy/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/conda-recipes/funcy/bld.bat -------------------------------------------------------------------------------- /conda-recipes/funcy/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | $PYTHON setup.py install 4 | -------------------------------------------------------------------------------- /conda-recipes/funcy/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/conda-recipes/funcy/meta.yaml -------------------------------------------------------------------------------- /conda-recipes/httpretty/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/conda-recipes/httpretty/bld.bat -------------------------------------------------------------------------------- /conda-recipes/httpretty/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo urllib3 > requirements.txt 3 | $PYTHON setup.py install 4 | -------------------------------------------------------------------------------- /conda-recipes/httpretty/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/conda-recipes/httpretty/meta.yaml -------------------------------------------------------------------------------- /conda-recipes/ijson/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/conda-recipes/ijson/bld.bat -------------------------------------------------------------------------------- /conda-recipes/ijson/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | $PYTHON setup.py install 4 | -------------------------------------------------------------------------------- /conda-recipes/ijson/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/conda-recipes/ijson/meta.yaml -------------------------------------------------------------------------------- /conda-recipes/jsonpickle/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/conda-recipes/jsonpickle/bld.bat -------------------------------------------------------------------------------- /conda-recipes/jsonpickle/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | $PYTHON setup.py install 4 | -------------------------------------------------------------------------------- /conda-recipes/jsonpickle/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/conda-recipes/jsonpickle/meta.yaml -------------------------------------------------------------------------------- /conda-recipes/liblinear/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/conda-recipes/liblinear/bld.bat -------------------------------------------------------------------------------- /conda-recipes/liblinear/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/conda-recipes/liblinear/build.sh -------------------------------------------------------------------------------- /conda-recipes/liblinear/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/conda-recipes/liblinear/meta.yaml -------------------------------------------------------------------------------- /conda-recipes/libsvm/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/conda-recipes/libsvm/bld.bat -------------------------------------------------------------------------------- /conda-recipes/libsvm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/conda-recipes/libsvm/build.sh -------------------------------------------------------------------------------- /conda-recipes/libsvm/enable_zip.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/conda-recipes/libsvm/enable_zip.patch -------------------------------------------------------------------------------- /conda-recipes/libsvm/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/conda-recipes/libsvm/meta.yaml -------------------------------------------------------------------------------- /conda-recipes/nltk/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/conda-recipes/nltk/bld.bat -------------------------------------------------------------------------------- /conda-recipes/nltk/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/conda-recipes/nltk/build.sh -------------------------------------------------------------------------------- /conda-recipes/nltk/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/conda-recipes/nltk/meta.yaml -------------------------------------------------------------------------------- /conda-recipes/pattern/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/conda-recipes/pattern/bld.bat -------------------------------------------------------------------------------- /conda-recipes/pattern/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | $PYTHON setup.py install 4 | -------------------------------------------------------------------------------- /conda-recipes/pattern/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/conda-recipes/pattern/meta.yaml -------------------------------------------------------------------------------- /conda-recipes/pattern/no_lib_packaging.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/conda-recipes/pattern/no_lib_packaging.patch -------------------------------------------------------------------------------- /conda-recipes/pyldavis/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/conda-recipes/pyldavis/bld.bat -------------------------------------------------------------------------------- /conda-recipes/pyldavis/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | $PYTHON setup.py install 4 | -------------------------------------------------------------------------------- /conda-recipes/pyldavis/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/conda-recipes/pyldavis/meta.yaml -------------------------------------------------------------------------------- /conda-recipes/pypandoc/build.sh: -------------------------------------------------------------------------------- 1 | python setup.py install -------------------------------------------------------------------------------- /conda-recipes/pypandoc/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/conda-recipes/pypandoc/meta.yaml -------------------------------------------------------------------------------- /conda-recipes/pysolr/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/conda-recipes/pysolr/bld.bat -------------------------------------------------------------------------------- /conda-recipes/pysolr/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | $PYTHON setup.py install 4 | -------------------------------------------------------------------------------- /conda-recipes/pysolr/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/conda-recipes/pysolr/meta.yaml -------------------------------------------------------------------------------- /conda-recipes/setuptools-markdown/build.sh: -------------------------------------------------------------------------------- 1 | python setup.py install -------------------------------------------------------------------------------- /conda-recipes/setuptools-markdown/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/conda-recipes/setuptools-markdown/meta.yaml -------------------------------------------------------------------------------- /conda-recipes/smart_open/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/conda-recipes/smart_open/bld.bat -------------------------------------------------------------------------------- /conda-recipes/smart_open/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | $PYTHON setup.py install 4 | -------------------------------------------------------------------------------- /conda-recipes/smart_open/httpretty_version.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/conda-recipes/smart_open/httpretty_version.patch -------------------------------------------------------------------------------- /conda-recipes/smart_open/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/conda-recipes/smart_open/meta.yaml -------------------------------------------------------------------------------- /conda-recipes/solrpy/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/conda-recipes/solrpy/bld.bat -------------------------------------------------------------------------------- /conda-recipes/solrpy/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | $PYTHON setup.py install 4 | -------------------------------------------------------------------------------- /conda-recipes/solrpy/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/conda-recipes/solrpy/meta.yaml -------------------------------------------------------------------------------- /conda-recipes/textblob/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/conda-recipes/textblob/bld.bat -------------------------------------------------------------------------------- /conda-recipes/textblob/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | $PYTHON setup.py install 4 | -------------------------------------------------------------------------------- /conda-recipes/textblob/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/conda-recipes/textblob/meta.yaml -------------------------------------------------------------------------------- /conda-recipes/topik/build.sh: -------------------------------------------------------------------------------- 1 | python setup.py install -------------------------------------------------------------------------------- /conda-recipes/topik/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/conda-recipes/topik/meta.yaml -------------------------------------------------------------------------------- /conda-recipes/urllib3/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/conda-recipes/urllib3/bld.bat -------------------------------------------------------------------------------- /conda-recipes/urllib3/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/conda-recipes/urllib3/build.sh -------------------------------------------------------------------------------- /conda-recipes/urllib3/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/conda-recipes/urllib3/meta.yaml -------------------------------------------------------------------------------- /conda-recipes/versioneer/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/conda-recipes/versioneer/bld.bat -------------------------------------------------------------------------------- /conda-recipes/versioneer/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | $PYTHON setup.py install 4 | -------------------------------------------------------------------------------- /conda-recipes/versioneer/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/conda-recipes/versioneer/meta.yaml -------------------------------------------------------------------------------- /conda-recipes/versioneer/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/conda-recipes/versioneer/setup.cfg -------------------------------------------------------------------------------- /conda-recipes/versioneer/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/conda-recipes/versioneer/setup.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/img/thumbnail_ldavis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/docs/_static/img/thumbnail_ldavis.png -------------------------------------------------------------------------------- /docs/_static/img/thumbnail_termite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/docs/_static/img/thumbnail_termite.png -------------------------------------------------------------------------------- /docs/api/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/docs/api/modules.rst -------------------------------------------------------------------------------- /docs/api/topik.fileio.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/docs/api/topik.fileio.rst -------------------------------------------------------------------------------- /docs/api/topik.fileio.tests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/docs/api/topik.fileio.tests.rst -------------------------------------------------------------------------------- /docs/api/topik.models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/docs/api/topik.models.rst -------------------------------------------------------------------------------- /docs/api/topik.models.tests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/docs/api/topik.models.tests.rst -------------------------------------------------------------------------------- /docs/api/topik.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/docs/api/topik.rst -------------------------------------------------------------------------------- /docs/api/topik.simple_run.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/docs/api/topik.simple_run.rst -------------------------------------------------------------------------------- /docs/api/topik.simple_run.tests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/docs/api/topik.simple_run.tests.rst -------------------------------------------------------------------------------- /docs/api/topik.tokenizers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/docs/api/topik.tokenizers.rst -------------------------------------------------------------------------------- /docs/api/topik.tokenizers.tests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/docs/api/topik.tokenizers.tests.rst -------------------------------------------------------------------------------- /docs/api/topik.transformers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/docs/api/topik.transformers.rst -------------------------------------------------------------------------------- /docs/api/topik.vectorizers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/docs/api/topik.vectorizers.rst -------------------------------------------------------------------------------- /docs/api/topik.vectorizers.tests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/docs/api/topik.vectorizers.tests.rst -------------------------------------------------------------------------------- /docs/api/topik.visualizers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/docs/api/topik.visualizers.rst -------------------------------------------------------------------------------- /docs/api/topik.visualizers.tests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/docs/api/topik.visualizers.tests.rst -------------------------------------------------------------------------------- /docs/api_levels.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/docs/api_levels.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/example.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/docs/example.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/intro-dev.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/docs/intro-dev.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/projects.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/docs/projects.rst -------------------------------------------------------------------------------- /docs/read_input.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/docs/read_input.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/tokenization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/docs/tokenization.rst -------------------------------------------------------------------------------- /docs/topic_modeling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/docs/topic_modeling.rst -------------------------------------------------------------------------------- /docs/usage_python.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/docs/usage_python.rst -------------------------------------------------------------------------------- /docs/vectorization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/docs/vectorization.rst -------------------------------------------------------------------------------- /docs/visualization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/docs/visualization.rst -------------------------------------------------------------------------------- /docs/viz/ldavis_open.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/docs/viz/ldavis_open.html -------------------------------------------------------------------------------- /docs/viz/modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/docs/viz/modal.html -------------------------------------------------------------------------------- /docs/viz/reviews_pyldavis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/docs/viz/reviews_pyldavis.html -------------------------------------------------------------------------------- /docs/viz/reviews_termite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/docs/viz/reviews_termite.html -------------------------------------------------------------------------------- /docs/viz/termite_open.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/docs/viz/termite_open.html -------------------------------------------------------------------------------- /docs/viz/thumbnail_ldavis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/docs/viz/thumbnail_ldavis.png -------------------------------------------------------------------------------- /docs/viz/thumbnail_termite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/docs/viz/thumbnail_termite.png -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/environment.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_recipes/elasticsearch/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/requirements_recipes/elasticsearch/bld.bat -------------------------------------------------------------------------------- /requirements_recipes/elasticsearch/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/requirements_recipes/elasticsearch/build.sh -------------------------------------------------------------------------------- /requirements_recipes/elasticsearch/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/requirements_recipes/elasticsearch/meta.yaml -------------------------------------------------------------------------------- /requirements_recipes/solrpy/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/requirements_recipes/solrpy/bld.bat -------------------------------------------------------------------------------- /requirements_recipes/solrpy/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/requirements_recipes/solrpy/build.sh -------------------------------------------------------------------------------- /requirements_recipes/solrpy/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/requirements_recipes/solrpy/meta.yaml -------------------------------------------------------------------------------- /requirements_recipes/urllib3/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/requirements_recipes/urllib3/bld.bat -------------------------------------------------------------------------------- /requirements_recipes/urllib3/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/requirements_recipes/urllib3/build.sh -------------------------------------------------------------------------------- /requirements_recipes/urllib3/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/requirements_recipes/urllib3/meta.yaml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/setup.py -------------------------------------------------------------------------------- /topik/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/__init__.py -------------------------------------------------------------------------------- /topik/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/_version.py -------------------------------------------------------------------------------- /topik/fileio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/__init__.py -------------------------------------------------------------------------------- /topik/fileio/_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/_registry.py -------------------------------------------------------------------------------- /topik/fileio/base_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/base_output.py -------------------------------------------------------------------------------- /topik/fileio/in_document_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/in_document_folder.py -------------------------------------------------------------------------------- /topik/fileio/in_elastic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/in_elastic.py -------------------------------------------------------------------------------- /topik/fileio/in_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/in_json.py -------------------------------------------------------------------------------- /topik/fileio/out_elastic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/out_elastic.py -------------------------------------------------------------------------------- /topik/fileio/out_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/out_memory.py -------------------------------------------------------------------------------- /topik/fileio/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/project.py -------------------------------------------------------------------------------- /topik/fileio/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/reader.py -------------------------------------------------------------------------------- /topik/fileio/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/__init__.py -------------------------------------------------------------------------------- /topik/fileio/tests/_solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/_solutions.py -------------------------------------------------------------------------------- /topik/fileio/tests/data/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/.DS_Store -------------------------------------------------------------------------------- /topik/fileio/tests/data/termite.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/termite.csv -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_folder_files/doc1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_folder_files/doc1 -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_folder_files/doc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_folder_files/doc2 -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_folder_files/doc3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_folder_files/doc3 -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_folder_files_gz/doc1.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_folder_files_gz/doc1.gz -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_folder_files_gz/doc2.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_folder_files_gz/doc2.gz -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_folder_files_gz/doc3.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_folder_files_gz/doc3.gz -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_folder_files_junk/doc1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_folder_files_junk/doc1 -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_folder_files_junk/doc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_folder_files_junk/doc2 -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_folder_files_junk/doc3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_folder_files_junk/doc3 -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_json_stream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_json_stream.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_large_json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_large_json.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-0.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-1.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-10.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-11.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-12.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-13.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-14.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-15.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-16.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-17.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-18.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-19.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-2.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-20.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-21.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-22.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-23.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-24.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-25.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-26.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-27.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-28.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-29.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-3.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-30.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-31.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-32.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-33.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-33.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-34.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-34.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-35.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-35.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-36.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-36.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-37.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-37.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-38.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-38.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-39.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-39.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-4.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-40.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-40.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-41.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-41.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-42.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-42.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-43.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-43.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-44.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-44.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-45.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-45.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-46.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-46.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-47.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-47.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-48.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-48.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-49.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-49.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-5.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-50.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-51.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-51.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-52.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-52.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-53.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-53.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-54.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-54.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-55.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-55.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-56.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-56.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-57.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-57.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-58.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-58.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-59.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-59.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-6.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-60.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-60.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-61.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-61.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-62.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-62.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-63.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-63.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-64.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-65.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-65.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-66.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-66.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-67.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-67.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-68.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-68.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-69.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-69.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-7.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-70.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-70.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-71.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-71.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-72.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-72.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-73.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-73.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-74.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-74.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-75.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-75.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-76.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-76.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-77.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-77.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-78.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-78.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-79.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-79.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-8.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-80.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-80.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-81.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-81.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-82.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-82.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-83.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-83.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-84.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-84.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-85.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-85.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-86.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-86.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-87.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-87.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-88.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-88.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-89.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-89.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-9.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-90.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-90.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-91.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-91.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-92.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-92.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-93.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-93.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-94.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-94.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-95.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-95.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-96.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-96.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-97.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-97.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-98.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-98.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/test_data_solr/solr-json-file-99.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/test_data_solr/solr-json-file-99.json -------------------------------------------------------------------------------- /topik/fileio/tests/data/wiki_sample_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/data/wiki_sample_data.json -------------------------------------------------------------------------------- /topik/fileio/tests/test_in_document_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/test_in_document_folder.py -------------------------------------------------------------------------------- /topik/fileio/tests/test_in_elastic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/test_in_elastic.py -------------------------------------------------------------------------------- /topik/fileio/tests/test_in_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/test_in_json.py -------------------------------------------------------------------------------- /topik/fileio/tests/test_outputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/test_outputs.py -------------------------------------------------------------------------------- /topik/fileio/tests/test_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/test_project.py -------------------------------------------------------------------------------- /topik/fileio/tests/test_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/fileio/tests/test_reader.py -------------------------------------------------------------------------------- /topik/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/models/__init__.py -------------------------------------------------------------------------------- /topik/models/_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/models/_registry.py -------------------------------------------------------------------------------- /topik/models/base_model_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/models/base_model_output.py -------------------------------------------------------------------------------- /topik/models/lda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/models/lda.py -------------------------------------------------------------------------------- /topik/models/plsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/models/plsa.py -------------------------------------------------------------------------------- /topik/models/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /topik/models/tests/test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/models/tests/test_data.py -------------------------------------------------------------------------------- /topik/models/tests/test_lda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/models/tests/test_lda.py -------------------------------------------------------------------------------- /topik/models/tests/test_plsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/models/tests/test_plsa.py -------------------------------------------------------------------------------- /topik/simple_run/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'msarahan' 2 | -------------------------------------------------------------------------------- /topik/simple_run/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/simple_run/cli.py -------------------------------------------------------------------------------- /topik/simple_run/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/simple_run/run.py -------------------------------------------------------------------------------- /topik/simple_run/tests/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'ryoungblood' 2 | -------------------------------------------------------------------------------- /topik/simple_run/tests/test_run_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/simple_run/tests/test_run_api.py -------------------------------------------------------------------------------- /topik/singleton_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/singleton_registry.py -------------------------------------------------------------------------------- /topik/tokenizers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/tokenizers/__init__.py -------------------------------------------------------------------------------- /topik/tokenizers/_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/tokenizers/_registry.py -------------------------------------------------------------------------------- /topik/tokenizers/entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/tokenizers/entities.py -------------------------------------------------------------------------------- /topik/tokenizers/ngrams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/tokenizers/ngrams.py -------------------------------------------------------------------------------- /topik/tokenizers/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/tokenizers/simple.py -------------------------------------------------------------------------------- /topik/tokenizers/tests/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'ryoungblood' 2 | -------------------------------------------------------------------------------- /topik/tokenizers/tests/test_entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/tokenizers/tests/test_entities.py -------------------------------------------------------------------------------- /topik/tokenizers/tests/test_ngrams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/tokenizers/tests/test_ngrams.py -------------------------------------------------------------------------------- /topik/tokenizers/tests/test_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/tokenizers/tests/test_simple.py -------------------------------------------------------------------------------- /topik/transformers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/transformers/__init__.py -------------------------------------------------------------------------------- /topik/transformers/_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/transformers/_registry.py -------------------------------------------------------------------------------- /topik/vectorizers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/vectorizers/__init__.py -------------------------------------------------------------------------------- /topik/vectorizers/_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/vectorizers/_registry.py -------------------------------------------------------------------------------- /topik/vectorizers/bag_of_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/vectorizers/bag_of_words.py -------------------------------------------------------------------------------- /topik/vectorizers/tests/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'ryoungblood' 2 | -------------------------------------------------------------------------------- /topik/vectorizers/tests/test_bag_of_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/vectorizers/tests/test_bag_of_words.py -------------------------------------------------------------------------------- /topik/vectorizers/tests/test_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/vectorizers/tests/test_output.py -------------------------------------------------------------------------------- /topik/vectorizers/tests/test_tfidf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/vectorizers/tests/test_tfidf.py -------------------------------------------------------------------------------- /topik/vectorizers/tfidf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/vectorizers/tfidf.py -------------------------------------------------------------------------------- /topik/vectorizers/vectorizer_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/vectorizers/vectorizer_output.py -------------------------------------------------------------------------------- /topik/visualizers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/visualizers/__init__.py -------------------------------------------------------------------------------- /topik/visualizers/_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/visualizers/_registry.py -------------------------------------------------------------------------------- /topik/visualizers/data_formatters.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /topik/visualizers/pyldavis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/visualizers/pyldavis.py -------------------------------------------------------------------------------- /topik/visualizers/termite_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/visualizers/termite_plot.py -------------------------------------------------------------------------------- /topik/visualizers/tests/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'ryoungblood' 2 | -------------------------------------------------------------------------------- /topik/visualizers/tests/test_ldavis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/visualizers/tests/test_ldavis.py -------------------------------------------------------------------------------- /topik/visualizers/tests/test_termite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/topik/visualizers/tests/test_termite.py -------------------------------------------------------------------------------- /versioneer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/topik/HEAD/versioneer.py --------------------------------------------------------------------------------