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

[WIP] Add full model registry #449

Open
wants to merge 35 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
1ab36b6
Fix zarr loading error
blumenstiel Dec 12, 2024
0d293be
Add try catch testing
blumenstiel Jan 8, 2025
7c5872a
Merge branch 'IBM:main' into multimodal
blumenstiel Jan 22, 2025
718ec85
Updated multimodal dataset
blumenstiel Jan 22, 2025
e76f03f
Merge branch 'IBM:main' into multimodal
blumenstiel Jan 27, 2025
f5d7c41
Update multi mae
blumenstiel Jan 27, 2025
f0cf9ae
Update multi mae
blumenstiel Jan 28, 2025
9b5405d
Fix multi mae config
blumenstiel Jan 28, 2025
83fbb1d
Update multi mae code
blumenstiel Jan 29, 2025
11cae7b
updated multimae and plotting
blumenstiel Jan 29, 2025
0ceaa54
Merge branch 'IBM:main' into multimodal
blumenstiel Feb 10, 2025
3b38602
Fix multimae
blumenstiel Feb 10, 2025
b5b1542
Fix multimodal dataset
blumenstiel Feb 10, 2025
43f90a8
Merge branch 'IBM:main' into multimodal
blumenstiel Feb 17, 2025
88bce70
Fix multilabel classification
blumenstiel Feb 19, 2025
0bb1647
Fix classification target dtype
blumenstiel Feb 19, 2025
51248a4
Support multimodal datasets in classification
blumenstiel Feb 19, 2025
d799a14
Fix default setting
blumenstiel Feb 19, 2025
bc207a6
Fix mm dataset
blumenstiel Feb 19, 2025
b686ac1
Fix mm dataset
blumenstiel Feb 19, 2025
453341a
Fix classification tasks
blumenstiel Feb 19, 2025
7161bd0
Fix mm dataset
blumenstiel Feb 19, 2025
a36573b
Add registry
blumenstiel Feb 21, 2025
30e0b72
Add registry
blumenstiel Feb 21, 2025
81f14b6
Add prithvi mae models
blumenstiel Feb 21, 2025
026c6fa
rename prithvi model_bands to bands
blumenstiel Feb 21, 2025
e282b09
Add full model library
blumenstiel Feb 21, 2025
f6e6b70
Prithvi add loss dict
blumenstiel Feb 21, 2025
9f1b393
Merge branch 'IBM:main' into multimodal
blumenstiel Feb 21, 2025
1b7f40e
Add reconstruction_tasks
blumenstiel Feb 21, 2025
ad6b992
Fixed tasks
blumenstiel Feb 21, 2025
e557a38
Update multimae
blumenstiel Feb 21, 2025
7240c12
Update reconstruction task
blumenstiel Feb 21, 2025
49ff9d3
Update prithvi
blumenstiel Feb 21, 2025
dfe8221
Merge branch 'multimodal' into feature/full-model-registry
blumenstiel Feb 21, 2025
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
Prev Previous commit
Next Next commit
Fix mm dataset
Signed-off-by: Benedikt Blumenstiel <benedikt.blumenstiel@ibm.com>
blumenstiel committed Feb 19, 2025
commit b686ac14686d9fdf4ba09c6ef8e211f10163d528
2 changes: 1 addition & 1 deletion terratorch/datasets/generic_multimodal_dataset.py
Original file line number Diff line number Diff line change
@@ -184,7 +184,7 @@ def __init__(
if str(self.split_file).endswith(".txt"):
with open(self.split_file) as f:
split = f.readlines()
valid_files = {rf"{substring.strip()}" for substring in split}
valid_files = [rf"{substring.strip()}" for substring in split]
else:
valid_files = list(load_table_data(self.split_file).index)