Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dask_GDL #575

Open
wants to merge 38 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
ba5f517
Update environment.yml with new dependencies
Apr 17, 2024
24d2ca2
Refactor code to support geo-inference package
Apr 17, 2024
1454330
Update model_path in inference config files
Apr 17, 2024
002b3e2
Refactor batch size calculation and add stride size in geo_inference
May 1, 2024
72a080a
Add batch_size parameter to inference configuration files
May 1, 2024
8689e67
Update geo_inference function call in inference_segmentation.py
May 15, 2024
cc57988
Remove unused function and add logging parameters
May 15, 2024
d042596
Add inference segmentation test files
May 15, 2024
978c523
dask_update
Jun 19, 2024
a8c3618
dask-update
Jun 20, 2024
c42e6b3
dask-update
Jun 20, 2024
948ed69
Remove large file from Git tracking
Jun 20, 2024
d1c6f7c
Remove large file from Git tracking
Jun 20, 2024
a378187
edge-artifact-solved
Jun 27, 2024
6c247db
update_1
Jul 31, 2024
3e0114f
update AOI with dask
Aug 2, 2024
594bf89
Merge branch 'develop' of https://github.com/MarjanAsgari/geo-deep-le…
Aug 2, 2024
c45eb40
clean_up
Aug 6, 2024
889f309
rn_ruff
Aug 7, 2024
e42fc05
update_ruff
Aug 7, 2024
3cbf471
update_ruff
Aug 7, 2024
a19233d
Remove unused function and add logging parameters
May 15, 2024
e82a659
dask_update
Jun 19, 2024
af2354d
dask-update
Jun 20, 2024
dc69a40
update_ruff
Aug 7, 2024
46d0c57
Remove large file from Git tracking
Jun 20, 2024
e7367b4
edge-artifact-solved
Jun 27, 2024
7febf9a
update_1
Jul 31, 2024
11c4ba4
update AOI with dask
Aug 2, 2024
017e294
clean_up
Aug 6, 2024
e2d10fb
rn_ruff
Aug 7, 2024
b952c1a
update_ruff
Aug 7, 2024
aef4a24
update_ruff
Aug 7, 2024
c002834
remove large files
Aug 8, 2024
cd1ea87
charles_comments
Aug 8, 2024
bec1390
aoi_less_memory
Aug 21, 2024
9aaea93
tests_passed
Aug 22, 2024
3bcee11
metadata_update
Aug 29, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
*__pycache__**
*.idea**
*.vscode**
./test_inference_dask.py
./data/*
2 changes: 1 addition & 1 deletion config/dataset/test_ci_segmentation_binary.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dataset:
name:
raw_data_csv: ${general.raw_data_csv}
raw_data_dir: ${general.raw_data_dir}
download_data: False
raster_stats: True

# imagery
bands: [1,2,3]
Expand Down
2 changes: 1 addition & 1 deletion config/dataset/test_ci_segmentation_binary_stac.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dataset:
name:
raw_data_csv: tests/tiling/tiling_segmentation_binary-stac_ci.csv
raw_data_dir: ${general.raw_data_dir}
download_data: False
raster_stats: True

# imagery
bands: [red, green, blue]
Expand Down
2 changes: 1 addition & 1 deletion config/dataset/test_ci_segmentation_multiclass.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dataset:

# imagery
bands: [1,2,3]

raster_stats: True
# ground truth
attribute_field: properties/Quatreclasses
attribute_values: [1,2,3,4]
Expand Down
Loading