-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22 from nasa-nccs-hpda/1.1.0
1.1.0
- Loading branch information
Showing
12 changed files
with
481 additions
and
4 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
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
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 @@ | ||
#!/bin/bash | ||
#SBATCH -t05-00:00:00 -c10 --mem-per-cpu=10240 -G1 -J ethiopia --export=ALL -q ilab | ||
module load singularity | ||
|
||
srun -G1 -n1 singularity exec --env PYTHONPATH="$NOBACKUP/development/tensorflow-caney:$NOBACKUP/development/vhr-cloudmask" \ | ||
--nv -B $NOBACKUP,/lscratch,/explore/nobackup/people,/explore/nobackup/projects \ | ||
/explore/nobackup/projects/ilab/containers/above-shrubs.2023.07 \ | ||
python /explore/nobackup/people/jacaraba/development/vhr-cloudmask/vhr_cloudmask/view/cloudmask_cnn_pipeline_cli.py \ | ||
-c /explore/nobackup/people/jacaraba/development/vhr-cloudmask/projects/cloud_cnn/configs/production/cloud_mask_alaska_senegal_3sl_cas.yaml \ | ||
-s predict |
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,7 @@ | ||
#!/bin/bash | ||
|
||
for i in {1..64} | ||
do | ||
sbatch /explore/nobackup/people/jacaraba/development/vhr-cloudmask/projects/cloud_cnn/slurm/predict.sh; | ||
sleep 30s | ||
done |
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
Empty file.
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,13 @@ | ||
from enum import Enum | ||
from typing import List, Optional | ||
from omegaconf import MISSING | ||
from dataclasses import dataclass, field | ||
from tensorflow_caney.model.config.cnn_config import Config | ||
|
||
|
||
@dataclass | ||
class CloudMaskConfig(Config): | ||
|
||
test_classes: List[str] = field( | ||
default_factory=lambda: ['no-cloud', 'cloud', 'thin-cloud'] | ||
) |
Empty file.
Oops, something went wrong.