Skip to content

Commit 4a251f8

Browse files
committed
Merge remote-tracking branch 'origin/master' into favyen/marine-infra
2 parents f73761d + aa49643 commit 4a251f8

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

ai2_docs/landsat_vessels/api_use.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ The Landsat Vessel Detection API provides a way to apply the Landsat scenes for
55

66
## Overview
77
- **Model Name**: Landsat Vessel Detection
8-
- **Model Version**: `v0.0.2`
9-
- **Tag**: `landsat_vessels_v0.0.2`
10-
- **Last Updated**: `2025-02-10`
8+
- **Model Version**: `v0.0.3`
9+
- **Tag**: `landsat_vessels_v0.0.3`
10+
- **Last Updated**: `2025-02-14`
1111

1212

1313
## Setting Up the Environment
@@ -51,7 +51,7 @@ Prebuilt Docker images are available on GHCR. Use the following steps to pull an
5151
1. Pull the image from GHCR.
5252

5353
```bash
54-
docker pull ghcr.io/allenai/landsat-vessel-detection:v0.0.2
54+
docker pull ghcr.io/allenai/landsat-vessel-detection:v0.0.3
5555
```
5656

5757
2. Run the container. Note that you need to replace the `<port_number>` and `<path_to_service_account_key>` with the actual `LANDSAT_PORT` (if you use the default port, set it to `5555`) and path to your local service account key file, and keep the other arguments unchanged.
@@ -64,7 +64,7 @@ Prebuilt Docker images are available on GHCR. Use the following steps to pull an
6464
--env-file .env \
6565
--shm-size=15g \
6666
--gpus all \
67-
ghcr.io/allenai/landsat-vessel-detection:v0.0.2
67+
ghcr.io/allenai/landsat-vessel-detection:v0.0.3
6868
```
6969

7070
## Making Requests to the API

ai2_docs/landsat_vessels/model_summary.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
## Overview
44
- **Model Name**: Landsat Vessel Detection
5-
- **Model Version**: `v0.0.2`
6-
- **Tag**: `landsat_vessels_v0.0.2`
7-
- **Last Updated**: `2025-02-10`
5+
- **Model Version**: `v0.0.3`
6+
- **Tag**: `landsat_vessels_v0.0.3`
7+
- **Last Updated**: `2025-02-14`
88

99
---
1010

@@ -58,3 +58,4 @@ Below is an example of the missed vessels, a lot of them are only visible in the
5858
## Changelog
5959
- **`v0.0.1`**: Initial model release. Offline evaluation metrics reported.
6060
- **`v0.0.2`**: Improved pansharpening, added error message to LandsatResponse.
61+
- **`v0.0.3`**: Increase crop size.

rslp/landsat_vessels/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# Model config
2323
DETECT_MODEL_CONFIG = "data/landsat_vessels/config_detector.yaml"
2424
CLASSIFY_MODEL_CONFIG = "data/landsat_vessels/config_classifier.yaml"
25-
CLASSIFY_WINDOW_SIZE = 64
25+
CLASSIFY_WINDOW_SIZE = 128
2626

2727
# Filter config
2828
INFRA_THRESHOLD_KM = 0.03 # max-distance between marine infra and prediction

0 commit comments

Comments
 (0)