mirror of
https://github.com/sbrl/research-rainfallradar
synced 2024-11-22 09:13:01 +00:00
make --help display help
This commit is contained in:
parent
3c1aef5913
commit
f97b771922
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ def parse_args():
|
||||||
"""Defines and parses the CLI arguments."""
|
"""Defines and parses the CLI arguments."""
|
||||||
|
|
||||||
|
|
||||||
if len(sys.argv) < 2:
|
if len(sys.argv) < 2 or sys.argv[1] == "--help":
|
||||||
sys.stderr.write("""
|
sys.stderr.write("""
|
||||||
This program trains, manipulates, visualises, and manages a contrastive learning based rainfall radar → water depth prediction model.
|
This program trains, manipulates, visualises, and manages a contrastive learning based rainfall radar → water depth prediction model.
|
||||||
It functions by first finding relationships between the rainfall radar data and the water depth + heightmap data (the 'pretrain' subcommand). After this, a decoder model to predict water depth (modelled as an image segmentation task), can then be trained.
|
It functions by first finding relationships between the rainfall radar data and the water depth + heightmap data (the 'pretrain' subcommand). After this, a decoder model to predict water depth (modelled as an image segmentation task), can then be trained.
|
||||||
|
|
Loading…
Reference in a new issue