├── README.md ├── requirements.txt ├── setup.py ├── src ├── __init__.py ├── data_preprocessing.py ├── dataset_profiling.py ├── evaluation_metrics.py ├── feature_importance.py ├── model_benchmarking.py └── visualizations.py └── tests ├── test_dataset_profiling.py ├── test_model_benchmarking.py └── test_visualizations.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riley702/enhanced_benchmark_tool/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riley702/enhanced_benchmark_tool/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riley702/enhanced_benchmark_tool/HEAD/setup.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riley702/enhanced_benchmark_tool/HEAD/src/__init__.py -------------------------------------------------------------------------------- /src/data_preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riley702/enhanced_benchmark_tool/HEAD/src/data_preprocessing.py -------------------------------------------------------------------------------- /src/dataset_profiling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riley702/enhanced_benchmark_tool/HEAD/src/dataset_profiling.py -------------------------------------------------------------------------------- /src/evaluation_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riley702/enhanced_benchmark_tool/HEAD/src/evaluation_metrics.py -------------------------------------------------------------------------------- /src/feature_importance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riley702/enhanced_benchmark_tool/HEAD/src/feature_importance.py -------------------------------------------------------------------------------- /src/model_benchmarking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riley702/enhanced_benchmark_tool/HEAD/src/model_benchmarking.py -------------------------------------------------------------------------------- /src/visualizations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riley702/enhanced_benchmark_tool/HEAD/src/visualizations.py -------------------------------------------------------------------------------- /tests/test_dataset_profiling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riley702/enhanced_benchmark_tool/HEAD/tests/test_dataset_profiling.py -------------------------------------------------------------------------------- /tests/test_model_benchmarking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riley702/enhanced_benchmark_tool/HEAD/tests/test_model_benchmarking.py -------------------------------------------------------------------------------- /tests/test_visualizations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riley702/enhanced_benchmark_tool/HEAD/tests/test_visualizations.py --------------------------------------------------------------------------------