azavea / raster-vision

An open source library and framework for deep learning on satellite and aerial imagery.
https://docs.rastervision.io
Other
2.08k stars 387 forks source link

Make sure training resumes for restarted jobs #422

Closed lewfish closed 6 years ago

lewfish commented 6 years ago

This may be a factor #106

jamesmcclain commented 6 years ago

As I understand it, the task is to verify that this is now the case. Should it be true for the feature branch, or is there another branch that I should use?

lossyrob commented 6 years ago

This is now in the feature/api-refactor branch

jamesmcclain commented 6 years ago

This is now in the feature/api-refactor branch

Okay, sounds good.

jamesmcclain commented 6 years ago

Chip Classification

rastervision run aws_batch -e spacenet.chip_classification -a root_uri ${RVROOT}

then

rastervision run aws_batch -e spacenet.chip_classification -a root_uri ${RVROOT} --rerun train

Confirmed working:

screenshot from 2018-10-08 13-20-39

jamesmcclain commented 6 years ago

Object Detection

export ROOT_URI='s3://raster-vision-mcclain/xview'
export DATA_URI='s3://raster-vision-xview'
rastervision run aws_batch -e xview.object_detection -f *mobilenet* -a root_uri ${ROOT_URI} -a data_uri ${DATA_URI}

then

rastervision run aws_batch -e xview.object_detection -f *mobilenet* -a root_uri ${ROOT_URI} -a data_uri --rerun train`

Confirmed working.

jamesmcclain commented 6 years ago

Segmentation

export ROOT_URI='s3://raster-vision-mcclain/SEGMENTATION'
export DATA_URI='s3://raster-vision-raw-data/isprs-potsdam'
rastervision run aws_batch -e potsdam.semantic_segmentation -a root_uri ${ROOT_URI} -a data_uri ${DATA_URI}

then

rastervision run aws_batch -e potsdam.semantic_segmentation -a root_uri ${ROOT_URI} -a data_uri ${DATA_URI} --rerun train

Confirmed working.