Skip to content

Commit feeeb7a

Browse files
authored
Merge pull request #2991 from ACCESS-Cloud-Based-InSAR/Expose-context-length
Expose model context length for OPERA DIST_S1 job type
2 parents 59a47cf + 0c0ef2c commit feeeb7a

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [10.12.2]
8+
9+
### Added
10+
- Added a `model_context_length` parameter to the `OPERA_DIST_S1` job specification.
11+
12+
### Changed
13+
- Increased the maximum `stride_for_norm_param_estimation` to 32 from 16 for the `OPERA_DIST_S1` job specification to handle models with a larger input size.
14+
715
## [10.12.1]
816

917
### Fixed

job_spec/OPERA_DIST_S1.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ OPERA_DIST_S1:
119119
type: integer
120120
default: 7
121121
minimum: 1
122-
maximum: 16
122+
maximum: 32
123123
example: 7
124124
batch_size_for_norm_param_estimation:
125125
api_schema:
@@ -140,6 +140,12 @@ OPERA_DIST_S1:
140140
type: boolean
141141
default: false
142142
example: false
143+
model_context_length:
144+
api_schema:
145+
description: Maximum number of baseline images to use. If -1, use largest allowable baseline.
146+
type: int
147+
default: -1
148+
example: 10
143149
cost_profiles:
144150
DEFAULT:
145151
cost: 1.0
@@ -186,6 +192,8 @@ OPERA_DIST_S1:
186192
- Ref::model_compilation
187193
- --use_date_encoding
188194
- Ref::use_date_encoding
195+
- --model_context_length
196+
- Ref::model_context_length
189197
timeout: 3600 # 1 hr
190198
compute_environment: DistS1
191199
vcpu: 1

0 commit comments

Comments
 (0)