├── .gitignore ├── Cleanup.ipynb ├── GL_delineation_geocoded_complex_customLoss.ipynb ├── LICENSE ├── README.md ├── atrous_32init_drop0.2_customLossR727_weights.h5 ├── calc_gz.ipynb ├── calc_gz.py ├── calc_gz_hybrid.py ├── calc_gz_stats.py ├── cleanup.py ├── combine_centerline_slurms.py ├── combine_shapefiles.py ├── combine_shapefiles_allTracks.py ├── convert_shapefile.py ├── convert_shapefile_centerline.py ├── data_generation.py ├── data_generation_weights.py ├── figure_scripts.dir ├── make_comparison_figure.py ├── make_figure_overview_AIS.py ├── make_inset_maps.py ├── make_profile_plot.py ├── plot_activation_maps.py └── plot_pipeline.py ├── geocoded_preprocess.py ├── gl_env.yml ├── hydrostatic_gz.py ├── make_slurm.py ├── manual_error.py ├── mean_difference.py ├── mean_uncertainty.py ├── model_investigation.ipynb ├── modelsummary.json ├── modelsummary.txt ├── modelsummary.yaml ├── nn_model.py ├── obsolete_scripts.dir ├── GL_delineation.ipynb ├── GL_delineation_geocoded_complex_noPool_customLoss.ipynb ├── GL_postprocessing.ipynb ├── GL_postprocessing_geocoded_complex.ipynb ├── combine_dates.py ├── convert_shapefile_centerline_geom_mod.py ├── convert_shapefile_single_tiles.py ├── shift_shapefiles.py ├── test_buffer.ipynb └── thinning_auteencoder.ipynb ├── plot_model.py ├── polygonize.py ├── postprocessing_slurm.py ├── retrieve_gz_width.py ├── run_centerline.py ├── run_prediction.ipynb ├── run_prediction.py ├── stitch_tile.py ├── stitch_tile_train_test.py └── test_model.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/.gitignore -------------------------------------------------------------------------------- /Cleanup.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/Cleanup.ipynb -------------------------------------------------------------------------------- /GL_delineation_geocoded_complex_customLoss.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/GL_delineation_geocoded_complex_customLoss.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/README.md -------------------------------------------------------------------------------- /atrous_32init_drop0.2_customLossR727_weights.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/atrous_32init_drop0.2_customLossR727_weights.h5 -------------------------------------------------------------------------------- /calc_gz.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/calc_gz.ipynb -------------------------------------------------------------------------------- /calc_gz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/calc_gz.py -------------------------------------------------------------------------------- /calc_gz_hybrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/calc_gz_hybrid.py -------------------------------------------------------------------------------- /calc_gz_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/calc_gz_stats.py -------------------------------------------------------------------------------- /cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/cleanup.py -------------------------------------------------------------------------------- /combine_centerline_slurms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/combine_centerline_slurms.py -------------------------------------------------------------------------------- /combine_shapefiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/combine_shapefiles.py -------------------------------------------------------------------------------- /combine_shapefiles_allTracks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/combine_shapefiles_allTracks.py -------------------------------------------------------------------------------- /convert_shapefile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/convert_shapefile.py -------------------------------------------------------------------------------- /convert_shapefile_centerline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/convert_shapefile_centerline.py -------------------------------------------------------------------------------- /data_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/data_generation.py -------------------------------------------------------------------------------- /data_generation_weights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/data_generation_weights.py -------------------------------------------------------------------------------- /figure_scripts.dir/make_comparison_figure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/figure_scripts.dir/make_comparison_figure.py -------------------------------------------------------------------------------- /figure_scripts.dir/make_figure_overview_AIS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/figure_scripts.dir/make_figure_overview_AIS.py -------------------------------------------------------------------------------- /figure_scripts.dir/make_inset_maps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/figure_scripts.dir/make_inset_maps.py -------------------------------------------------------------------------------- /figure_scripts.dir/make_profile_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/figure_scripts.dir/make_profile_plot.py -------------------------------------------------------------------------------- /figure_scripts.dir/plot_activation_maps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/figure_scripts.dir/plot_activation_maps.py -------------------------------------------------------------------------------- /figure_scripts.dir/plot_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/figure_scripts.dir/plot_pipeline.py -------------------------------------------------------------------------------- /geocoded_preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/geocoded_preprocess.py -------------------------------------------------------------------------------- /gl_env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/gl_env.yml -------------------------------------------------------------------------------- /hydrostatic_gz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/hydrostatic_gz.py -------------------------------------------------------------------------------- /make_slurm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/make_slurm.py -------------------------------------------------------------------------------- /manual_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/manual_error.py -------------------------------------------------------------------------------- /mean_difference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/mean_difference.py -------------------------------------------------------------------------------- /mean_uncertainty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/mean_uncertainty.py -------------------------------------------------------------------------------- /model_investigation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/model_investigation.ipynb -------------------------------------------------------------------------------- /modelsummary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/modelsummary.json -------------------------------------------------------------------------------- /modelsummary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/modelsummary.txt -------------------------------------------------------------------------------- /modelsummary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/modelsummary.yaml -------------------------------------------------------------------------------- /nn_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/nn_model.py -------------------------------------------------------------------------------- /obsolete_scripts.dir/GL_delineation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/obsolete_scripts.dir/GL_delineation.ipynb -------------------------------------------------------------------------------- /obsolete_scripts.dir/GL_delineation_geocoded_complex_noPool_customLoss.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/obsolete_scripts.dir/GL_delineation_geocoded_complex_noPool_customLoss.ipynb -------------------------------------------------------------------------------- /obsolete_scripts.dir/GL_postprocessing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/obsolete_scripts.dir/GL_postprocessing.ipynb -------------------------------------------------------------------------------- /obsolete_scripts.dir/GL_postprocessing_geocoded_complex.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/obsolete_scripts.dir/GL_postprocessing_geocoded_complex.ipynb -------------------------------------------------------------------------------- /obsolete_scripts.dir/combine_dates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/obsolete_scripts.dir/combine_dates.py -------------------------------------------------------------------------------- /obsolete_scripts.dir/convert_shapefile_centerline_geom_mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/obsolete_scripts.dir/convert_shapefile_centerline_geom_mod.py -------------------------------------------------------------------------------- /obsolete_scripts.dir/convert_shapefile_single_tiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/obsolete_scripts.dir/convert_shapefile_single_tiles.py -------------------------------------------------------------------------------- /obsolete_scripts.dir/shift_shapefiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/obsolete_scripts.dir/shift_shapefiles.py -------------------------------------------------------------------------------- /obsolete_scripts.dir/test_buffer.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/obsolete_scripts.dir/test_buffer.ipynb -------------------------------------------------------------------------------- /obsolete_scripts.dir/thinning_auteencoder.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/obsolete_scripts.dir/thinning_auteencoder.ipynb -------------------------------------------------------------------------------- /plot_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/plot_model.py -------------------------------------------------------------------------------- /polygonize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/polygonize.py -------------------------------------------------------------------------------- /postprocessing_slurm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/postprocessing_slurm.py -------------------------------------------------------------------------------- /retrieve_gz_width.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/retrieve_gz_width.py -------------------------------------------------------------------------------- /run_centerline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/run_centerline.py -------------------------------------------------------------------------------- /run_prediction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/run_prediction.ipynb -------------------------------------------------------------------------------- /run_prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/run_prediction.py -------------------------------------------------------------------------------- /stitch_tile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/stitch_tile.py -------------------------------------------------------------------------------- /stitch_tile_train_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/stitch_tile_train_test.py -------------------------------------------------------------------------------- /test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaramohajerani/GL_learning/HEAD/test_model.py --------------------------------------------------------------------------------