Skip to content

Commit 3456b49

Browse files
committed
update vessel detection docs and Dockerfiles to point to new checkpoints
1 parent c75eb94 commit 3456b49

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

docs/landsat_vessels.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ First, download the detector, classifier, and attribute model checkpoints to the
2727
mkdir -p project_data/projects/rslearn-landsat-recheck/phase123_20240919_01_copy/
2828
wget https://storage.googleapis.com/ai2-rslearn-projects-data/projects/rslearn-landsat-recheck/phase123_20240919_01_copy/best.ckpt -O project_data/projects/rslearn-landsat-recheck/phase123_20240919_01_copy/best.ckpt
2929

30-
mkdir -p project_data/projects/landsat_vessel_attribute/data_20260330_olmoearth_base_freeze_01/
31-
wget https://storage.googleapis.com/ai2-rslearn-projects-data/projects/landsat_vessel_attribute/data_20260330_olmoearth_base_freeze_01/best.ckpt -O project_data/projects/landsat_vessel_attribute/data_20260330_olmoearth_base_freeze_01/best.ckpt
30+
mkdir -p project_data/projects/2026_04_22_landsat_vessel_attribute/olmoearth_base_freeze_newdata_01/
31+
wget https://storage.googleapis.com/ai2-rslearn-projects-data/projects/2026_04_22_landsat_vessel_attribute/olmoearth_base_freeze_newdata_01/best.ckpt -O project_data/projects/2026_04_22_landsat_vessel_attribute/olmoearth_base_freeze_newdata_01/best.ckpt
3232

3333
The easiest way to apply the model is using the prediction pipeline in `rslp/landsat_vessels/predict_pipeline.py`. You can download the Landsat scene files, e.g. from USGS EarthExplorer or AWS, and then create a configuration file for the prediction pipeline, here is an example:
3434

docs/sentinel1_vessels.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ First, download the model checkpoints to the `RSLP_PREFIX` directory.
1616
mkdir -p project_data/projects/sentinel1_vessels/data_20250521_model_20250530_satlaspretrain_unfreeze4_13/
1717
wget https://storage.googleapis.com/ai2-rslearn-projects-data/projects/sentinel1_vessels/data_20250521_model_20250530_satlaspretrain_unfreeze4_13/best.ckpt -O project_data/projects/sentinel1_vessels/data_20250521_model_20250530_satlaspretrain_unfreeze4_13/best.ckpt
1818

19-
mkdir -p project_data/projects/sentinel1_vessel_attribute/data_20260330_swinb_01/
20-
wget https://storage.googleapis.com/ai2-rslearn-projects-data/projects/sentinel1_vessel_attribute/data_20260330_swinb_01/best.ckpt -O project_data/projects/sentinel1_vessel_attribute/data_20260330_swinb_01/best.ckpt
19+
mkdir -p project_data/projects/2026_04_22_sentinel1_vessel_attribute/swinb_newdata_01/
20+
wget https://storage.googleapis.com/ai2-rslearn-projects-data/projects/2026_04_22_sentinel1_vessel_attribute/swinb_newdata_01/best.ckpt -O project_data/projects/2026_04_22_sentinel1_vessel_attribute/swinb_newdata_01/best.ckpt
2121

2222
The easiest way to apply the model is using the prediction pipeline in
2323
`rslp/sentinel1_vessels/predict_pipeline.py`. It accepts a Sentinel-1 scene ID and

rslp/landsat_vessels/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ RUN mkdir -p /project_data/projects/landsat_vessels/data_20240924_model_20240924
2020
mkdir -p /project_data/projects/rslearn-landsat-recheck/phase123_20240919_01_copy/ && \
2121
wget -q https://storage.googleapis.com/ai2-rslearn-projects-data/projects/rslearn-landsat-recheck/phase123_20240919_01_copy/best.ckpt \
2222
-O /project_data/projects/rslearn-landsat-recheck/phase123_20240919_01_copy/best.ckpt && \
23-
mkdir -p /project_data/projects/landsat_vessel_attribute/data_20260330_olmoearth_base_freeze_01/ && \
24-
wget -q https://storage.googleapis.com/ai2-rslearn-projects-data/projects/landsat_vessel_attribute/data_20260330_olmoearth_base_freeze_01/best.ckpt \
25-
-O /project_data/projects/landsat_vessel_attribute/data_20260330_olmoearth_base_freeze_01/best.ckpt
23+
mkdir -p /project_data/projects/2026_04_22_landsat_vessel_attribute/olmoearth_base_freeze_newdata_01/ && \
24+
wget -q https://storage.googleapis.com/ai2-rslearn-projects-data/projects/2026_04_22_landsat_vessel_attribute/olmoearth_base_freeze_newdata_01/best.ckpt \
25+
-O /project_data/projects/2026_04_22_landsat_vessel_attribute/olmoearth_base_freeze_newdata_01/best.ckpt
2626
ENV RSLP_PREFIX=/project_data
2727

2828
# Run app.py when the container launches

rslp/sentinel1_vessels/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ ENV MARINE_INFRA_PATH=/opt/rslearn_projects/marine_infrastructure.geojson
1717
RUN mkdir -p /project_data/projects/sentinel1_vessels/data_20250521_model_20250530_satlaspretrain_unfreeze4_13/ && \
1818
wget -q https://storage.googleapis.com/ai2-rslearn-projects-data/projects/sentinel1_vessels/data_20250521_model_20250530_satlaspretrain_unfreeze4_13/best.ckpt \
1919
-O /project_data/projects/sentinel1_vessels/data_20250521_model_20250530_satlaspretrain_unfreeze4_13/best.ckpt && \
20-
mkdir -p /project_data/projects/sentinel1_vessel_attribute/data_20260330_swinb_01/ && \
21-
wget -q https://storage.googleapis.com/ai2-rslearn-projects-data/projects/sentinel1_vessel_attribute/data_20260330_swinb_01/best.ckpt \
22-
-O /project_data/projects/sentinel1_vessel_attribute/data_20260330_swinb_01/best.ckpt
20+
mkdir -p /project_data/projects/2026_04_22_sentinel1_vessel_attribute/swinb_newdata_01/ && \
21+
wget -q https://storage.googleapis.com/ai2-rslearn-projects-data/projects/2026_04_22_sentinel1_vessel_attribute/swinb_newdata_01/best.ckpt \
22+
-O /project_data/projects/2026_04_22_sentinel1_vessel_attribute/swinb_newdata_01/best.ckpt
2323
ENV RSLP_PREFIX=/project_data
2424

2525
# Run app.py when the container launches

0 commit comments

Comments
 (0)