Search is not available for this dataset
image
imagewidth (px)
224
224
conditioning_image
array 2D
caption
stringclasses
40 values
label_folder
stringclasses
40 values
label
int32
0
39
subject
int32
1
6
[[-1.0042978525161743,-0.9780192971229553,-1.027383804321289,-0.9565911293029785,-0.9845275282859802(...TRUNCATED)
image of a German shepherd, German shepherd dog, German police dog, alsatian
n02106662
12
1
[[-1.0006103515625,-0.9410992860794067,-0.9515365958213806,-1.0661031007766724,-1.0242316722869873,-(...TRUNCATED)
image of a German shepherd, German shepherd dog, German police dog, alsatian
n02106662
12
2
[[-1.00067138671875,-0.9928586483001709,-0.9229102730751038,-0.9989013075828552,-1.0191656351089478,(...TRUNCATED)
image of a German shepherd, German shepherd dog, German police dog, alsatian
n02106662
12
3
[[-0.9991455078125,-1.0173954963684082,-1.0020142793655396,-1.0258187055587769,-1.0252082347869873,-(...TRUNCATED)
image of a German shepherd, German shepherd dog, German police dog, alsatian
n02106662
12
4
[[-1.00189208984375,-0.9597155451774597,-0.9844355583190918,-0.9880977869033813,-2.22006893157959,-0(...TRUNCATED)
image of a German shepherd, German shepherd dog, German police dog, alsatian
n02106662
12
5
[[-1.0019532442092896,-0.9735709428787231,-1.0031129121780396,-1.0247809886932373,-1.009460687637329(...TRUNCATED)
image of a German shepherd, German shepherd dog, German police dog, alsatian
n02106662
12
6
[[-0.9989013075828552,-0.9551377892494202,-0.9752799868583679,-1.1238441467285156,-0.920712888240814(...TRUNCATED)
image of a German shepherd, German shepherd dog, German police dog, alsatian
n02106662
12
1
[[-1.0028077363967896,-0.9567247629165649,-0.9674062132835388,-0.9895626902580261,-1.008850336074829(...TRUNCATED)
image of a German shepherd, German shepherd dog, German police dog, alsatian
n02106662
12
2
[[-1.000512719154358,-0.9807082414627075,-0.9049511551856995,-0.9227046966552734,-1.0153180360794067(...TRUNCATED)
image of a German shepherd, German shepherd dog, German police dog, alsatian
n02106662
12
3
[[-0.99981689453125,-1.0123904943466187,-0.9922482967376709,-0.9990233778953552,-0.9941404461860657,(...TRUNCATED)
image of a German shepherd, German shepherd dog, German police dog, alsatian
n02106662
12
4

EEG-Based Visual Classification Dataset

This dataset is used in the paper "Guess What I Think: Streamlined EEG-to-Image Generation with Latent Diffusion Models" available on arxiv and the code is available at this repository.

The dataset is constructed to be used in controlnet scenarios.

This dataset includes EEG data from 6 subjects. The recording protocol included 40 object classes with 50 images each, taken from the ImageNet dataset, giving a total of 2,000 images. Visual stimuli were presented to the users in a block-based setting, with images of each class shown consecutively in a single sequence. Each image was shown for 0.5 seconds. A 10-second black screen (during which we kept recording EEG data) was presented between class blocks. The collected dataset contains in total 11,964 segments (time intervals recording the response to each image); 36 have been excluded from the expected 6×2,000 = 12,000 segments due to low recording quality or subjects not looking at the screen, checked by using the eye movement data. Each EEG segment contains 128 channels, recorded for 0.5 seconds at 1 kHz sampling rate, represented as a 128×L matrix, with L about 500 being the number of samples contained in each segment on each channel. The exact duration of each signal may vary, so we discarded the first 20 samples (20 ms) to reduce interference from the previous image and then cut the signal to a common length of 440 samples (to account for signals with L < 500). The dataset includes data already filtered in three frequency ranges: 14-70Hz, 5-95Hz and 55-95Hz.

Download dataset Link to dataset files: https://tinyurl.com/eeg-visual-classification

from datasets import load_dataset
split = "train" #could be one of "train", "test", "validation"
data = load_dataset('luigi-s/EEG_Image_CVPR_ALL_subj', split=split).with_format(type='torch')
eeg = data[0]['conditioning_image']
image = data[0]['image']
caption = data[0]['caption'])
subject = data[0]['subject'])
label =   data[0]['label'])
Downloads last month
16
Edit dataset card