-
Notifications
You must be signed in to change notification settings - Fork 7
Description
Hello,
We are working on reproducing the results from the paper on the TreeSatAI-TS dataset but have encountered some issues related to the dataset configuration.
In accordance with the instructions, running python src/train.py exp=TSAITS_OmniSAT calls the file ./src/data/TreeSAT.py, which expects the TreeSatAI-TS dataset to be organized in the following structure:
`./data/TreeSAT/
│
├── train_filenames.lst
├── val_filenames.lst
├── test_filenames.lst
│
├── labels/
│ └── TreeSatBA_v9_60m_multi_labels.json
│
├── aerial/
│ ├── image1.tif
│ ├── image2.tif
│ └── ... (additional aerial image files)
│
├── sentinel/
│ ├── image1.h5
│ ├── image2.h5
│ └── ... (additional Sentinel-1 and Sentinel-2 HDF5 files)
│
├── s1-asc/
│ ├── image1.pth
│ ├── image2.pth
│ └── ... (additional Sentinel-1 Ascending `.pth` files)
│
├── s1-des/
│ ├── image1.pth
│ ├── image2.pth
│ └── ... (additional Sentinel-1 Descending `.pth` files)
│
├── s1/
│ └── 60m/
│ ├── image1.tif
│ ├── image2.tif
│ └── ... (additional Sentinel-1 60m resolution images)
│
└── s2/
└── 60m/
├── image1.tif
├── image2.tif
└── ... (additional Sentinel-2 60m resolution images)
`
However, the sentinel.zip file available at the provided dataset link (https://huggingface.co/datasets/IGNF/TreeSatAI-Time-Series) only contains .tif images located in the s1/ and s2/ 60m/200m subfolders. It does not include the .h5 files expected in the sentinel/ folder.
Additionally, the s1-asc/ and s1-des/ folders are missing, along with their corresponding .pth files. This seems to be a separate issue, as the .pth files are not present in the shared dataset at all.
Could you please provide guidance on resolving these discrepancies or point us to the correct dataset files? Thank you very much!