Quoron commited on
Commit
706673f
·
verified ·
1 Parent(s): 3ae01c7

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +92 -43
README.md CHANGED
@@ -1,43 +1,92 @@
1
- ---
2
- license: apache-2.0
3
- dataset_info:
4
- config_name: data
5
- features:
6
- - name: event
7
- dtype: int64
8
- - name: word
9
- dtype: string
10
- - name: topic
11
- dtype: string
12
- - name: selected_topic
13
- dtype: string
14
- - name: semantic_relevance
15
- dtype: int64
16
- - name: interestingness
17
- dtype: int64
18
- - name: pre-knowledge
19
- dtype: int64
20
- - name: sentence_number
21
- dtype: int64
22
- - name: participant
23
- dtype: string
24
- - name: eeg
25
- dtype:
26
- array2_d:
27
- shape:
28
- - 32
29
- - 2001
30
- dtype: float64
31
- splits:
32
- - name: train
33
- num_bytes: 11925180913
34
- num_examples: 23270
35
- download_size: 11927979870
36
- dataset_size: 11925180913
37
- configs:
38
- - config_name: data
39
- data_files:
40
- - split: train
41
- path: data/train-*
42
- default: true
43
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ dataset_info:
4
+ config_name: data
5
+ features:
6
+ - name: event
7
+ dtype: int64
8
+ - name: word
9
+ dtype: string
10
+ - name: topic
11
+ dtype: string
12
+ - name: selected_topic
13
+ dtype: string
14
+ - name: semantic_relevance
15
+ dtype: int64
16
+ - name: interestingness
17
+ dtype: int64
18
+ - name: pre-knowledge
19
+ dtype: int64
20
+ - name: sentence_number
21
+ dtype: int64
22
+ - name: participant
23
+ dtype: string
24
+ - name: eeg
25
+ dtype:
26
+ array2_d:
27
+ shape:
28
+ - 32
29
+ - 2001
30
+ dtype: float64
31
+ splits:
32
+ - name: train
33
+ num_bytes: 11925180913
34
+ num_examples: 23270
35
+ download_size: 11927979870
36
+ dataset_size: 11925180913
37
+ configs:
38
+ - config_name: data
39
+ data_files:
40
+ - split: train
41
+ path: data/train-*
42
+ default: true
43
+ ---
44
+
45
+ We release a novel dataset containing 23,270 time-locked (0.7s) word-level EEG recordings acquired from participants who read both text that was semantically relevant and irrelevant to self-selected topics.
46
+
47
+ Submitted to ICLR 2025. The raw EEG data and the datasheet will be avaialble after acceptance to avoid disclosure of the authors' identity.
48
+
49
+ See [code repository][1] for benchmark results.
50
+
51
+
52
+
53
+
54
+ Explanations of the variables:
55
+
56
+ - **event** corresponds to a specific point in time during EEG data collection and represents the onset of an event (presentation of a word)
57
+ - **word** is a word read by the participant
58
+ - **topic** is the topic of the document to which the **word** belongs to
59
+ - **selected topic** indicates the topic the participant has selected
60
+ - **semantic relevance** indicates whether the word is semantically relevant (expressed as 1) or semantically irrelevant (expressed as 0) to the topic selected by the participant
61
+ - **interestingness** indicates the participant's interest in the topic of a document
62
+ - **pre-knowledge** indicates the participant's previous knowledge about the topic of the document
63
+ - **sentence number** represents the sentence number to which the word belongs
64
+ - **eeg** - brain recordings having a shape of 32 x 2001 for each word
65
+
66
+ The dataset can be downloaded and used as follows:
67
+
68
+ ```py
69
+ import numpy as np
70
+ from datasets import load_dataset
71
+
72
+ # Load the cleaned version of the dataset
73
+ d = load_dataset("Quoron/EEG-semantic-text-relevance", "data")
74
+
75
+ # See the structure of the dataset
76
+ print(d)
77
+
78
+ # Get the first entry in the dataset
79
+ first_entry = d['train'][0]
80
+
81
+ # Get EEG data as numpy array in the first entry
82
+ eeg = np.array(first_entry['eeg'])
83
+
84
+ # Get a word in the first entry
85
+ word = first_entry['word']
86
+
87
+ ```
88
+
89
+ We recommend using the Croissant metadata to explore the dataset.
90
+
91
+
92
+ [1]: https://anonymous.4open.science/r/EEG-semantic-text-relevance-651D