├── .gitignore ├── DNN_hp.ipynb ├── Ensemble.ipynb ├── Ensemble_alternative.ipynb ├── LICENSE ├── PreProcessing.ipynb ├── README.md ├── Visualisation.ipynb ├── app ├── .gitignore ├── FIGHTER_STAT.csv ├── Procfile ├── app.py ├── ens_method.sav ├── requirements.txt ├── setup.sh └── ufc.jpg ├── backend.ipynb ├── data ├── FIGHTER_STAT.csv ├── UFC_PCA.csv ├── UFC_TEST.csv ├── UFC_TRAIN.csv ├── UFC_processed.csv └── data.csv └── resources ├── dnn_model.h5 ├── lr_model.sav ├── rf_model.sav ├── scaler.pkl ├── svm_model.sav └── xgb_model.sav /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezan21/UFC-Prediction/HEAD/.gitignore -------------------------------------------------------------------------------- /DNN_hp.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezan21/UFC-Prediction/HEAD/DNN_hp.ipynb -------------------------------------------------------------------------------- /Ensemble.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezan21/UFC-Prediction/HEAD/Ensemble.ipynb -------------------------------------------------------------------------------- /Ensemble_alternative.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezan21/UFC-Prediction/HEAD/Ensemble_alternative.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezan21/UFC-Prediction/HEAD/LICENSE -------------------------------------------------------------------------------- /PreProcessing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezan21/UFC-Prediction/HEAD/PreProcessing.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezan21/UFC-Prediction/HEAD/README.md -------------------------------------------------------------------------------- /Visualisation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezan21/UFC-Prediction/HEAD/Visualisation.ipynb -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezan21/UFC-Prediction/HEAD/app/.gitignore -------------------------------------------------------------------------------- /app/FIGHTER_STAT.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezan21/UFC-Prediction/HEAD/app/FIGHTER_STAT.csv -------------------------------------------------------------------------------- /app/Procfile: -------------------------------------------------------------------------------- 1 | web: sh setup.sh && streamlit run app.py 2 | -------------------------------------------------------------------------------- /app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezan21/UFC-Prediction/HEAD/app/app.py -------------------------------------------------------------------------------- /app/ens_method.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezan21/UFC-Prediction/HEAD/app/ens_method.sav -------------------------------------------------------------------------------- /app/requirements.txt: -------------------------------------------------------------------------------- 1 | streamlit 2 | altair 3 | scikit-learn -------------------------------------------------------------------------------- /app/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezan21/UFC-Prediction/HEAD/app/setup.sh -------------------------------------------------------------------------------- /app/ufc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezan21/UFC-Prediction/HEAD/app/ufc.jpg -------------------------------------------------------------------------------- /backend.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezan21/UFC-Prediction/HEAD/backend.ipynb -------------------------------------------------------------------------------- /data/FIGHTER_STAT.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezan21/UFC-Prediction/HEAD/data/FIGHTER_STAT.csv -------------------------------------------------------------------------------- /data/UFC_PCA.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezan21/UFC-Prediction/HEAD/data/UFC_PCA.csv -------------------------------------------------------------------------------- /data/UFC_TEST.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezan21/UFC-Prediction/HEAD/data/UFC_TEST.csv -------------------------------------------------------------------------------- /data/UFC_TRAIN.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezan21/UFC-Prediction/HEAD/data/UFC_TRAIN.csv -------------------------------------------------------------------------------- /data/UFC_processed.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezan21/UFC-Prediction/HEAD/data/UFC_processed.csv -------------------------------------------------------------------------------- /data/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezan21/UFC-Prediction/HEAD/data/data.csv -------------------------------------------------------------------------------- /resources/dnn_model.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezan21/UFC-Prediction/HEAD/resources/dnn_model.h5 -------------------------------------------------------------------------------- /resources/lr_model.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezan21/UFC-Prediction/HEAD/resources/lr_model.sav -------------------------------------------------------------------------------- /resources/rf_model.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezan21/UFC-Prediction/HEAD/resources/rf_model.sav -------------------------------------------------------------------------------- /resources/scaler.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezan21/UFC-Prediction/HEAD/resources/scaler.pkl -------------------------------------------------------------------------------- /resources/svm_model.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezan21/UFC-Prediction/HEAD/resources/svm_model.sav -------------------------------------------------------------------------------- /resources/xgb_model.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezan21/UFC-Prediction/HEAD/resources/xgb_model.sav --------------------------------------------------------------------------------