├── LICENSE ├── README.md ├── code ├── get_roc_classification.py ├── get_roc_series.py ├── header.py ├── readme.txt ├── run_classification_pyod.py ├── run_classification_rrcf.py ├── run_classification_sklearn_pidforest_alg.py ├── run_rrcf_timeseries.py ├── run_time_series_sklearn_pidforest_alg.py ├── run_timeseries_pyod.py ├── scripts │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── forest.cpython-37.pyc │ │ ├── hg.cpython-37.pyc │ │ └── timeseries.cpython-37.pyc │ ├── cube.py │ ├── fast_buckets.py │ ├── forest.py │ ├── hg.py │ ├── myforest.py │ ├── new_forest.py │ ├── old_forest.py │ ├── subcube.py │ └── timeseries.py └── synthetic_experiments │ ├── mask_testing.ipynb │ ├── mixture_more_comparisons.ipynb │ ├── mixture_nois_lof.ipynb │ ├── mixture_noisy.ipynb │ └── timeSeries.ipynb └── data ├── http.mat ├── mammography.mat ├── mammography_noisy50.mat ├── musk.mat ├── numenta ├── ambient_temperature_system_failure.csv ├── cpu_utilization_asg_misconfiguration.csv ├── machine_temperature_system_failure.csv └── nyc_taxi.csv ├── satimage-2.mat ├── siesmic.mat ├── smtp.mat ├── thyroid.mat ├── thyroid_noisy50.mat └── vowels.mat /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsharan/pidforest/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsharan/pidforest/HEAD/README.md -------------------------------------------------------------------------------- /code/get_roc_classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsharan/pidforest/HEAD/code/get_roc_classification.py -------------------------------------------------------------------------------- /code/get_roc_series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsharan/pidforest/HEAD/code/get_roc_series.py -------------------------------------------------------------------------------- /code/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsharan/pidforest/HEAD/code/header.py -------------------------------------------------------------------------------- /code/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsharan/pidforest/HEAD/code/readme.txt -------------------------------------------------------------------------------- /code/run_classification_pyod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsharan/pidforest/HEAD/code/run_classification_pyod.py -------------------------------------------------------------------------------- /code/run_classification_rrcf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsharan/pidforest/HEAD/code/run_classification_rrcf.py -------------------------------------------------------------------------------- /code/run_classification_sklearn_pidforest_alg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsharan/pidforest/HEAD/code/run_classification_sklearn_pidforest_alg.py -------------------------------------------------------------------------------- /code/run_rrcf_timeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsharan/pidforest/HEAD/code/run_rrcf_timeseries.py -------------------------------------------------------------------------------- /code/run_time_series_sklearn_pidforest_alg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsharan/pidforest/HEAD/code/run_time_series_sklearn_pidforest_alg.py -------------------------------------------------------------------------------- /code/run_timeseries_pyod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsharan/pidforest/HEAD/code/run_timeseries_pyod.py -------------------------------------------------------------------------------- /code/scripts/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsharan/pidforest/HEAD/code/scripts/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /code/scripts/__pycache__/forest.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsharan/pidforest/HEAD/code/scripts/__pycache__/forest.cpython-37.pyc -------------------------------------------------------------------------------- /code/scripts/__pycache__/hg.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsharan/pidforest/HEAD/code/scripts/__pycache__/hg.cpython-37.pyc -------------------------------------------------------------------------------- /code/scripts/__pycache__/timeseries.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsharan/pidforest/HEAD/code/scripts/__pycache__/timeseries.cpython-37.pyc -------------------------------------------------------------------------------- /code/scripts/cube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsharan/pidforest/HEAD/code/scripts/cube.py -------------------------------------------------------------------------------- /code/scripts/fast_buckets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsharan/pidforest/HEAD/code/scripts/fast_buckets.py -------------------------------------------------------------------------------- /code/scripts/forest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsharan/pidforest/HEAD/code/scripts/forest.py -------------------------------------------------------------------------------- /code/scripts/hg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsharan/pidforest/HEAD/code/scripts/hg.py -------------------------------------------------------------------------------- /code/scripts/myforest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsharan/pidforest/HEAD/code/scripts/myforest.py -------------------------------------------------------------------------------- /code/scripts/new_forest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsharan/pidforest/HEAD/code/scripts/new_forest.py -------------------------------------------------------------------------------- /code/scripts/old_forest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsharan/pidforest/HEAD/code/scripts/old_forest.py -------------------------------------------------------------------------------- /code/scripts/subcube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsharan/pidforest/HEAD/code/scripts/subcube.py -------------------------------------------------------------------------------- /code/scripts/timeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsharan/pidforest/HEAD/code/scripts/timeseries.py -------------------------------------------------------------------------------- /code/synthetic_experiments/mask_testing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsharan/pidforest/HEAD/code/synthetic_experiments/mask_testing.ipynb -------------------------------------------------------------------------------- /code/synthetic_experiments/mixture_more_comparisons.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsharan/pidforest/HEAD/code/synthetic_experiments/mixture_more_comparisons.ipynb -------------------------------------------------------------------------------- /code/synthetic_experiments/mixture_nois_lof.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsharan/pidforest/HEAD/code/synthetic_experiments/mixture_nois_lof.ipynb -------------------------------------------------------------------------------- /code/synthetic_experiments/mixture_noisy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsharan/pidforest/HEAD/code/synthetic_experiments/mixture_noisy.ipynb -------------------------------------------------------------------------------- /code/synthetic_experiments/timeSeries.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsharan/pidforest/HEAD/code/synthetic_experiments/timeSeries.ipynb -------------------------------------------------------------------------------- /data/http.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsharan/pidforest/HEAD/data/http.mat -------------------------------------------------------------------------------- /data/mammography.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsharan/pidforest/HEAD/data/mammography.mat -------------------------------------------------------------------------------- /data/mammography_noisy50.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsharan/pidforest/HEAD/data/mammography_noisy50.mat -------------------------------------------------------------------------------- /data/musk.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsharan/pidforest/HEAD/data/musk.mat -------------------------------------------------------------------------------- /data/numenta/ambient_temperature_system_failure.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsharan/pidforest/HEAD/data/numenta/ambient_temperature_system_failure.csv -------------------------------------------------------------------------------- /data/numenta/cpu_utilization_asg_misconfiguration.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsharan/pidforest/HEAD/data/numenta/cpu_utilization_asg_misconfiguration.csv -------------------------------------------------------------------------------- /data/numenta/machine_temperature_system_failure.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsharan/pidforest/HEAD/data/numenta/machine_temperature_system_failure.csv -------------------------------------------------------------------------------- /data/numenta/nyc_taxi.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsharan/pidforest/HEAD/data/numenta/nyc_taxi.csv -------------------------------------------------------------------------------- /data/satimage-2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsharan/pidforest/HEAD/data/satimage-2.mat -------------------------------------------------------------------------------- /data/siesmic.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsharan/pidforest/HEAD/data/siesmic.mat -------------------------------------------------------------------------------- /data/smtp.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsharan/pidforest/HEAD/data/smtp.mat -------------------------------------------------------------------------------- /data/thyroid.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsharan/pidforest/HEAD/data/thyroid.mat -------------------------------------------------------------------------------- /data/thyroid_noisy50.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsharan/pidforest/HEAD/data/thyroid_noisy50.mat -------------------------------------------------------------------------------- /data/vowels.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsharan/pidforest/HEAD/data/vowels.mat --------------------------------------------------------------------------------