forked from ETHZ-TEC/permafrostanalytics
-
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.
- Loading branch information
matthmey
committed
Nov 28, 2019
1 parent
24aacae
commit d85d21d
Showing
5 changed files
with
61 additions
and
9 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,24 @@ | ||
#!/bin/bash | ||
# | ||
#SBATCH --mail-type=ALL # mail configuration: NONE, BEGIN, END, FAIL, REQUEUE, ALL | ||
#SBATCH --output=/itet-stor/matthmey/net_scratch/logs/log%j.log # where to store the output ( %j is the JOBID ) | ||
#SBATCH --cpus-per-task=1 # Use 16 CPUS | ||
#SBATCH --gres=gpu:1 # Use 1 GPUS | ||
#SBATCH --mem=32G # use 32GB | ||
#SBATCH --account=tik # we are TIK! | ||
|
||
#eval "$(pyenv init -)" | ||
#eval "$(pyenv virtualenv-init -)" | ||
source activate permafrost | ||
# | ||
echo Running on host: `hostname` | ||
echo In directory: `pwd` | ||
echo Starting on: `date` | ||
echo SLURM_JOB_ID: $SLURM_JOB_ID | ||
# | ||
# binary to execute | ||
cd /home/matthmey/data/projects/stuett/frontends/permafrostanalytics/ | ||
python -u ideas/machine_learning/classification.py -p /home/perma/permasense_vault/datasets/permafrost_hackathon/ -l --classifier seismic | ||
echo finished at: `date` | ||
exit 0; | ||
|
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,20 @@ | ||
# Idea: Classifier for Images and Seimsic Data | ||
|
||
|
||
## Quickstart | ||
To train the image classifier, execute from the repositories base directory: | ||
``` | ||
python ideas/machine_learning/classification.py --classifier image | ||
``` | ||
|
||
or | ||
``` | ||
python ideas/machine_learning/classification.py --classifier seismic | ||
``` | ||
|
||
|
||
|
||
## What next? | ||
* We need other labels! Other noise sources than mountaineers influence our system. We would like to reduce as many as possible. | ||
* More fine-grained predictions, bounding boxes, region-based methods. A lot more can be done. | ||
* Correlation of images with other sources, such as weather or temperature. Snow/temperature relation and much more. |
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