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 "representation-learning" 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

RS-Dataset-Latents

Latent representations of remote sensing images encoded using pre-trained VAEs. Part of the VAEs4RS project.

Structure

RS-Dataset-Latents/
├── FLUX1-VAE/UCMerced.zip
├── FLUX2-VAE/UCMerced.zip
├── Qwen-VAE/UCMerced.zip
├── SANA-VAE/UCMerced.zip
├── SD21-VAE/UCMerced.zip
├── SD35-VAE/UCMerced.zip
└── SDXL-VAE/UCMerced.zip

Each zip file contains .npz files with latent representations. Each .npz file contains:

  • latent: float16 array with shape (channels, height, width)

Usage

import zipfile
import numpy as np

# Load from zip file
with zipfile.ZipFile("FLUX1-VAE/UCMerced.zip", "r") as z:
    # List files
    files = z.namelist()
    
    # Load a specific file
    with z.open("UCMerced/agricultural00.npz") as f:
        data = np.load(f)
        latent = data['latent']  # shape: (16, 32, 32), dtype: float16

VAE Models

Model Channels Compression Scaling Factor
SD21-VAE 4 0.18215
SDXL-VAE 4 0.13025
SD35-VAE 16 1.5305
FLUX1-VAE 16 0.3611
FLUX2-VAE 32 0.3611
SANA-VAE 32 32× 0.41407
Qwen-VAE 16 0.41407

Citation

@article{chen2026robustness,
  author = {Zhenyuan Chen and Feng Zhang},
  title = {The Robustness of Natural English Priors in Remote Sensing: A Zero-Shot VAE Study},
  year = {2026}
}

Links

Downloads last month
30