https://qianglisinoeusa.github.io/
						
						
						November 29, 2019
						
						
						
						
						
					
 
						 
						 
						姓名:李强
我来自中国。很高兴可以来到这儿学习!
欢迎大家以后来中国看看!


 
							
						What's the ${Human, Artificial}  intelligence?  && How the brain works?
						

 
							 
							Adapted from Felleman & Van Essen, 1991

Synapse? (deep learning)
Thorpe et al., 2001
Virtual Brain
Adapted from Eliasmith et al., 2012
Visual neurons of cat
orentation selectivity Properties
Imaging processing-Gabor function
Hubel & Wiesel., 1959

Optogenetics
Adapted from Karl Deisseroth Lab website

MRI
 
						 
						 
						 
						 
						 
						 
						 
						 
						
adapted from Parietal website
								$ ipython
						demo
								In [1]: import cortex
								In [2]: ds = cortex.load("S1_retinotopy.hdf")
								In [3]: cortex.webshow(ds)
						
								>> matlab live script
						demo: open live script
								% Input image is segmented gray or white matter with FSL or SPM
								>> surf = spm_surf(spm_select(1, 'image', select image data));
								% Put statistics images onto render surface
								>> mat = spm_render(spm_select(1,'mat','Select mat data'));
						
 
						 
						 
						 
						 
						 
						 
							Face Stimulus
Task: judge male or female
							Scanning subject brain
 
						 
						
								$ ipython
					
								In [1]: from sklearn.svm import SVC
								In [2]:	svm = SVC(C=1., kernel="linear")
								In [3]: from sklearn.linear_model import (LogisticRegression,
                                  											RidgeClassifier,
                                  											RidgeClassifierCV)
								In [4]:	logistic = LogisticRegression(C=1., penalty="l1", solver='liblinear')
								In [5]: ridge = RidgeClassifier()
								In [6]: from sklearn.naive_bayes import GaussianNB, BernoulliNB, MultinomialNB
								In [7]: gnb = GaussianNB()
								In [8]:classifiers = {'SVC': svm,
										               'log l1': logistic,
										               'ridge': ridge,
										               'gnb':gnb}
						
 
						 
						References
