Open billbrod opened 10 months ago
For binder:
Data for head-direction : https://pynapple-org.github.io/pynapple/generated/gallery/tutorial_HD_dataset/
import numpy as np
import pynapple as nap
import requests, math, os
import tqdm
path = "Mouse32-140822.nwb"
if path not in os.listdir("."):
r = requests.get(f"https://osf.io/jb2gd/download", stream=True)
block_size = 1024*1024
with open(path, 'wb') as f:
for data in tqdm.tqdm(r.iter_content(block_size), unit='MB', unit_scale=True,
total=math.ceil(int(r.headers.get('content-length', 0))//block_size)):
f.write(data)
data = nap.load_file(path) # Load the NWB file for this dataset
also, should talk about GPUs
Overall plan for contents we'll include
Concepts to cover
Introduction
We should have a page in our docs with the introduction: what's the format for the workshop, who are we, what do we want to get out of it, etc (and remember to present it too)
Tutorials
Conceptual intro
Sketch:
Current injection
Single cell current injection data set from Allen Institute
Head direction
Head direction-tuned cells in thalamus, all with arrays
Spatial position
grid cells in MEC
Head direction + spatial position
Same dataset as above?
V1
Macaque V1 in response to white noise
Auditory
gerbil primary auditory cortex, passive listening to pure tones, noise, and animal vocalizations
Todo