Flask application to run my UFC Pred Machine Learning Model.
- Clone this repository.
git clone https://github.com/tarkatawa/UFCrfPrediction.git
- Create virtual environment.
cd UFCrfPrediction/venv/Scripts
activate
- Install dependencies.
cd ../..
pip install -r requirements.txt
# or install essential dependencies
pip install sklearn, pandas, numpy, openpyxl, flask
- Run app.
flask run
-
Open
localhost:5000
. -
You can do
black .
andisort .
to beautify your code.
- Write validations in application level.
- Deploy to the Internet.