jesusmolrdv/mocov3-vitb16-pas-insects
Image Feature Extraction • Updated • 10
The dataset viewer should be available soon. Please retry later.
image image | image_name string |
|---|---|
00000_0_0_000 | |
00000_1_1_000 | |
00000_2_2_000 | |
00000_3_3_000 | |
00000_5_5_000 | |
00001_0_0_000 | |
00001_2_2_000 | |
00001_3_3_000 | |
00001_4_4_000 | |
00001_5_5_000 | |
00002_1_1_000 | |
00002_2_2_000 | |
00002_3_3_000 | |
00002_4_4_000 | |
00002_5_5_000 | |
00003_0_0_000 | |
00003_1_1_000 | |
00003_2_2_000 | |
00003_3_3_000 | |
00003_4_4_000 | |
00004_0_0_000 | |
00004_1_1_000 | |
00004_2_2_000 | |
00004_3_3_000 | |
00004_4_4_000 | |
00004_5_5_000 | |
00005_0_0_000 | |
00005_1_1_000 | |
00005_2_2_000 | |
00005_3_3_000 | |
00005_4_4_000 | |
00006_1_1_000 | |
00006_3_3_000 | |
00007_0_0_000 | |
00007_1_1_000 | |
00007_4_4_000 | |
00007_5_5_000 | |
00008_0_0_000 | |
00008_1_1_000 | |
00008_2_2_000 | |
00008_4_4_000 | |
00008_5_5_000 | |
00009_0_0_000 | |
00009_3_3_000 | |
00009_5_5_000 | |
00010_3_3_000 | |
00010_5_5_000 | |
00011_5_5_000 | |
00012_0_0_000 | |
00012_1_1_000 | |
00012_2_2_000 | |
00012_3_3_000 | |
00012_4_4_000 | |
00012_5_5_000 | |
00013_0_0_000 | |
00013_1_1_000 | |
00013_3_3_000 | |
00014_0_0_000 | |
00014_1_1_000 | |
00014_2_2_000 | |
00014_3_3_000 | |
00014_4_4_000 | |
00014_5_5_000 | |
00015_0_0_000 | |
00015_1_1_000 | |
00015_2_2_000 | |
00015_4_4_000 | |
00016_0_0_000 | |
00016_1_1_000 | |
00016_3_3_000 | |
00016_5_5_000 | |
00017_0_0_000 | |
00017_1_1_000 | |
00017_2_2_000 | |
00017_3_3_000 | |
00017_4_4_000 | |
00017_5_5_000 | |
00018_0_0_000 | |
00018_2_2_000 | |
00018_3_3_000 | |
00018_5_5_000 | |
00019_0_0_000 | |
00019_1_1_000 | |
00019_2_2_000 | |
00019_4_4_000 | |
00019_5_5_000 | |
00020_0_0_000 | |
00020_1_1_000 | |
00020_2_2_000 | |
00020_3_3_000 | |
00020_4_4_000 | |
00020_5_5_000 | |
00021_0_0_000 | |
00021_1_1_000 | |
00021_2_2_000 | |
00021_3_3_000 | |
00021_4_4_000 | |
00021_5_5_000 | |
00022_0_0_000 | |
00022_1_1_000 |
Insects-domain dataset used to train the PaS-I checkpoint from
the Precision at Scale paper (1.9M images).
@article{rodriguezdevera2026precision,
title = {Precision at scale: Domain-specific datasets on-demand},
author = {Rodr{\'i}guez-de-Vera, Jes{\'u}s M. and Estepa, Imanol G. and Saras{\'u}a, Ignacio and Nagarajan, Bhalaji and Radeva, Petia},
journal = {Pattern Recognition},
volume = {171},
pages = {112236},
year = {2026},
publisher = {Elsevier},
doi = {10.1016/j.patcog.2025.112236}
}
Published as two splits:
web: 47,689 rows. URL-only, no
image bytes hosted. Reconstruct locally with
img2dataset. Obtained directly
from Re-LAION-5B.synthetic: 1,857,124 rows. Actual image bytes, generated
with stabilityai/stable-diffusion-2-1-base.The web split contains only URLs pointing at third-party web images (no
image bytes), sourced from Re-LAION-5B.
If you own an image referenced by a URL in this split and want it removed:
image_name(s) in question, and they will be removed from future
releases of this dataset.Load the synthetic split directly (image bytes are hosted):
from datasets import load_dataset
synthetic = load_dataset("jesusmolrdv/pas-i", "synthetic", split="train")
The web split has no hosted image bytes, only URLs. Reconstruct it locally with
img2dataset:
from datasets import load_dataset
web = load_dataset("jesusmolrdv/pas-i", "web", split="train").to_pandas()
web[["url", "image_name"]].to_parquet("PaS-I-web-urls.parquet")
img2dataset --url_list PaS-I-web-urls.parquet --input_format parquet \
--url_col url --save_additional_columns '["image_name"]' \
--output_folder PaS-I_web_images --output_format webdataset