├── .gitignore ├── Example_20190325.png ├── LICENSE ├── README.md ├── aux_data └── tw_topo.npy ├── config.ini ├── config.py ├── data ├── input │ └── tp_20190325.npy └── label │ └── 20190325.npy ├── environment.yml ├── main.py ├── model_arch.PNG ├── model_utils ├── MyLayersNonSeq.py ├── MyModelsNonSeq.py ├── __init__.py ├── dataloader.py ├── loss.py └── train.py ├── pred.py ├── pred_input └── tp_20190325.npy ├── pretrained_results ├── losses.npy ├── pred_epoch │ ├── pred_epoch0.npy │ ├── pred_epoch100.npy │ ├── pred_epoch150.npy │ ├── pred_epoch200.npy │ ├── pred_epoch250.npy │ ├── pred_epoch300.npy │ ├── pred_epoch350.npy │ ├── pred_epoch400.npy │ ├── pred_epoch450.npy │ ├── pred_epoch50.npy │ ├── pred_epoch500.npy │ ├── pred_epoch550.npy │ ├── pred_epoch600.npy │ ├── pred_epoch650.npy │ ├── pred_epoch700.npy │ ├── pred_epoch750.npy │ ├── pred_epoch800.npy │ ├── pred_epoch850.npy │ ├── pred_epoch900.npy │ ├── pred_epoch950.npy │ └── x5_preds_20120612.gif ├── time_history.npy └── val_losses.npy ├── pretrained_weights ├── checkpoint ├── variables.data-00000-of-00001 └── variables.index ├── results └── .gitkeep └── weights └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- 1 | *.[oa] 2 | test.ipynb 3 | __pycache__/ -------------------------------------------------------------------------------- /Example_20190325.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugChiang/Climate-downscaling/HEAD/Example_20190325.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugChiang/Climate-downscaling/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugChiang/Climate-downscaling/HEAD/README.md -------------------------------------------------------------------------------- /aux_data/tw_topo.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugChiang/Climate-downscaling/HEAD/aux_data/tw_topo.npy -------------------------------------------------------------------------------- /config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugChiang/Climate-downscaling/HEAD/config.ini -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugChiang/Climate-downscaling/HEAD/config.py -------------------------------------------------------------------------------- /data/input/tp_20190325.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugChiang/Climate-downscaling/HEAD/data/input/tp_20190325.npy -------------------------------------------------------------------------------- /data/label/20190325.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugChiang/Climate-downscaling/HEAD/data/label/20190325.npy -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugChiang/Climate-downscaling/HEAD/environment.yml -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugChiang/Climate-downscaling/HEAD/main.py -------------------------------------------------------------------------------- /model_arch.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugChiang/Climate-downscaling/HEAD/model_arch.PNG -------------------------------------------------------------------------------- /model_utils/MyLayersNonSeq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugChiang/Climate-downscaling/HEAD/model_utils/MyLayersNonSeq.py -------------------------------------------------------------------------------- /model_utils/MyModelsNonSeq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugChiang/Climate-downscaling/HEAD/model_utils/MyModelsNonSeq.py -------------------------------------------------------------------------------- /model_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model_utils/dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugChiang/Climate-downscaling/HEAD/model_utils/dataloader.py -------------------------------------------------------------------------------- /model_utils/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugChiang/Climate-downscaling/HEAD/model_utils/loss.py -------------------------------------------------------------------------------- /model_utils/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugChiang/Climate-downscaling/HEAD/model_utils/train.py -------------------------------------------------------------------------------- /pred.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugChiang/Climate-downscaling/HEAD/pred.py -------------------------------------------------------------------------------- /pred_input/tp_20190325.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugChiang/Climate-downscaling/HEAD/pred_input/tp_20190325.npy -------------------------------------------------------------------------------- /pretrained_results/losses.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugChiang/Climate-downscaling/HEAD/pretrained_results/losses.npy -------------------------------------------------------------------------------- /pretrained_results/pred_epoch/pred_epoch0.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugChiang/Climate-downscaling/HEAD/pretrained_results/pred_epoch/pred_epoch0.npy -------------------------------------------------------------------------------- /pretrained_results/pred_epoch/pred_epoch100.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugChiang/Climate-downscaling/HEAD/pretrained_results/pred_epoch/pred_epoch100.npy -------------------------------------------------------------------------------- /pretrained_results/pred_epoch/pred_epoch150.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugChiang/Climate-downscaling/HEAD/pretrained_results/pred_epoch/pred_epoch150.npy -------------------------------------------------------------------------------- /pretrained_results/pred_epoch/pred_epoch200.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugChiang/Climate-downscaling/HEAD/pretrained_results/pred_epoch/pred_epoch200.npy -------------------------------------------------------------------------------- /pretrained_results/pred_epoch/pred_epoch250.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugChiang/Climate-downscaling/HEAD/pretrained_results/pred_epoch/pred_epoch250.npy -------------------------------------------------------------------------------- /pretrained_results/pred_epoch/pred_epoch300.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugChiang/Climate-downscaling/HEAD/pretrained_results/pred_epoch/pred_epoch300.npy -------------------------------------------------------------------------------- /pretrained_results/pred_epoch/pred_epoch350.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugChiang/Climate-downscaling/HEAD/pretrained_results/pred_epoch/pred_epoch350.npy -------------------------------------------------------------------------------- /pretrained_results/pred_epoch/pred_epoch400.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugChiang/Climate-downscaling/HEAD/pretrained_results/pred_epoch/pred_epoch400.npy -------------------------------------------------------------------------------- /pretrained_results/pred_epoch/pred_epoch450.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugChiang/Climate-downscaling/HEAD/pretrained_results/pred_epoch/pred_epoch450.npy -------------------------------------------------------------------------------- /pretrained_results/pred_epoch/pred_epoch50.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugChiang/Climate-downscaling/HEAD/pretrained_results/pred_epoch/pred_epoch50.npy -------------------------------------------------------------------------------- /pretrained_results/pred_epoch/pred_epoch500.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugChiang/Climate-downscaling/HEAD/pretrained_results/pred_epoch/pred_epoch500.npy -------------------------------------------------------------------------------- /pretrained_results/pred_epoch/pred_epoch550.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugChiang/Climate-downscaling/HEAD/pretrained_results/pred_epoch/pred_epoch550.npy -------------------------------------------------------------------------------- /pretrained_results/pred_epoch/pred_epoch600.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugChiang/Climate-downscaling/HEAD/pretrained_results/pred_epoch/pred_epoch600.npy -------------------------------------------------------------------------------- /pretrained_results/pred_epoch/pred_epoch650.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugChiang/Climate-downscaling/HEAD/pretrained_results/pred_epoch/pred_epoch650.npy -------------------------------------------------------------------------------- /pretrained_results/pred_epoch/pred_epoch700.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugChiang/Climate-downscaling/HEAD/pretrained_results/pred_epoch/pred_epoch700.npy -------------------------------------------------------------------------------- /pretrained_results/pred_epoch/pred_epoch750.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugChiang/Climate-downscaling/HEAD/pretrained_results/pred_epoch/pred_epoch750.npy -------------------------------------------------------------------------------- /pretrained_results/pred_epoch/pred_epoch800.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugChiang/Climate-downscaling/HEAD/pretrained_results/pred_epoch/pred_epoch800.npy -------------------------------------------------------------------------------- /pretrained_results/pred_epoch/pred_epoch850.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugChiang/Climate-downscaling/HEAD/pretrained_results/pred_epoch/pred_epoch850.npy -------------------------------------------------------------------------------- /pretrained_results/pred_epoch/pred_epoch900.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugChiang/Climate-downscaling/HEAD/pretrained_results/pred_epoch/pred_epoch900.npy -------------------------------------------------------------------------------- /pretrained_results/pred_epoch/pred_epoch950.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugChiang/Climate-downscaling/HEAD/pretrained_results/pred_epoch/pred_epoch950.npy -------------------------------------------------------------------------------- /pretrained_results/pred_epoch/x5_preds_20120612.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugChiang/Climate-downscaling/HEAD/pretrained_results/pred_epoch/x5_preds_20120612.gif -------------------------------------------------------------------------------- /pretrained_results/time_history.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugChiang/Climate-downscaling/HEAD/pretrained_results/time_history.npy -------------------------------------------------------------------------------- /pretrained_results/val_losses.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugChiang/Climate-downscaling/HEAD/pretrained_results/val_losses.npy -------------------------------------------------------------------------------- /pretrained_weights/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugChiang/Climate-downscaling/HEAD/pretrained_weights/checkpoint -------------------------------------------------------------------------------- /pretrained_weights/variables.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugChiang/Climate-downscaling/HEAD/pretrained_weights/variables.data-00000-of-00001 -------------------------------------------------------------------------------- /pretrained_weights/variables.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugChiang/Climate-downscaling/HEAD/pretrained_weights/variables.index -------------------------------------------------------------------------------- /results/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /weights/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------