Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Call validation split 'val' instead of 'validation' in example config #28

Merged
merged 3 commits into from
Oct 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

- change config example to call validation split `val` instead of `validation` [\#28](https://github.com/mllam/mllam-data-prep/pull/28)
- fix typo in install dependency `distributed` ![\#20](https://github.com/mllam/mllam-data-prep/pull/20)
- add missing `psutil` requirement. [\#21](https://github.com/mllam/mllam-data-prep/pull/21).

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ output:
compute_statistics:
ops: [mean, std, diff_mean, diff_std]
dims: [grid_index, time]
validation:
val:
start: 1990-09-06T00:00
end: 1990-09-07T00:00
test:
Expand Down Expand Up @@ -232,7 +232,7 @@ output:
compute_statistics:
ops: [mean, std, diff_mean, diff_std]
dims: [grid_index, time]
validation:
val:
start: 1990-09-06T00:00
end: 1990-09-07T00:00
test:
Expand Down
2 changes: 1 addition & 1 deletion example.danra.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ output:
compute_statistics:
ops: [mean, std, diff_mean, diff_std]
dims: [grid_index, time]
validation:
val:
start: 1990-09-06T00:00
end: 1990-09-07T00:00
test:
Expand Down
Loading