├── .gitignore ├── Collect Weather Data API.ipynb ├── Linear Regression Weather Prediction.ipynb ├── Neural Network Prediction.ipynb ├── README.md ├── collect_weather.py ├── preprocess.py ├── requirements.txt ├── train_test.py ├── train_test_dnn.py └── weather.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelE919/machine-learning-predict-weather/HEAD/.gitignore -------------------------------------------------------------------------------- /Collect Weather Data API.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelE919/machine-learning-predict-weather/HEAD/Collect Weather Data API.ipynb -------------------------------------------------------------------------------- /Linear Regression Weather Prediction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelE919/machine-learning-predict-weather/HEAD/Linear Regression Weather Prediction.ipynb -------------------------------------------------------------------------------- /Neural Network Prediction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelE919/machine-learning-predict-weather/HEAD/Neural Network Prediction.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelE919/machine-learning-predict-weather/HEAD/README.md -------------------------------------------------------------------------------- /collect_weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelE919/machine-learning-predict-weather/HEAD/collect_weather.py -------------------------------------------------------------------------------- /preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelE919/machine-learning-predict-weather/HEAD/preprocess.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelE919/machine-learning-predict-weather/HEAD/requirements.txt -------------------------------------------------------------------------------- /train_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelE919/machine-learning-predict-weather/HEAD/train_test.py -------------------------------------------------------------------------------- /train_test_dnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelE919/machine-learning-predict-weather/HEAD/train_test_dnn.py -------------------------------------------------------------------------------- /weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelE919/machine-learning-predict-weather/HEAD/weather.py --------------------------------------------------------------------------------