├── License.txt ├── README.md ├── code ├── constants.py ├── hi_analysis.py ├── histograms.py ├── make_datasets.py ├── make_yields.py ├── nnet_CNN.py ├── nnet_LSTM.py ├── pull_modis.py ├── ridge_baseline.py ├── show_tif_image.py ├── static_data_files │ ├── argentina_corn_filtered_regions.txt │ ├── argentina_soybeans_filtered_regions.txt │ ├── argentina_wheat_filtered_regions.txt │ ├── argentina_yields_raw.csv │ ├── argentina_yields_standardized.csv │ ├── brazil_corn_filtered_regions.txt │ ├── brazil_soybeans_filtered_regions.txt │ ├── brazil_yields_raw │ │ ├── Tabela 1000 - Producao de Amendoim total.xlsx │ │ ├── Tabela 1001 - Producao de Batata-inglesa total.xlsx │ │ ├── Tabela 1002 - Producao de Feijao total.xlsx │ │ ├── Tabela 1612 - Producao de Amendoim (em casca).xlsx │ │ ├── Tabela 1612 - Producao de Arroz (em casca).xlsx │ │ ├── Tabela 1612 - Producao de Batata-inglesa.xlsx │ │ ├── Tabela 1612 - Producao de Cana-de-acucar.xlsx │ │ ├── Tabela 1612 - Producao de Feijao (em grao).xlsx │ │ ├── Tabela 1612 - Producao de Mandioca.xlsx │ │ ├── Tabela 1612 - Producao de Milho (em grao).xlsx │ │ ├── Tabela 1612 - Producao de Soja (em grao).xlsx │ │ ├── Tabela 1612 - Producao de Trigo (em grao).xlsx │ │ ├── Tabela 1612.csv │ │ └── Tabela 839 - Producao de Milho total.xlsx │ ├── brazil_yields_standardized.csv │ ├── ethiopia_yields_raw.csv │ ├── ethiopia_yields_standardized.csv │ ├── india_yields_raw.csv │ ├── india_yields_standardized.csv │ ├── southsudan_yields_raw.csv │ ├── southsudan_yields_standardized.csv │ ├── usa_yields_raw.csv │ └── usa_yields_standardized.csv ├── test_NN.py ├── train_NN.py └── util.py └── environment_setup.txt /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnaXWang/deep-transfer-learning-crop-prediction/HEAD/License.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnaXWang/deep-transfer-learning-crop-prediction/HEAD/README.md -------------------------------------------------------------------------------- /code/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnaXWang/deep-transfer-learning-crop-prediction/HEAD/code/constants.py -------------------------------------------------------------------------------- /code/hi_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnaXWang/deep-transfer-learning-crop-prediction/HEAD/code/hi_analysis.py -------------------------------------------------------------------------------- /code/histograms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnaXWang/deep-transfer-learning-crop-prediction/HEAD/code/histograms.py -------------------------------------------------------------------------------- /code/make_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnaXWang/deep-transfer-learning-crop-prediction/HEAD/code/make_datasets.py -------------------------------------------------------------------------------- /code/make_yields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnaXWang/deep-transfer-learning-crop-prediction/HEAD/code/make_yields.py -------------------------------------------------------------------------------- /code/nnet_CNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnaXWang/deep-transfer-learning-crop-prediction/HEAD/code/nnet_CNN.py -------------------------------------------------------------------------------- /code/nnet_LSTM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnaXWang/deep-transfer-learning-crop-prediction/HEAD/code/nnet_LSTM.py -------------------------------------------------------------------------------- /code/pull_modis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnaXWang/deep-transfer-learning-crop-prediction/HEAD/code/pull_modis.py -------------------------------------------------------------------------------- /code/ridge_baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnaXWang/deep-transfer-learning-crop-prediction/HEAD/code/ridge_baseline.py -------------------------------------------------------------------------------- /code/show_tif_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnaXWang/deep-transfer-learning-crop-prediction/HEAD/code/show_tif_image.py -------------------------------------------------------------------------------- /code/static_data_files/argentina_corn_filtered_regions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnaXWang/deep-transfer-learning-crop-prediction/HEAD/code/static_data_files/argentina_corn_filtered_regions.txt -------------------------------------------------------------------------------- /code/static_data_files/argentina_soybeans_filtered_regions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnaXWang/deep-transfer-learning-crop-prediction/HEAD/code/static_data_files/argentina_soybeans_filtered_regions.txt -------------------------------------------------------------------------------- /code/static_data_files/argentina_wheat_filtered_regions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnaXWang/deep-transfer-learning-crop-prediction/HEAD/code/static_data_files/argentina_wheat_filtered_regions.txt -------------------------------------------------------------------------------- /code/static_data_files/argentina_yields_raw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnaXWang/deep-transfer-learning-crop-prediction/HEAD/code/static_data_files/argentina_yields_raw.csv -------------------------------------------------------------------------------- /code/static_data_files/argentina_yields_standardized.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnaXWang/deep-transfer-learning-crop-prediction/HEAD/code/static_data_files/argentina_yields_standardized.csv -------------------------------------------------------------------------------- /code/static_data_files/brazil_corn_filtered_regions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnaXWang/deep-transfer-learning-crop-prediction/HEAD/code/static_data_files/brazil_corn_filtered_regions.txt -------------------------------------------------------------------------------- /code/static_data_files/brazil_soybeans_filtered_regions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnaXWang/deep-transfer-learning-crop-prediction/HEAD/code/static_data_files/brazil_soybeans_filtered_regions.txt -------------------------------------------------------------------------------- /code/static_data_files/brazil_yields_raw/Tabela 1000 - Producao de Amendoim total.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnaXWang/deep-transfer-learning-crop-prediction/HEAD/code/static_data_files/brazil_yields_raw/Tabela 1000 - Producao de Amendoim total.xlsx -------------------------------------------------------------------------------- /code/static_data_files/brazil_yields_raw/Tabela 1001 - Producao de Batata-inglesa total.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnaXWang/deep-transfer-learning-crop-prediction/HEAD/code/static_data_files/brazil_yields_raw/Tabela 1001 - Producao de Batata-inglesa total.xlsx -------------------------------------------------------------------------------- /code/static_data_files/brazil_yields_raw/Tabela 1002 - Producao de Feijao total.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnaXWang/deep-transfer-learning-crop-prediction/HEAD/code/static_data_files/brazil_yields_raw/Tabela 1002 - Producao de Feijao total.xlsx -------------------------------------------------------------------------------- /code/static_data_files/brazil_yields_raw/Tabela 1612 - Producao de Amendoim (em casca).xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnaXWang/deep-transfer-learning-crop-prediction/HEAD/code/static_data_files/brazil_yields_raw/Tabela 1612 - Producao de Amendoim (em casca).xlsx -------------------------------------------------------------------------------- /code/static_data_files/brazil_yields_raw/Tabela 1612 - Producao de Arroz (em casca).xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnaXWang/deep-transfer-learning-crop-prediction/HEAD/code/static_data_files/brazil_yields_raw/Tabela 1612 - Producao de Arroz (em casca).xlsx -------------------------------------------------------------------------------- /code/static_data_files/brazil_yields_raw/Tabela 1612 - Producao de Batata-inglesa.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnaXWang/deep-transfer-learning-crop-prediction/HEAD/code/static_data_files/brazil_yields_raw/Tabela 1612 - Producao de Batata-inglesa.xlsx -------------------------------------------------------------------------------- /code/static_data_files/brazil_yields_raw/Tabela 1612 - Producao de Cana-de-acucar.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnaXWang/deep-transfer-learning-crop-prediction/HEAD/code/static_data_files/brazil_yields_raw/Tabela 1612 - Producao de Cana-de-acucar.xlsx -------------------------------------------------------------------------------- /code/static_data_files/brazil_yields_raw/Tabela 1612 - Producao de Feijao (em grao).xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnaXWang/deep-transfer-learning-crop-prediction/HEAD/code/static_data_files/brazil_yields_raw/Tabela 1612 - Producao de Feijao (em grao).xlsx -------------------------------------------------------------------------------- /code/static_data_files/brazil_yields_raw/Tabela 1612 - Producao de Mandioca.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnaXWang/deep-transfer-learning-crop-prediction/HEAD/code/static_data_files/brazil_yields_raw/Tabela 1612 - Producao de Mandioca.xlsx -------------------------------------------------------------------------------- /code/static_data_files/brazil_yields_raw/Tabela 1612 - Producao de Milho (em grao).xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnaXWang/deep-transfer-learning-crop-prediction/HEAD/code/static_data_files/brazil_yields_raw/Tabela 1612 - Producao de Milho (em grao).xlsx -------------------------------------------------------------------------------- /code/static_data_files/brazil_yields_raw/Tabela 1612 - Producao de Soja (em grao).xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnaXWang/deep-transfer-learning-crop-prediction/HEAD/code/static_data_files/brazil_yields_raw/Tabela 1612 - Producao de Soja (em grao).xlsx -------------------------------------------------------------------------------- /code/static_data_files/brazil_yields_raw/Tabela 1612 - Producao de Trigo (em grao).xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnaXWang/deep-transfer-learning-crop-prediction/HEAD/code/static_data_files/brazil_yields_raw/Tabela 1612 - Producao de Trigo (em grao).xlsx -------------------------------------------------------------------------------- /code/static_data_files/brazil_yields_raw/Tabela 1612.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnaXWang/deep-transfer-learning-crop-prediction/HEAD/code/static_data_files/brazil_yields_raw/Tabela 1612.csv -------------------------------------------------------------------------------- /code/static_data_files/brazil_yields_raw/Tabela 839 - Producao de Milho total.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnaXWang/deep-transfer-learning-crop-prediction/HEAD/code/static_data_files/brazil_yields_raw/Tabela 839 - Producao de Milho total.xlsx -------------------------------------------------------------------------------- /code/static_data_files/brazil_yields_standardized.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnaXWang/deep-transfer-learning-crop-prediction/HEAD/code/static_data_files/brazil_yields_standardized.csv -------------------------------------------------------------------------------- /code/static_data_files/ethiopia_yields_raw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnaXWang/deep-transfer-learning-crop-prediction/HEAD/code/static_data_files/ethiopia_yields_raw.csv -------------------------------------------------------------------------------- /code/static_data_files/ethiopia_yields_standardized.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnaXWang/deep-transfer-learning-crop-prediction/HEAD/code/static_data_files/ethiopia_yields_standardized.csv -------------------------------------------------------------------------------- /code/static_data_files/india_yields_raw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnaXWang/deep-transfer-learning-crop-prediction/HEAD/code/static_data_files/india_yields_raw.csv -------------------------------------------------------------------------------- /code/static_data_files/india_yields_standardized.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnaXWang/deep-transfer-learning-crop-prediction/HEAD/code/static_data_files/india_yields_standardized.csv -------------------------------------------------------------------------------- /code/static_data_files/southsudan_yields_raw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnaXWang/deep-transfer-learning-crop-prediction/HEAD/code/static_data_files/southsudan_yields_raw.csv -------------------------------------------------------------------------------- /code/static_data_files/southsudan_yields_standardized.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnaXWang/deep-transfer-learning-crop-prediction/HEAD/code/static_data_files/southsudan_yields_standardized.csv -------------------------------------------------------------------------------- /code/static_data_files/usa_yields_raw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnaXWang/deep-transfer-learning-crop-prediction/HEAD/code/static_data_files/usa_yields_raw.csv -------------------------------------------------------------------------------- /code/static_data_files/usa_yields_standardized.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnaXWang/deep-transfer-learning-crop-prediction/HEAD/code/static_data_files/usa_yields_standardized.csv -------------------------------------------------------------------------------- /code/test_NN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnaXWang/deep-transfer-learning-crop-prediction/HEAD/code/test_NN.py -------------------------------------------------------------------------------- /code/train_NN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnaXWang/deep-transfer-learning-crop-prediction/HEAD/code/train_NN.py -------------------------------------------------------------------------------- /code/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnaXWang/deep-transfer-learning-crop-prediction/HEAD/code/util.py -------------------------------------------------------------------------------- /environment_setup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnaXWang/deep-transfer-learning-crop-prediction/HEAD/environment_setup.txt --------------------------------------------------------------------------------