-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
77bac8a
commit 950bc2d
Showing
29 changed files
with
467 additions
and
678 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Note: The sub-headings / sections are optional and are removed from the config parser anyway. The only important thing is the [darts] heading | ||
[darts.paths] | ||
input-data-dir = "data/input" | ||
output-data-dir = "data/output" | ||
model-dir = "models" | ||
|
||
[darts.segmentation] | ||
patch-size = 1024 | ||
overlap = 128 | ||
batch-size = 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
# noqa: D104 | ||
"""Dataset export for the DARTS dataset.""" | ||
|
||
from darts_export.inference import InferenceResultWriter as InferenceResultWriter |
Empty file.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
def hello() -> str: | ||
return "Hello from darts-postprocessing!" | ||
"""Postprocessing steps for the DARTS dataset.""" | ||
|
||
from darts_postprocessing.prepare_export import prepare_export as prepare_export |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,3 @@ | ||
"""Data preprocessing and feature engineering for the DARTS dataset.""" | ||
|
||
|
||
def hello() -> str: | ||
"""Say hello to the user. | ||
Returns: | ||
str: Greating message. | ||
""" | ||
return "Hello from darts-preprocessing!" | ||
from darts_preprocessing.preprocess import load_and_preprocess_planet_scene as load_and_preprocess_planet_scene |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
62 changes: 0 additions & 62 deletions
62
darts-preprocessing/src/darts_preprocessing/engineering/quality_masks.py
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.