├── .gitignore ├── README.md ├── __pycache__ └── importsql.cpython-37.pyc ├── forestfire-ai.pt ├── loadmodel.py ├── makedataset.py ├── pytorch.py ├── react-app ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ ├── robots.txt │ └── saves │ │ ├── group1-shard1of1.bin │ │ └── model.json ├── routes.js ├── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── LocationPicker.js │ ├── Map.js │ ├── Results.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── saves │ │ ├── group1-shard1of1.bin │ │ ├── model.json │ │ └── saved_model │ │ │ ├── saved_model.pb │ │ │ └── variables │ │ │ ├── variables.data-00000-of-00001 │ │ │ └── variables.index │ ├── serviceWorker.js │ ├── setupTests.js │ └── tf.js ├── xdn.config.js └── yarn.lock ├── react-flask-app ├── .gitignore ├── README.md ├── api │ ├── .flaskenv │ ├── api.py │ ├── modelinterface.py │ ├── saves │ │ └── saved_model │ │ │ ├── ReadMe.txt │ │ │ ├── saved_model.pb │ │ │ └── variables │ │ │ ├── variables.data-00000-of-00001 │ │ │ └── variables.index │ └── test.py ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── serviceWorker.js │ └── setupTests.js └── yarn.lock ├── saves └── saved_model │ ├── ReadMe.txt │ ├── saved_model.pb │ └── variables │ ├── variables.data-00000-of-00001 │ └── variables.index ├── streamlitprototype.py ├── verification.txt └── worldis2.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/importsql.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/__pycache__/importsql.cpython-37.pyc -------------------------------------------------------------------------------- /forestfire-ai.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/forestfire-ai.pt -------------------------------------------------------------------------------- /loadmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/loadmodel.py -------------------------------------------------------------------------------- /makedataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/makedataset.py -------------------------------------------------------------------------------- /pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/pytorch.py -------------------------------------------------------------------------------- /react-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-app/.gitignore -------------------------------------------------------------------------------- /react-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-app/README.md -------------------------------------------------------------------------------- /react-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-app/package-lock.json -------------------------------------------------------------------------------- /react-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-app/package.json -------------------------------------------------------------------------------- /react-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-app/public/favicon.ico -------------------------------------------------------------------------------- /react-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-app/public/index.html -------------------------------------------------------------------------------- /react-app/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-app/public/logo192.png -------------------------------------------------------------------------------- /react-app/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-app/public/logo512.png -------------------------------------------------------------------------------- /react-app/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-app/public/manifest.json -------------------------------------------------------------------------------- /react-app/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-app/public/robots.txt -------------------------------------------------------------------------------- /react-app/public/saves/group1-shard1of1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-app/public/saves/group1-shard1of1.bin -------------------------------------------------------------------------------- /react-app/public/saves/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-app/public/saves/model.json -------------------------------------------------------------------------------- /react-app/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-app/routes.js -------------------------------------------------------------------------------- /react-app/src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /react-app/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-app/src/App.js -------------------------------------------------------------------------------- /react-app/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-app/src/App.test.js -------------------------------------------------------------------------------- /react-app/src/LocationPicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-app/src/LocationPicker.js -------------------------------------------------------------------------------- /react-app/src/Map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-app/src/Map.js -------------------------------------------------------------------------------- /react-app/src/Results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-app/src/Results.js -------------------------------------------------------------------------------- /react-app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-app/src/index.css -------------------------------------------------------------------------------- /react-app/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-app/src/index.js -------------------------------------------------------------------------------- /react-app/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-app/src/logo.svg -------------------------------------------------------------------------------- /react-app/src/saves/group1-shard1of1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-app/src/saves/group1-shard1of1.bin -------------------------------------------------------------------------------- /react-app/src/saves/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-app/src/saves/model.json -------------------------------------------------------------------------------- /react-app/src/saves/saved_model/saved_model.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-app/src/saves/saved_model/saved_model.pb -------------------------------------------------------------------------------- /react-app/src/saves/saved_model/variables/variables.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-app/src/saves/saved_model/variables/variables.data-00000-of-00001 -------------------------------------------------------------------------------- /react-app/src/saves/saved_model/variables/variables.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-app/src/saves/saved_model/variables/variables.index -------------------------------------------------------------------------------- /react-app/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-app/src/serviceWorker.js -------------------------------------------------------------------------------- /react-app/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-app/src/setupTests.js -------------------------------------------------------------------------------- /react-app/src/tf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-app/src/tf.js -------------------------------------------------------------------------------- /react-app/xdn.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-app/xdn.config.js -------------------------------------------------------------------------------- /react-app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-app/yarn.lock -------------------------------------------------------------------------------- /react-flask-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-flask-app/.gitignore -------------------------------------------------------------------------------- /react-flask-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-flask-app/README.md -------------------------------------------------------------------------------- /react-flask-app/api/.flaskenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-flask-app/api/.flaskenv -------------------------------------------------------------------------------- /react-flask-app/api/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-flask-app/api/api.py -------------------------------------------------------------------------------- /react-flask-app/api/modelinterface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-flask-app/api/modelinterface.py -------------------------------------------------------------------------------- /react-flask-app/api/saves/saved_model/ReadMe.txt: -------------------------------------------------------------------------------- 1 | Saved model with 5 epochs. Validation accuracy should be 0.9168. -------------------------------------------------------------------------------- /react-flask-app/api/saves/saved_model/saved_model.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-flask-app/api/saves/saved_model/saved_model.pb -------------------------------------------------------------------------------- /react-flask-app/api/saves/saved_model/variables/variables.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-flask-app/api/saves/saved_model/variables/variables.data-00000-of-00001 -------------------------------------------------------------------------------- /react-flask-app/api/saves/saved_model/variables/variables.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-flask-app/api/saves/saved_model/variables/variables.index -------------------------------------------------------------------------------- /react-flask-app/api/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-flask-app/api/test.py -------------------------------------------------------------------------------- /react-flask-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-flask-app/package-lock.json -------------------------------------------------------------------------------- /react-flask-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-flask-app/package.json -------------------------------------------------------------------------------- /react-flask-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-flask-app/public/favicon.ico -------------------------------------------------------------------------------- /react-flask-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-flask-app/public/index.html -------------------------------------------------------------------------------- /react-flask-app/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-flask-app/public/logo192.png -------------------------------------------------------------------------------- /react-flask-app/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-flask-app/public/logo512.png -------------------------------------------------------------------------------- /react-flask-app/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-flask-app/public/manifest.json -------------------------------------------------------------------------------- /react-flask-app/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-flask-app/public/robots.txt -------------------------------------------------------------------------------- /react-flask-app/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-flask-app/src/App.css -------------------------------------------------------------------------------- /react-flask-app/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-flask-app/src/App.js -------------------------------------------------------------------------------- /react-flask-app/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-flask-app/src/App.test.js -------------------------------------------------------------------------------- /react-flask-app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-flask-app/src/index.css -------------------------------------------------------------------------------- /react-flask-app/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-flask-app/src/index.js -------------------------------------------------------------------------------- /react-flask-app/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-flask-app/src/logo.svg -------------------------------------------------------------------------------- /react-flask-app/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-flask-app/src/serviceWorker.js -------------------------------------------------------------------------------- /react-flask-app/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-flask-app/src/setupTests.js -------------------------------------------------------------------------------- /react-flask-app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/react-flask-app/yarn.lock -------------------------------------------------------------------------------- /saves/saved_model/ReadMe.txt: -------------------------------------------------------------------------------- 1 | Saved model with 5 epochs. Validation accuracy should be 0.9168. -------------------------------------------------------------------------------- /saves/saved_model/saved_model.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/saves/saved_model/saved_model.pb -------------------------------------------------------------------------------- /saves/saved_model/variables/variables.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/saves/saved_model/variables/variables.data-00000-of-00001 -------------------------------------------------------------------------------- /saves/saved_model/variables/variables.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/saves/saved_model/variables/variables.index -------------------------------------------------------------------------------- /streamlitprototype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/streamlitprototype.py -------------------------------------------------------------------------------- /verification.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/verification.txt -------------------------------------------------------------------------------- /worldis2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyjzheng/BlueSky-AI/HEAD/worldis2.py --------------------------------------------------------------------------------