├── .gitignore ├── README.md ├── data ├── ionosphere.data └── sonar.all-data ├── dimreduc.py ├── load_data.py └── sonar_viz.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightonai/supervised-random-projections/HEAD/README.md -------------------------------------------------------------------------------- /data/ionosphere.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightonai/supervised-random-projections/HEAD/data/ionosphere.data -------------------------------------------------------------------------------- /data/sonar.all-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightonai/supervised-random-projections/HEAD/data/sonar.all-data -------------------------------------------------------------------------------- /dimreduc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightonai/supervised-random-projections/HEAD/dimreduc.py -------------------------------------------------------------------------------- /load_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightonai/supervised-random-projections/HEAD/load_data.py -------------------------------------------------------------------------------- /sonar_viz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightonai/supervised-random-projections/HEAD/sonar_viz.py --------------------------------------------------------------------------------