Darioli commited on
Commit
17f5a2f
·
verified ·
1 Parent(s): 5603aed

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +37 -0
README.md CHANGED
@@ -30,6 +30,43 @@ The data is organized into a highly efficient, indexed HDF5 format, allowing for
30
  - Behavioral Data: Synchronized treadmill speed and pupil radius.
31
  - Eye Tracking: Pupil center coordinates (x, y) for gaze analysis.
32
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33
  ## ⚙️ Setup & Installation
34
 
35
  There are two ways of accessing the contents of this repo.
 
30
  - Behavioral Data: Synchronized treadmill speed and pupil radius.
31
  - Eye Tracking: Pupil center coordinates (x, y) for gaze analysis.
32
 
33
+ ```text
34
+ root/
35
+ ├── 📂 BRAIN_AREAS/ # Anatomical Index
36
+ │ └── 📂 <area_name>/ # e.g., V1, AL, LM, RL
37
+ │ └── 🔗 <session_id> -> /sessions/<session_id>
38
+
39
+ ├── 📂 SESSIONS/ # Primary Data Storage
40
+ │ └── 📂 <session_id>/ # e.g., 4_7, 5_6
41
+ │ ├── 📂 META/ # Session-wide Metadata
42
+ │ │ ├── 📂 AREA_INDICES/ # Pre-calculated neuron masks
43
+ │ │ │ └── 📄 <area_name> [Dataset: (N_area_neurons,)]
44
+ │ │ ├── 📄 brain_areas [Dataset: (N_total_neurons,)]
45
+ │ │ ├── 📄 coordinates [Dataset: (N_total_neurons, 3)]
46
+ │ │ ├── 📄 unit_ids [Dataset: (N_total_neurons,)]
47
+ │ │ └── 📄 total_scan_times [Dataset: (Total_Frames,)]
48
+ │ │ └── (Attr) fps [Float: Sampling rate]
49
+ │ └── 📂 TRIALS/ # Individual trial folders
50
+ │ └── 📂 <trial_idx>/ # Chronological trial index
51
+ │ ├── 📄 responses [Dataset: (N_neurons, F_trial)]
52
+ │ ├── 📄 behavior [Dataset: (2, F_trial)]
53
+ │ ├── 📄 pupil_center [Dataset: (2, F_trial)]
54
+ │ ├── 📄 frame_times [Dataset: (F_trial,)]
55
+ │ └── (Attr) condition_hash [String: Reference to video]
56
+
57
+ ├── 📂 TYPES/ # Stimulus Category Index
58
+ │ └── 📂 <stim_type>/ # e.g., Clip, Monet2, Trippy
59
+ │ └── 🔗 <encoded_hash> -> /videos/<encoded_hash>
60
+
61
+ └── 📂 VIDEOS/ # Stimulus Library (Saved once)
62
+ └── 📂 <encoded_hash>/ # Encoded version of condition_hash
63
+ ├── 📄 clip [Dataset: (Frames, H, W)]
64
+ ├── 📂 INSTANCES/ # Reverse-index to trials
65
+ │ └── 🔗 <session_id>_tr<trial_idx> -> /sessions/<session_id>/trials/<trial_idx>
66
+ └── (Attr) original_hash [String: The raw hash]
67
+ └── (Attr) type [String: Stimulus type]
68
+ ```
69
+
70
  ## ⚙️ Setup & Installation
71
 
72
  There are two ways of accessing the contents of this repo.