├── Procfile ├── README.md ├── RainPrediction2.ipynb ├── app.py ├── catboost_info ├── catboost_training.json ├── learn │ └── events.out.tfevents ├── learn_error.tsv └── time_left.tsv ├── githubimgs ├── about.png ├── dashboard.png ├── developer.png ├── landingpage.png ├── predictor.png ├── predictor1.png └── result.png ├── models ├── cat.pkl ├── gnb.pkl ├── logreg.pkl ├── svc.pkl └── xgb.pkl ├── requirements.txt ├── static ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png ├── 8.png ├── 9.png ├── after_rainy.css ├── dashboard.png ├── predictor.css ├── rain.pbix ├── rainy.jpg ├── style.css ├── style1.css ├── sunny.jpg ├── sunny.png └── vasanth1.png ├── template ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png ├── 8.png ├── 9.png ├── after_rainy.html ├── after_sunny.html ├── dashboard.png ├── index.html ├── predictor.html └── rain.pdf ├── testing_notebooks ├── Prediction.ipynb ├── Prepocessing.ipynb ├── RainPrediction.ipynb ├── RainPrediction3.ipynb └── weatherAUS.csv └── weatherAUS.csv /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/README.md -------------------------------------------------------------------------------- /RainPrediction2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/RainPrediction2.ipynb -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/app.py -------------------------------------------------------------------------------- /catboost_info/catboost_training.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/catboost_info/catboost_training.json -------------------------------------------------------------------------------- /catboost_info/learn/events.out.tfevents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/catboost_info/learn/events.out.tfevents -------------------------------------------------------------------------------- /catboost_info/learn_error.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/catboost_info/learn_error.tsv -------------------------------------------------------------------------------- /catboost_info/time_left.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/catboost_info/time_left.tsv -------------------------------------------------------------------------------- /githubimgs/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/githubimgs/about.png -------------------------------------------------------------------------------- /githubimgs/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/githubimgs/dashboard.png -------------------------------------------------------------------------------- /githubimgs/developer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/githubimgs/developer.png -------------------------------------------------------------------------------- /githubimgs/landingpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/githubimgs/landingpage.png -------------------------------------------------------------------------------- /githubimgs/predictor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/githubimgs/predictor.png -------------------------------------------------------------------------------- /githubimgs/predictor1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/githubimgs/predictor1.png -------------------------------------------------------------------------------- /githubimgs/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/githubimgs/result.png -------------------------------------------------------------------------------- /models/cat.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/models/cat.pkl -------------------------------------------------------------------------------- /models/gnb.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/models/gnb.pkl -------------------------------------------------------------------------------- /models/logreg.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/models/logreg.pkl -------------------------------------------------------------------------------- /models/svc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/models/svc.pkl -------------------------------------------------------------------------------- /models/xgb.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/models/xgb.pkl -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/static/1.png -------------------------------------------------------------------------------- /static/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/static/2.png -------------------------------------------------------------------------------- /static/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/static/3.png -------------------------------------------------------------------------------- /static/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/static/4.png -------------------------------------------------------------------------------- /static/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/static/5.png -------------------------------------------------------------------------------- /static/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/static/6.png -------------------------------------------------------------------------------- /static/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/static/7.png -------------------------------------------------------------------------------- /static/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/static/8.png -------------------------------------------------------------------------------- /static/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/static/9.png -------------------------------------------------------------------------------- /static/after_rainy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/static/after_rainy.css -------------------------------------------------------------------------------- /static/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/static/dashboard.png -------------------------------------------------------------------------------- /static/predictor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/static/predictor.css -------------------------------------------------------------------------------- /static/rain.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/static/rain.pbix -------------------------------------------------------------------------------- /static/rainy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/static/rainy.jpg -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/static/style.css -------------------------------------------------------------------------------- /static/style1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/static/style1.css -------------------------------------------------------------------------------- /static/sunny.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/static/sunny.jpg -------------------------------------------------------------------------------- /static/sunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/static/sunny.png -------------------------------------------------------------------------------- /static/vasanth1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/static/vasanth1.png -------------------------------------------------------------------------------- /template/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/template/1.png -------------------------------------------------------------------------------- /template/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/template/2.png -------------------------------------------------------------------------------- /template/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/template/3.png -------------------------------------------------------------------------------- /template/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/template/4.png -------------------------------------------------------------------------------- /template/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/template/5.png -------------------------------------------------------------------------------- /template/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/template/6.png -------------------------------------------------------------------------------- /template/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/template/7.png -------------------------------------------------------------------------------- /template/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/template/8.png -------------------------------------------------------------------------------- /template/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/template/9.png -------------------------------------------------------------------------------- /template/after_rainy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/template/after_rainy.html -------------------------------------------------------------------------------- /template/after_sunny.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/template/after_sunny.html -------------------------------------------------------------------------------- /template/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/template/dashboard.png -------------------------------------------------------------------------------- /template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/template/index.html -------------------------------------------------------------------------------- /template/predictor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/template/predictor.html -------------------------------------------------------------------------------- /template/rain.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/template/rain.pdf -------------------------------------------------------------------------------- /testing_notebooks/Prediction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/testing_notebooks/Prediction.ipynb -------------------------------------------------------------------------------- /testing_notebooks/Prepocessing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/testing_notebooks/Prepocessing.ipynb -------------------------------------------------------------------------------- /testing_notebooks/RainPrediction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/testing_notebooks/RainPrediction.ipynb -------------------------------------------------------------------------------- /testing_notebooks/RainPrediction3.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/testing_notebooks/RainPrediction3.ipynb -------------------------------------------------------------------------------- /testing_notebooks/weatherAUS.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/testing_notebooks/weatherAUS.csv -------------------------------------------------------------------------------- /weatherAUS.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasanthengineer4949/Rain-Prediction/HEAD/weatherAUS.csv --------------------------------------------------------------------------------