Dataset Viewer
The dataset viewer is not available for this subset.
Cannot get the split names for the config 'default' of the dataset.
Exception:    SplitsNotFoundError
Message:      The split names could not be parsed from the dataset config.
Traceback:    Traceback (most recent call last):
                File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/inspect.py", line 299, in get_dataset_config_info
                  for split_generator in builder._split_generators(
                File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/packaged_modules/webdataset/webdataset.py", line 83, in _split_generators
                  raise ValueError(
              ValueError: The TAR archives of the dataset should be in WebDataset format, but the files in the archive don't share the same prefix or the same types.
              
              The above exception was the direct cause of the following exception:
              
              Traceback (most recent call last):
                File "/src/services/worker/src/worker/job_runners/config/split_names.py", line 65, in compute_split_names_from_streaming_response
                  for split in get_dataset_split_names(
                File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/inspect.py", line 353, in get_dataset_split_names
                  info = get_dataset_config_info(
                File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/inspect.py", line 304, in get_dataset_config_info
                  raise SplitsNotFoundError("The split names could not be parsed from the dataset config.") from err
              datasets.inspect.SplitsNotFoundError: The split names could not be parsed from the dataset config.

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

--

Ocean Floor Bathymetry Enhancement Dataset

This dataset contains bathymetric data supporting the research presented in "Learning Enhanced Structural Representations with Block-Based Uncertainties for Ocean Floor Mapping" (ICLR 2025). It provides paired low-resolution and high-resolution bathymetric samples from various ocean regions worldwide.

Overview

Accurate ocean modeling and coastal hazard prediction depend on high-resolution bathymetric data; yet, current worldwide datasets are too coarse for exact numerical simulations. This dataset addresses this gap by providing paired samples that can be used to train deep learning models for bathymetric enhancement with uncertainty quantification.

Dataset Structure

The dataset is organized as follows:

  • source.tar.gz: Contains low-resolution (32×32) bathymetry samples
    • NumPy (.npy) files containing single-channel depth measurements
  • target.tar.gz: Contains high-resolution bathymetry samples
    • NumPy (.npy) files containing corresponding higher resolution measurements
  • data.csv: Contains metadata for each sample including location, coordinates, etc.

Data Coverage

The dataset includes samples from six major oceanic regions:

  1. Western Pacific Region - Contains complex underwater ridge systems and notable bathymetric variation
  2. Indian Ocean Basin - Notable for tsunami risk and tectonic activity
  3. Eastern Atlantic Coast - Characterized by tsunami-prone areas and coastal flooding
  4. South Pacific Region - Features cyclones and wave-driven inundation patterns
  5. Eastern Pacific Basin - Contains frequent tsunamis and submarine volcanism
  6. North Atlantic Basin - Known for hurricanes and storm surges

Usage

The dataset includes a custom PyTorch dataset loader class that handles loading, normalization, and preprocessing:

from dataset import BathyGEBCOSuperResolutionDataset

# Initialize the dataset
dataset = BathyGEBCOSuperResolutionDataset(
    base_dir="path/to/extracted/data",
    split_type="train"  # or "test"
)

# Access a sample
[low_res_16x16, low_res_32x32, high_res_64x64], metadata = dataset[0]

# Metadata contains information about the sample
print(metadata['location_name'])  # e.g., "Western Pacific Region"
print(metadata['latitude'], metadata['longitude'])  # Geographical coordinates

The dataset loader automatically handles normalization and can be configured with specific statistics:

# Initialize with custom normalization parameters
cfg = {
    'mean': -3911.3894,
    'std': 1172.8374,
    'max': 0,
    'min': -10994
}

dataset = BathyGEBCOSuperResolutionDataset(
    base_dir="path/to/extracted/data",
    split_type="train",
    cfg=cfg
)

Related Research

This dataset was developed to support research on uncertainty-aware deep learning for bathymetric enhancement. The associated paper introduces a block-based uncertainty mechanism for capturing local bathymetric complexity with spatially adaptive confidence estimates.

Citation

If you use this dataset in your research, please cite:

@inproceedings{minoza2025learning,
  title={Learning Enhanced Structural Representations with Block-Based Uncertainties for Ocean Floor Mapping},
  author={Jose Marie Antonio Minoza},
  booktitle={Tackling Climate Change with Machine Learning Workshop at ICLR},
  year={2025}
}

@misc{ocean-floor-mapping2025_modelzoo,
  doi = {10.5281/ZENODO.15272540},
  author = {Minoza, Jose Marie Antonio},
  title = {Model Zoo: Learning Enhanced Structural Representations with Block-Based Uncertainties for Ocean Floor Mapping},
  publisher = {Zenodo},
  year = {2025},
  copyright = {Creative Commons Attribution 4.0 International}
}

License

This dataset is licensed under the MIT License.

Acknowledgments

  • GEBCO for providing the original bathymetric data
  • The research was presented at the ICLR 2025 Workshop on Tackling Climate Change with Machine Learning
Downloads last month
66