Dataset Preprocessing Scripts
Failed to load latest commit information.
Latest commit Cannot retrieve latest commit at this time.Folders and files Name Name Last commit message
Last commit date
parent directory
View all files
Repository acts as sub repository to the base, serves the purpose of deployment & webhooks
Steps for Hosting on Heroku(Any General Python/flask App)
Login to your heroku account on workspace using heroku login
& then providing credentials.
Create the app using heroku create <*NameOfApp*>
e.g heroku create cricai
Set Buildpacks for the app using heroku buildpacks:set heroku/python
Generate a file using pip freeze > requirements.txt
Create a file named Procfile with contents as web: gunicorn index:app
Commit the steps using git add .
& then, git commit -m "MESSAGE"
Push for deploy using git push heroku master
Clone the project using git clone https://github.com/jaykay12/CricAI.git
Explore into the Web-App using cd CricAI/Web-App
Create a Virtual Env using virtualenv venv
Activate the Virtual Env using cd venv/bin
& then, source activate
Install all dependencies using pip install -r requirements.txt
Pickle Classifiers using python3 modelPickler.py
Run Model using python3 index.py
Open Browser & Hit http://127.0.0.1:5000/
You can’t perform that action at this time.
Failed to load latest commit information.