├── .gitignore ├── README.md ├── data ├── README.md └── raw │ ├── kenya_non_crop │ ├── 2019_gepro_noncrop │ │ ├── 2019_gepro_noncrop.cpg │ │ ├── 2019_gepro_noncrop.dbf │ │ ├── 2019_gepro_noncrop.prj │ │ ├── 2019_gepro_noncrop.shp │ │ └── 2019_gepro_noncrop.shx │ ├── noncrop_kenya_gt │ │ ├── noncrop_kenya_gt.cpg │ │ ├── noncrop_kenya_gt.dbf │ │ ├── noncrop_kenya_gt.prj │ │ ├── noncrop_kenya_gt.qpj │ │ ├── noncrop_kenya_gt.shp │ │ └── noncrop_kenya_gt.shx │ ├── noncrop_labels_set2 │ │ ├── noncrop_labels_add2.cpg │ │ ├── noncrop_labels_add2.dbf │ │ ├── noncrop_labels_add2.prj │ │ ├── noncrop_labels_add2.qpj │ │ ├── noncrop_labels_add2.shp │ │ └── noncrop_labels_add2.shx │ ├── noncrop_labels_v2 │ │ ├── noncrop_labels_small.cpg │ │ ├── noncrop_labels_small.dbf │ │ ├── noncrop_labels_small.prj │ │ ├── noncrop_labels_small.qpj │ │ ├── noncrop_labels_small.shp │ │ └── noncrop_labels_small.shx │ └── noncrop_water_kenya_gt │ │ ├── noncrop_water_kenya_gt.cpg │ │ ├── noncrop_water_kenya_gt.dbf │ │ ├── noncrop_water_kenya_gt.prj │ │ ├── noncrop_water_kenya_gt.qpj │ │ ├── noncrop_water_kenya_gt.shp │ │ └── noncrop_water_kenya_gt.shx │ └── plant_village_kenya │ └── ref_african_crops_kenya_01_labels │ ├── _common │ ├── documentation.pdf │ └── property_descriptions.csv │ ├── collection.json │ ├── ref_african_crops_kenya_01_labels_00 │ ├── labels.geojson │ └── stac.json │ ├── ref_african_crops_kenya_01_labels_01 │ ├── labels.geojson │ └── stac.json │ └── ref_african_crops_kenya_01_labels_02 │ ├── labels.geojson │ └── stac.json ├── diagrams ├── kenya_busia_maps.png └── models.png ├── environment.gpu.yml ├── environment.yml ├── mypy.ini ├── pyproject.toml ├── scripts ├── engineer.py ├── export.py ├── model.py ├── predict.py ├── process.py ├── split_tiff.py └── test.py └── src ├── __init__.py ├── analysis.py ├── config.py ├── engineer ├── __init__.py ├── base.py ├── geowiki.py ├── kenya_non_crop.py └── pv_kenya.py ├── exporters ├── __init__.py ├── base.py ├── geowiki.py └── sentinel │ ├── __init__.py │ ├── base.py │ ├── cloudfree │ ├── __init__.py │ ├── cloudfree.py │ ├── constants.py │ ├── fast.py │ └── utils.py │ ├── geowiki.py │ ├── kenya_non_crop.py │ ├── pv_kenya.py │ ├── region.py │ └── utils.py ├── models ├── __init__.py ├── classifier.py ├── data.py ├── forecaster.py ├── lstm.py ├── model.py ├── train_funcs.py └── utils.py ├── processors ├── __init__.py ├── base.py ├── geowiki.py ├── kenya_non_crop.py └── pv_kenya.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/README.md -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/data/README.md -------------------------------------------------------------------------------- /data/raw/kenya_non_crop/2019_gepro_noncrop/2019_gepro_noncrop.cpg: -------------------------------------------------------------------------------- 1 | ISO-8859-1 -------------------------------------------------------------------------------- /data/raw/kenya_non_crop/2019_gepro_noncrop/2019_gepro_noncrop.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/data/raw/kenya_non_crop/2019_gepro_noncrop/2019_gepro_noncrop.dbf -------------------------------------------------------------------------------- /data/raw/kenya_non_crop/2019_gepro_noncrop/2019_gepro_noncrop.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/data/raw/kenya_non_crop/2019_gepro_noncrop/2019_gepro_noncrop.prj -------------------------------------------------------------------------------- /data/raw/kenya_non_crop/2019_gepro_noncrop/2019_gepro_noncrop.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/data/raw/kenya_non_crop/2019_gepro_noncrop/2019_gepro_noncrop.shp -------------------------------------------------------------------------------- /data/raw/kenya_non_crop/2019_gepro_noncrop/2019_gepro_noncrop.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/data/raw/kenya_non_crop/2019_gepro_noncrop/2019_gepro_noncrop.shx -------------------------------------------------------------------------------- /data/raw/kenya_non_crop/noncrop_kenya_gt/noncrop_kenya_gt.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /data/raw/kenya_non_crop/noncrop_kenya_gt/noncrop_kenya_gt.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/data/raw/kenya_non_crop/noncrop_kenya_gt/noncrop_kenya_gt.dbf -------------------------------------------------------------------------------- /data/raw/kenya_non_crop/noncrop_kenya_gt/noncrop_kenya_gt.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/data/raw/kenya_non_crop/noncrop_kenya_gt/noncrop_kenya_gt.prj -------------------------------------------------------------------------------- /data/raw/kenya_non_crop/noncrop_kenya_gt/noncrop_kenya_gt.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/data/raw/kenya_non_crop/noncrop_kenya_gt/noncrop_kenya_gt.qpj -------------------------------------------------------------------------------- /data/raw/kenya_non_crop/noncrop_kenya_gt/noncrop_kenya_gt.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/data/raw/kenya_non_crop/noncrop_kenya_gt/noncrop_kenya_gt.shp -------------------------------------------------------------------------------- /data/raw/kenya_non_crop/noncrop_kenya_gt/noncrop_kenya_gt.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/data/raw/kenya_non_crop/noncrop_kenya_gt/noncrop_kenya_gt.shx -------------------------------------------------------------------------------- /data/raw/kenya_non_crop/noncrop_labels_set2/noncrop_labels_add2.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /data/raw/kenya_non_crop/noncrop_labels_set2/noncrop_labels_add2.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/data/raw/kenya_non_crop/noncrop_labels_set2/noncrop_labels_add2.dbf -------------------------------------------------------------------------------- /data/raw/kenya_non_crop/noncrop_labels_set2/noncrop_labels_add2.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/data/raw/kenya_non_crop/noncrop_labels_set2/noncrop_labels_add2.prj -------------------------------------------------------------------------------- /data/raw/kenya_non_crop/noncrop_labels_set2/noncrop_labels_add2.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/data/raw/kenya_non_crop/noncrop_labels_set2/noncrop_labels_add2.qpj -------------------------------------------------------------------------------- /data/raw/kenya_non_crop/noncrop_labels_set2/noncrop_labels_add2.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/data/raw/kenya_non_crop/noncrop_labels_set2/noncrop_labels_add2.shp -------------------------------------------------------------------------------- /data/raw/kenya_non_crop/noncrop_labels_set2/noncrop_labels_add2.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/data/raw/kenya_non_crop/noncrop_labels_set2/noncrop_labels_add2.shx -------------------------------------------------------------------------------- /data/raw/kenya_non_crop/noncrop_labels_v2/noncrop_labels_small.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /data/raw/kenya_non_crop/noncrop_labels_v2/noncrop_labels_small.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/data/raw/kenya_non_crop/noncrop_labels_v2/noncrop_labels_small.dbf -------------------------------------------------------------------------------- /data/raw/kenya_non_crop/noncrop_labels_v2/noncrop_labels_small.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/data/raw/kenya_non_crop/noncrop_labels_v2/noncrop_labels_small.prj -------------------------------------------------------------------------------- /data/raw/kenya_non_crop/noncrop_labels_v2/noncrop_labels_small.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/data/raw/kenya_non_crop/noncrop_labels_v2/noncrop_labels_small.qpj -------------------------------------------------------------------------------- /data/raw/kenya_non_crop/noncrop_labels_v2/noncrop_labels_small.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/data/raw/kenya_non_crop/noncrop_labels_v2/noncrop_labels_small.shp -------------------------------------------------------------------------------- /data/raw/kenya_non_crop/noncrop_labels_v2/noncrop_labels_small.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/data/raw/kenya_non_crop/noncrop_labels_v2/noncrop_labels_small.shx -------------------------------------------------------------------------------- /data/raw/kenya_non_crop/noncrop_water_kenya_gt/noncrop_water_kenya_gt.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /data/raw/kenya_non_crop/noncrop_water_kenya_gt/noncrop_water_kenya_gt.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/data/raw/kenya_non_crop/noncrop_water_kenya_gt/noncrop_water_kenya_gt.dbf -------------------------------------------------------------------------------- /data/raw/kenya_non_crop/noncrop_water_kenya_gt/noncrop_water_kenya_gt.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/data/raw/kenya_non_crop/noncrop_water_kenya_gt/noncrop_water_kenya_gt.prj -------------------------------------------------------------------------------- /data/raw/kenya_non_crop/noncrop_water_kenya_gt/noncrop_water_kenya_gt.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/data/raw/kenya_non_crop/noncrop_water_kenya_gt/noncrop_water_kenya_gt.qpj -------------------------------------------------------------------------------- /data/raw/kenya_non_crop/noncrop_water_kenya_gt/noncrop_water_kenya_gt.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/data/raw/kenya_non_crop/noncrop_water_kenya_gt/noncrop_water_kenya_gt.shp -------------------------------------------------------------------------------- /data/raw/kenya_non_crop/noncrop_water_kenya_gt/noncrop_water_kenya_gt.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/data/raw/kenya_non_crop/noncrop_water_kenya_gt/noncrop_water_kenya_gt.shx -------------------------------------------------------------------------------- /data/raw/plant_village_kenya/ref_african_crops_kenya_01_labels/_common/documentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/data/raw/plant_village_kenya/ref_african_crops_kenya_01_labels/_common/documentation.pdf -------------------------------------------------------------------------------- /data/raw/plant_village_kenya/ref_african_crops_kenya_01_labels/_common/property_descriptions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/data/raw/plant_village_kenya/ref_african_crops_kenya_01_labels/_common/property_descriptions.csv -------------------------------------------------------------------------------- /data/raw/plant_village_kenya/ref_african_crops_kenya_01_labels/collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/data/raw/plant_village_kenya/ref_african_crops_kenya_01_labels/collection.json -------------------------------------------------------------------------------- /data/raw/plant_village_kenya/ref_african_crops_kenya_01_labels/ref_african_crops_kenya_01_labels_00/labels.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/data/raw/plant_village_kenya/ref_african_crops_kenya_01_labels/ref_african_crops_kenya_01_labels_00/labels.geojson -------------------------------------------------------------------------------- /data/raw/plant_village_kenya/ref_african_crops_kenya_01_labels/ref_african_crops_kenya_01_labels_00/stac.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/data/raw/plant_village_kenya/ref_african_crops_kenya_01_labels/ref_african_crops_kenya_01_labels_00/stac.json -------------------------------------------------------------------------------- /data/raw/plant_village_kenya/ref_african_crops_kenya_01_labels/ref_african_crops_kenya_01_labels_01/labels.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/data/raw/plant_village_kenya/ref_african_crops_kenya_01_labels/ref_african_crops_kenya_01_labels_01/labels.geojson -------------------------------------------------------------------------------- /data/raw/plant_village_kenya/ref_african_crops_kenya_01_labels/ref_african_crops_kenya_01_labels_01/stac.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/data/raw/plant_village_kenya/ref_african_crops_kenya_01_labels/ref_african_crops_kenya_01_labels_01/stac.json -------------------------------------------------------------------------------- /data/raw/plant_village_kenya/ref_african_crops_kenya_01_labels/ref_african_crops_kenya_01_labels_02/labels.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/data/raw/plant_village_kenya/ref_african_crops_kenya_01_labels/ref_african_crops_kenya_01_labels_02/labels.geojson -------------------------------------------------------------------------------- /data/raw/plant_village_kenya/ref_african_crops_kenya_01_labels/ref_african_crops_kenya_01_labels_02/stac.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/data/raw/plant_village_kenya/ref_african_crops_kenya_01_labels/ref_african_crops_kenya_01_labels_02/stac.json -------------------------------------------------------------------------------- /diagrams/kenya_busia_maps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/diagrams/kenya_busia_maps.png -------------------------------------------------------------------------------- /diagrams/models.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/diagrams/models.png -------------------------------------------------------------------------------- /environment.gpu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/environment.gpu.yml -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/environment.yml -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- 1 | [mypy] 2 | ignore_missing_imports = True 3 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- 1 | [tool.black] 2 | line-length = 100 3 | target_version = ['py36'] 4 | -------------------------------------------------------------------------------- /scripts/engineer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/scripts/engineer.py -------------------------------------------------------------------------------- /scripts/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/scripts/export.py -------------------------------------------------------------------------------- /scripts/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/scripts/model.py -------------------------------------------------------------------------------- /scripts/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/scripts/predict.py -------------------------------------------------------------------------------- /scripts/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/scripts/process.py -------------------------------------------------------------------------------- /scripts/split_tiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/scripts/split_tiff.py -------------------------------------------------------------------------------- /scripts/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/scripts/test.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/src/analysis.py -------------------------------------------------------------------------------- /src/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/src/config.py -------------------------------------------------------------------------------- /src/engineer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/src/engineer/__init__.py -------------------------------------------------------------------------------- /src/engineer/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/src/engineer/base.py -------------------------------------------------------------------------------- /src/engineer/geowiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/src/engineer/geowiki.py -------------------------------------------------------------------------------- /src/engineer/kenya_non_crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/src/engineer/kenya_non_crop.py -------------------------------------------------------------------------------- /src/engineer/pv_kenya.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/src/engineer/pv_kenya.py -------------------------------------------------------------------------------- /src/exporters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/src/exporters/__init__.py -------------------------------------------------------------------------------- /src/exporters/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/src/exporters/base.py -------------------------------------------------------------------------------- /src/exporters/geowiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/src/exporters/geowiki.py -------------------------------------------------------------------------------- /src/exporters/sentinel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/exporters/sentinel/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/src/exporters/sentinel/base.py -------------------------------------------------------------------------------- /src/exporters/sentinel/cloudfree/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/src/exporters/sentinel/cloudfree/__init__.py -------------------------------------------------------------------------------- /src/exporters/sentinel/cloudfree/cloudfree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/src/exporters/sentinel/cloudfree/cloudfree.py -------------------------------------------------------------------------------- /src/exporters/sentinel/cloudfree/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/src/exporters/sentinel/cloudfree/constants.py -------------------------------------------------------------------------------- /src/exporters/sentinel/cloudfree/fast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/src/exporters/sentinel/cloudfree/fast.py -------------------------------------------------------------------------------- /src/exporters/sentinel/cloudfree/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/src/exporters/sentinel/cloudfree/utils.py -------------------------------------------------------------------------------- /src/exporters/sentinel/geowiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/src/exporters/sentinel/geowiki.py -------------------------------------------------------------------------------- /src/exporters/sentinel/kenya_non_crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/src/exporters/sentinel/kenya_non_crop.py -------------------------------------------------------------------------------- /src/exporters/sentinel/pv_kenya.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/src/exporters/sentinel/pv_kenya.py -------------------------------------------------------------------------------- /src/exporters/sentinel/region.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/src/exporters/sentinel/region.py -------------------------------------------------------------------------------- /src/exporters/sentinel/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/src/exporters/sentinel/utils.py -------------------------------------------------------------------------------- /src/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/src/models/__init__.py -------------------------------------------------------------------------------- /src/models/classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/src/models/classifier.py -------------------------------------------------------------------------------- /src/models/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/src/models/data.py -------------------------------------------------------------------------------- /src/models/forecaster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/src/models/forecaster.py -------------------------------------------------------------------------------- /src/models/lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/src/models/lstm.py -------------------------------------------------------------------------------- /src/models/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/src/models/model.py -------------------------------------------------------------------------------- /src/models/train_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/src/models/train_funcs.py -------------------------------------------------------------------------------- /src/models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/src/models/utils.py -------------------------------------------------------------------------------- /src/processors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/src/processors/__init__.py -------------------------------------------------------------------------------- /src/processors/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/src/processors/base.py -------------------------------------------------------------------------------- /src/processors/geowiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/src/processors/geowiki.py -------------------------------------------------------------------------------- /src/processors/kenya_non_crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/src/processors/kenya_non_crop.py -------------------------------------------------------------------------------- /src/processors/pv_kenya.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/src/processors/pv_kenya.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasaharvest/kenya-crop-mask/HEAD/src/utils.py --------------------------------------------------------------------------------