├── .gitignore ├── LICENSE ├── README.md ├── benchmarks ├── benchmarks.py ├── simple_benchmark.png └── simple_benchmark.py ├── datasets ├── Balance.data ├── Breast-can.data ├── Diabetes.data ├── Digit.data ├── Ecoli.data ├── Hayes.data ├── Iris.data ├── Liver.data ├── Monk1.data ├── Monk2.data ├── Monk3.data ├── Sonar.data ├── Soybean.data ├── Spambase.data ├── Waveform.data └── Wine.data ├── rotation_forest ├── __init__.py ├── _exceptions.py ├── rotation_forest.py └── tests │ ├── __init__.py │ └── test_rotation_forest.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshloyal/RotationForest/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshloyal/RotationForest/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshloyal/RotationForest/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/benchmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshloyal/RotationForest/HEAD/benchmarks/benchmarks.py -------------------------------------------------------------------------------- /benchmarks/simple_benchmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshloyal/RotationForest/HEAD/benchmarks/simple_benchmark.png -------------------------------------------------------------------------------- /benchmarks/simple_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshloyal/RotationForest/HEAD/benchmarks/simple_benchmark.py -------------------------------------------------------------------------------- /datasets/Balance.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshloyal/RotationForest/HEAD/datasets/Balance.data -------------------------------------------------------------------------------- /datasets/Breast-can.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshloyal/RotationForest/HEAD/datasets/Breast-can.data -------------------------------------------------------------------------------- /datasets/Diabetes.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshloyal/RotationForest/HEAD/datasets/Diabetes.data -------------------------------------------------------------------------------- /datasets/Digit.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshloyal/RotationForest/HEAD/datasets/Digit.data -------------------------------------------------------------------------------- /datasets/Ecoli.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshloyal/RotationForest/HEAD/datasets/Ecoli.data -------------------------------------------------------------------------------- /datasets/Hayes.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshloyal/RotationForest/HEAD/datasets/Hayes.data -------------------------------------------------------------------------------- /datasets/Iris.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshloyal/RotationForest/HEAD/datasets/Iris.data -------------------------------------------------------------------------------- /datasets/Liver.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshloyal/RotationForest/HEAD/datasets/Liver.data -------------------------------------------------------------------------------- /datasets/Monk1.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshloyal/RotationForest/HEAD/datasets/Monk1.data -------------------------------------------------------------------------------- /datasets/Monk2.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshloyal/RotationForest/HEAD/datasets/Monk2.data -------------------------------------------------------------------------------- /datasets/Monk3.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshloyal/RotationForest/HEAD/datasets/Monk3.data -------------------------------------------------------------------------------- /datasets/Sonar.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshloyal/RotationForest/HEAD/datasets/Sonar.data -------------------------------------------------------------------------------- /datasets/Soybean.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshloyal/RotationForest/HEAD/datasets/Soybean.data -------------------------------------------------------------------------------- /datasets/Spambase.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshloyal/RotationForest/HEAD/datasets/Spambase.data -------------------------------------------------------------------------------- /datasets/Waveform.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshloyal/RotationForest/HEAD/datasets/Waveform.data -------------------------------------------------------------------------------- /datasets/Wine.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshloyal/RotationForest/HEAD/datasets/Wine.data -------------------------------------------------------------------------------- /rotation_forest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshloyal/RotationForest/HEAD/rotation_forest/__init__.py -------------------------------------------------------------------------------- /rotation_forest/_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshloyal/RotationForest/HEAD/rotation_forest/_exceptions.py -------------------------------------------------------------------------------- /rotation_forest/rotation_forest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshloyal/RotationForest/HEAD/rotation_forest/rotation_forest.py -------------------------------------------------------------------------------- /rotation_forest/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rotation_forest/tests/test_rotation_forest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshloyal/RotationForest/HEAD/rotation_forest/tests/test_rotation_forest.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshloyal/RotationForest/HEAD/setup.py --------------------------------------------------------------------------------