luigi-s commited on
Commit
b8e5c68
1 Parent(s): a22c3f2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +10 -5
README.md CHANGED
@@ -58,8 +58,13 @@ This dataset includes EEG data from 6 subjects. The recording protocol included
58
 
59
  Download dataset Link to dataset files: https://tinyurl.com/eeg-visual-classification
60
 
61
- Citation If you use this dataset, please cite the following works:
62
-
63
- * S. Palazzo, C. Spampinato, I. Kavasidis, D. Giordano, J. Schmidt, M. Shah, Decoding Brain Representations by Multimodal Learning of Neural Activity and Visual Features, IEEE TRANSACTIONS ON PATTERN ANALYSIS AND MACHINE INTELLIGENCE, 2020, doi: 10.1109/TPAMI.2020.2995909
64
-
65
- * C. Spampinato, S. Palazzo, I. Kavasidis, D. Giordano, N. Souly, M. Shah, Deep Learning Human Mind for Automated Visual Classification, International Conference on Computer Vision and Pattern Recognition, CVPR 2017
 
 
 
 
 
 
58
 
59
  Download dataset Link to dataset files: https://tinyurl.com/eeg-visual-classification
60
 
61
+ ```python
62
+ from datasets import load_dataset
63
+ split = "train" #could be one of "train", "test", "validation"
64
+ data = load_dataset('luigi-s/EEG_Image_CVPR_ALL_subj', split=split).with_format(type='torch')
65
+ eeg = data[0]['conditioning_image']
66
+ image = data[0]['image']
67
+ caption = data[0]['caption'])
68
+ subject = data[0]['subject'])
69
+ label = data[0]['label'])
70
+ ```