Dataset Viewer

The dataset viewer is not available because its heuristics could not detect any supported data files. You can try uploading some data files, or configuring the data files location manually.

YAML Metadata Warning:The task_categories "image-generation" is not in the official list: text-classification, token-classification, table-question-answering, question-answering, zero-shot-classification, translation, summarization, feature-extraction, text-generation, fill-mask, sentence-similarity, text-to-speech, text-to-audio, automatic-speech-recognition, audio-to-audio, audio-classification, audio-text-to-text, voice-activity-detection, depth-estimation, image-classification, object-detection, image-segmentation, text-to-image, image-to-text, image-to-image, image-to-video, unconditional-image-generation, video-classification, reinforcement-learning, robotics, tabular-classification, tabular-regression, tabular-to-text, table-to-text, multiple-choice, text-ranking, text-retrieval, time-series-forecasting, text-to-video, image-text-to-text, image-text-to-image, image-text-to-video, visual-question-answering, document-question-answering, zero-shot-image-classification, graph-ml, mask-generation, zero-shot-object-detection, text-to-3d, image-to-3d, image-feature-extraction, video-text-to-text, keypoint-detection, visual-document-retrieval, any-to-any, video-to-video, other

DDPM HI CAMELS LH arrays

This dataset repository contains the numpy arrays used to train and evaluate the 2-parameter and 6-parameter conditional DDPM HI emulators published with the companion model repositories.

Total uploaded size: approximately 7.33 GiB.

Layout

params_2/
  train_LH.npy
  val_LH.npy
  test_LH.npy
  train_labels_LH_2.npy
  val_labels_LH_2.npy
  test_labels_LH_2.npy
params_6/
  train_LH_6.npy
  val_LH_6.npy
  test_LH_6.npy
  train_labels_LH.npy
  val_labels_LH.npy
  test_labels_LH.npy

Loading Example

from huggingface_hub import hf_hub_download
import numpy as np

image_path = hf_hub_download(
    repo_id="collins909/DDPM-HI-CAMELS-LH",
    repo_type="dataset",
    filename="params_2/test_LH.npy",
)
label_path = hf_hub_download(
    repo_id="collins909/DDPM-HI-CAMELS-LH",
    repo_type="dataset",
    filename="params_2/test_labels_LH_2.npy",
)

images = np.load(image_path)
labels = np.load(label_path)
print(images.shape, labels.shape)

Notes

  • The model code expects labels to be normalised using train-split statistics.
  • The large arrays are stored as .npy files and should be downloaded with huggingface_hub rather than loaded through the standard datasets parquet builder.
  • Set the final license and citation before making this dataset public.
Downloads last month
31