├── .gitignore ├── README.rst ├── doc ├── eights.jpeg ├── featuture_gen_tut.rst ├── new_features.md ├── readme.rst ├── sample_report.csv ├── sample_report.pdf ├── sweeping_architecture.odg ├── sweeping_architecture.pdf └── tutorial.py ├── eights ├── __init__.py ├── communicate │ ├── __init__.py │ ├── communicate.py │ └── communicate_helper.py ├── decontaminate │ ├── __init__.py │ └── decontaminate.py ├── generate │ ├── __init__.py │ └── generate.py ├── investigate │ ├── __init__.py │ ├── investigate.py │ └── investigate_helper.py ├── operate │ ├── __init__.py │ └── operate.py ├── perambulate │ ├── __init__.py │ ├── perambulate.py │ └── perambulate_helper.py ├── truncate │ ├── __init__.py │ ├── truncate.py │ └── truncate_helper.py └── utils.py ├── setup.py ├── test_sklearn_iris.py ├── test_wine.py └── tests ├── .DS_Store ├── data ├── full_test.csv ├── mixed.csv ├── small.db ├── test_communicate_ref.pdf ├── test_operate_std.pkl ├── test_perambulate │ ├── make_csv.csv │ ├── run_experiment.pkl │ ├── slice_by_best_score.pkl │ ├── slice_on_dimension_clf.pkl │ ├── slice_on_dimension_subset_params.pkl │ ├── sliding_windows.csv │ └── test_subsetting.pkl └── test_perambulate_ref.pdf ├── test_all.py ├── test_communicate.py ├── test_decontaminate.py ├── test_generate.py ├── test_investigate.py ├── test_operate.py ├── test_perambulate.py ├── test_sklearn_parity.py ├── test_truncate.py ├── test_utils.py ├── test_utils_for_tests.py └── utils_for_tests.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/.gitignore -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/README.rst -------------------------------------------------------------------------------- /doc/eights.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/doc/eights.jpeg -------------------------------------------------------------------------------- /doc/featuture_gen_tut.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/doc/featuture_gen_tut.rst -------------------------------------------------------------------------------- /doc/new_features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/doc/new_features.md -------------------------------------------------------------------------------- /doc/readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/doc/readme.rst -------------------------------------------------------------------------------- /doc/sample_report.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/doc/sample_report.csv -------------------------------------------------------------------------------- /doc/sample_report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/doc/sample_report.pdf -------------------------------------------------------------------------------- /doc/sweeping_architecture.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/doc/sweeping_architecture.odg -------------------------------------------------------------------------------- /doc/sweeping_architecture.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/doc/sweeping_architecture.pdf -------------------------------------------------------------------------------- /doc/tutorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/doc/tutorial.py -------------------------------------------------------------------------------- /eights/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/eights/__init__.py -------------------------------------------------------------------------------- /eights/communicate/__init__.py: -------------------------------------------------------------------------------- 1 | from communicate import * -------------------------------------------------------------------------------- /eights/communicate/communicate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/eights/communicate/communicate.py -------------------------------------------------------------------------------- /eights/communicate/communicate_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/eights/communicate/communicate_helper.py -------------------------------------------------------------------------------- /eights/decontaminate/__init__.py: -------------------------------------------------------------------------------- 1 | from decontaminate import * 2 | 3 | -------------------------------------------------------------------------------- /eights/decontaminate/decontaminate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/eights/decontaminate/decontaminate.py -------------------------------------------------------------------------------- /eights/generate/__init__.py: -------------------------------------------------------------------------------- 1 | from generate import * -------------------------------------------------------------------------------- /eights/generate/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/eights/generate/generate.py -------------------------------------------------------------------------------- /eights/investigate/__init__.py: -------------------------------------------------------------------------------- 1 | from investigate import * 2 | 3 | -------------------------------------------------------------------------------- /eights/investigate/investigate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/eights/investigate/investigate.py -------------------------------------------------------------------------------- /eights/investigate/investigate_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/eights/investigate/investigate_helper.py -------------------------------------------------------------------------------- /eights/operate/__init__.py: -------------------------------------------------------------------------------- 1 | from operate import * -------------------------------------------------------------------------------- /eights/operate/operate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/eights/operate/operate.py -------------------------------------------------------------------------------- /eights/perambulate/__init__.py: -------------------------------------------------------------------------------- 1 | from perambulate import * -------------------------------------------------------------------------------- /eights/perambulate/perambulate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/eights/perambulate/perambulate.py -------------------------------------------------------------------------------- /eights/perambulate/perambulate_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/eights/perambulate/perambulate_helper.py -------------------------------------------------------------------------------- /eights/truncate/__init__.py: -------------------------------------------------------------------------------- 1 | from truncate import * -------------------------------------------------------------------------------- /eights/truncate/truncate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/eights/truncate/truncate.py -------------------------------------------------------------------------------- /eights/truncate/truncate_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/eights/truncate/truncate_helper.py -------------------------------------------------------------------------------- /eights/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/eights/utils.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/setup.py -------------------------------------------------------------------------------- /test_sklearn_iris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/test_sklearn_iris.py -------------------------------------------------------------------------------- /test_wine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/test_wine.py -------------------------------------------------------------------------------- /tests/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/tests/.DS_Store -------------------------------------------------------------------------------- /tests/data/full_test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/tests/data/full_test.csv -------------------------------------------------------------------------------- /tests/data/mixed.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/tests/data/mixed.csv -------------------------------------------------------------------------------- /tests/data/small.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/tests/data/small.db -------------------------------------------------------------------------------- /tests/data/test_communicate_ref.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/tests/data/test_communicate_ref.pdf -------------------------------------------------------------------------------- /tests/data/test_operate_std.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/tests/data/test_operate_std.pkl -------------------------------------------------------------------------------- /tests/data/test_perambulate/make_csv.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/tests/data/test_perambulate/make_csv.csv -------------------------------------------------------------------------------- /tests/data/test_perambulate/run_experiment.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/tests/data/test_perambulate/run_experiment.pkl -------------------------------------------------------------------------------- /tests/data/test_perambulate/slice_by_best_score.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/tests/data/test_perambulate/slice_by_best_score.pkl -------------------------------------------------------------------------------- /tests/data/test_perambulate/slice_on_dimension_clf.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/tests/data/test_perambulate/slice_on_dimension_clf.pkl -------------------------------------------------------------------------------- /tests/data/test_perambulate/slice_on_dimension_subset_params.pkl: -------------------------------------------------------------------------------- 1 | (lp1 2 | . -------------------------------------------------------------------------------- /tests/data/test_perambulate/sliding_windows.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/tests/data/test_perambulate/sliding_windows.csv -------------------------------------------------------------------------------- /tests/data/test_perambulate/test_subsetting.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/tests/data/test_perambulate/test_subsetting.pkl -------------------------------------------------------------------------------- /tests/data/test_perambulate_ref.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/tests/data/test_perambulate_ref.pdf -------------------------------------------------------------------------------- /tests/test_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/tests/test_all.py -------------------------------------------------------------------------------- /tests/test_communicate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/tests/test_communicate.py -------------------------------------------------------------------------------- /tests/test_decontaminate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/tests/test_decontaminate.py -------------------------------------------------------------------------------- /tests/test_generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/tests/test_generate.py -------------------------------------------------------------------------------- /tests/test_investigate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/tests/test_investigate.py -------------------------------------------------------------------------------- /tests/test_operate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/tests/test_operate.py -------------------------------------------------------------------------------- /tests/test_perambulate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/tests/test_perambulate.py -------------------------------------------------------------------------------- /tests/test_sklearn_parity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/tests/test_sklearn_parity.py -------------------------------------------------------------------------------- /tests/test_truncate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/tests/test_truncate.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/test_utils_for_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/tests/test_utils_for_tests.py -------------------------------------------------------------------------------- /tests/utils_for_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/eights/HEAD/tests/utils_for_tests.py --------------------------------------------------------------------------------