Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Previous revision
shared:people [2020/04/10 14:35]
shared:people [2024/01/24 23:04] (current)
hyunwoo
Line 1: Line 1:
-====== ​Members ​at Stanford University ​====== +<​html><​!-- *+=*+=*+=*+=*+=*+=*+=*+=*+=*+=*+=*+=*+=*+=*+=*+=* 
-^ Justin L. Gardner ​^ Principle ​Investigator ^ +For instructions on how to add yourself search down to where 
-|{{ :shared:jlgheadshot.jpg?​240x160 |}} | Assistant ​ProfessorDepartment of Psychology<​html><​br/></​html>​Stanford ​Neurosciences ​Institute<​html><​br/></​html>​Stanford University<​html><​br/><​br/></​html> ​University ​of California Berkeley & UCSF, PhD in Bioengineering2002<​html><​br/></​html>​Yale University, B.S. in Computer Science1993<​html><​br/></​html>​[[shared:Justin Gardner CV|[Curriculum Vitae]]]+it says: "Add yourself above this line"​ 
-Minyoung Lee ^ PhD Student ^ +*+=*+=*+=*+=*+=*+=*+=*+=*+=*+=*+=*+=*+=*+=*+=*+=* --></​html>​ 
-|{{ http://cicl.stanford.edu/img/members/minyoung_lee.jpg?160x160 ​|}}|Korea University, ​M.S. in Cognitive Psychology2015<​html><​br/></​html>​Korea University, B.A. in Psychology2012<​html><​br/></​html>​| +<​html><​script type="​text/​javascript"​ language="​JavaScript">​ 
-Akshay Jagadeesh ^ PhD Student ​+ 
-|{{ :shared:akshay.jpg?240x175 ​|}} | University of CaliforniaBerkeley, B.AComputer ScienceCognitive Science2016<​html><​br/></​html>​https://​stanford.edu/~akshayj<​html><​br/></​html>​| +// Names of images (these should be in data/​media/​home. To add, move to the home directory in gru@gru as a jpg file and then run wikiimage) 
-Guillaume Riesen ​^ PhD Student ^ +imageNames = new Array("​alpineinn",​ "​spiral",​ "​textureguy"​);​ 
-|{{ https://med.stanford.edu/neurogradprogram/news_and_events/news/2016-student-in-focus--guillaume-riesen/_jcr_content/main/image_891596975.img.320.high.jpg?231x160 ​|}}| BSc in Cognitive Neuroscience ​from Brown University | + 
-Jun Hwan (Joshua) Ryu ^ PhD Student ^ +// If useSrcset is true then each of the above images need to be scaled to  
-|{{ :shared:josh190901.jpg?160x197 ​|}} | Yale UniversityB.A. in Cognitive Science and Mathematics,​ 2016+// multiple widths for faster loading. There is a csh script in ~/bin called 
-Josh Wilson ​^ Research ​Coordinator ​+// wikiimage which automatically scales images and moves them into the data/​media/​home directory 
-|{{ :shared:jw.jpg?197x197 ​|}} | UC BerkeleyB.AMolecular & Cell Biology ​(Neurobiologyand Cognitive Science, 2019|+useSrcset = true; 
 +srcsetScales = [480, 960, 1136, 1334, 1920, 2560]; 
 + 
 +// Set how often to update the images in ms. Note that the transition times 
 +// are defined in the style for changingImage items 
 +imageUpdateTime = 8000; 
 + 
 +// Set how to do cross-fade. Half cross-fade means that the previous image  
 +// goes from 100% to 0 while the new image (below) stays at 100%.  
 +// Full cross-fade means that the previous image goes from 100% to 0 
 +// while the new image goes from 0 to 100. The full cross-fade was implemented 
 +// to hide issues that happen when different images have different sizes 
 +fullCrossFade ​false; 
 +</​script>​ 
 + 
 +<​style>​ 
 +.page table { 
 +  border: none; 
 +  table-layout:​ fixed; 
 +  width: 100%; 
 + 
 +
 + 
 +.page table tr { 
 +  border: none; 
 +
 + 
 +.page table tr td { 
 +  border: none; 
 +  text-align: justify; 
 +
 + 
 +.page img { 
 +  border-radius:​ 25px; 
 +  box-shadow: 4px 8px 6px lightgray;​ 
 +  max-height: 160px; 
 +
 + 
 +.page table thead th { 
 +  border: none; 
 +  background-color:​ lightsteelblue;​ 
 +  height: 5vh; 
 +  box-shadow: 4px 8px 6px lightgray;​ 
 +  border-radius:​ 10px; 
 +  color: white; 
 +  text-align: center; 
 +
 + 
 +.grid-container { 
 +  display: grid; 
 +  grid-row-gap:​ 5vh; 
 +  grid-column-gap:​ 5vw; 
 +  grid-auto-flow:​ row; 
 +  grid-template-columns:​ auto auto auto; 
 +  grid-template-rows:​ auto auto auto auto auto; 
 +
 + 
 +.page #​changingImage { 
 +  position:​relative;​ 
 +  align="​middle";​ 
 +
 + 
 +.page #​changingImage img.top { 
 +  position:​relative;​ 
 +  -webkit-transition:​ opacity 1s ease-in-out;​ 
 +  -moz-transition:​ opacity 1s ease-in-out;​ 
 +  -o-transition:​ opacity 1s ease-in-out;​ 
 +  transition: opacity 1s ease-in-out;​ 
 +  max-height: 100%; 
 +
 + 
 +.page #​changingImage img.bottom { 
 +  position:​absolute;​ 
 +  opacity:​0;​ 
 +  -webkit-transition:​ opacity 1s ease-in-out;​ 
 +  -moz-transition:​ opacity 1s ease-in-out;​ 
 +  -o-transition:​ opacity 1s ease-in-out;​ 
 +  transition: opacity 1s ease-in-out;​ 
 +  max-height: 100%; 
 +
 + 
 +</​style>​ 
 + 
 +<script type="​text/​javascript"​ language="​JavaScript">​ 
 + 
 +// Set to how many images there are 
 +nImages ​imageNames.length;​ 
 +console.log(nImages);​ 
 + 
 +// Set last image, so that the first displayed image 
 +// will be the first image in the list  
 +var lastImageNum ​nImages-2;​ 
 + 
 + 
 +// function to write img tag for a random one of the above images 
 +function writeRandomImage(className,​ imageWidth, imageHeight) { 
 + 
 +  // increment value of lastImage 
 +  lastImageNum = parseInt(lastImageNum)+1;​ 
 +  if (!((lastImageNum < nImages) && (lastImageNum >= 0)))  
 +    lastImageNum = 0; 
 + 
 +  // set the image number to display 
 +  dispImage = lastImageNum;​ 
 + 
 +  // write out image tag 
 +  imgTag = '<​img '; 
 +   
 +  // write classname if asked for 
 +  if (className !== undefined) { 
 +    // write the class id 
 +    imgTag = imgTag+'​class="'​+className+'"​ '; 
 +    // also give it the same id 
 +    imgTag = imgTag+'​id="'​+className+'"​ '; 
 +  } 
 +  else { 
 +    // write the default class 
 +    imgTag = imgTag+'​class="​media"​ '; 
 +  } 
 + 
 +  // Write out image string  
 +  imgTag = imgTag+'​src='​+getImageSrc(dispImage)+'​ '; 
 +   
 +  if (useSrcset) { 
 +    // now set up the secret which allows for multiple scaled images 
 +    // The default image will just be called e.g. image.jpg and then 
 +    // there are scaled images that are called image_1920w.jpg for example 
 +    // that are scaled to a width of 1920 pixels 
 +    imgTag = imgTag+'​srcset="'​+getImageSrcset(dispImage);​ 
 + 
 +    // remove last comma and end subset field 
 +    imgTag = imgTag.substr(0,​imgTag.length-2)+'"​ '; 
 +  } 
 +   
 +  // write image width and height if passed in 
 +  if ((imageWidth !== undefined) && (imageHeight !== undefined)) { 
 +    imgTag=imgTag+'​ width="'​+imageWidth+'"​ height="'​+imageHeight+'"​ '; 
 +  } 
 + 
 +  // close the img html  
 +  imgTag=imgTag+'​ alt=""​ />';​ 
 +  //​imgTag=imgTag+'​ alt=""​ style="​box-shadow:​10px 10px 10px #​AAAAAA"/>';​ 
 +   
 +  // write the imgTag 
 +  document.write(imgTag);​ 
 +  console.log(imgTag);​ 
 +
 + 
 +// get the full image src name from the imageNum 
 +function getImageSrc(imageNum) { 
 +  return '"/​lib/​exe/​fetch.php/​home/'​+imageNames[imageNum]+'​.jpg"';​ 
 +
 + 
 +// get the full image srcset string from the imageNum 
 +function getImageSrcset(imageNum) { 
 +  srcset = '';​ 
 +  // write out each one of the scaled image names and the width 
 +  srcsetScales.forEach(function (item) { 
 +    srcset=srcset+'/​lib/​exe/​fetch.php/​home/'​+imageNames[imageNum]+'​_'​+item+'​w.jpg '​+item+'​w,​ '; 
 +  }); 
 +  return srcset; 
 +
 + 
 +// Make a double image - the top one is the one being shown and 
 +// the bottom one is used for transitions. 
 +document.write('<​div id="​changingImage">'​);​ 
 +writeRandomImage("​bottom"​);​ 
 +writeRandomImage("​top"​);​ 
 +document.write('</​div>'​);​ 
 + 
 +// some variables for the changeImage function 
 +let changeIndex = dispImage;​ 
 +const topImage = document.getElementById('​top'​);​ 
 +const bottomImage = document.getElementById('​bottom'​);​ 
 + 
 +// transition time should be longer than the style sheet 
 +// has for changing the opacity 
 +transitionTime = 2000; 
 + 
 +// function changes the images from top to bottom and then 
 +// loads a new image for the next transition. It gets 
 +// called periodically to change the images 
 +function changeImage() { 
 +   // set the top image to change opacity to 0  
 +   // this will go incrementally over a second 
 +   // due to the style settings 
 +   ​topImage.style.opacity=0;​ 
 +   ​bottomImage.style.opacity=100;​ 
 +   // set a timeout to flip the images back once 
 +   // the transition expected to be over 
 +   ​setTimeout(function(){ 
 +     // now set the top image (which should have opacity 0 by now) 
 +     // to be the same as the bottom image 
 +     ​topImage.src = bottomImage.src;​ 
 +     if (useSrcset) { 
 +       ​topImage.srcset = bottomImage.srcset;​ 
 +     } 
 +     ​setTimeout(function(){ 
 +       // and make the top image visible again 
 +       ​topImage.style.opacity = 100; 
 +       // once it is done we can set the bottom image src 
 +       ​setTimeout(function(){ 
 +         // now it should be safe to set the bottomImage to the 
 +         // next in the sequence - i.e. it is not showing now 
 +         ​changeIndex = (changeIndex==(nImages-1)) ? 0 : changeIndex+1;​ 
 +         ​bottomImage.src = getImageSrc(changeIndex);​ 
 +         // only set the bottom image to 0 if we want a full cross-phase 
 +         if (fullCrossFade) bottomImage.style.opacity = 0; 
 +         if (useSrcset) { 
 +           ​bottomImage.srcset = getImageSrcset(changeIndex);​ 
 +         } 
 +         // start the process again 
 +         ​setTimeout(changeImage,​ imageUpdateTime-3*transitionTime);​ 
 +       ​},​transitionTime);​ 
 +     ​},​transitionTime);​ 
 +   ​},​transitionTime);​ 
 +
 + 
 +// run the changeImage function to change the pictures 
 +setTimeout(changeImage,​ imageUpdateTime);​ 
 +</​script>​ 
 +<img src="/​data/​media/​shared/​brainnewfin800.jpg"​ class="​media"​ alt=""​ /> 
 +<​noscript>​ 
 +</​noscript>​ 
 +</​tr></​td>​ 
 +<tr style="​border:​0;"><​td style="​border:​0;​font-family:​verdana,​arial,​sans-serif;​font-size:​14px;​font-style:​italic;​text-justify:​inter-word;​text-align:​justify;​text-shadow:​10px 10px 7px #​A0A0A0">​ 
 +</​td></​tr>​ 
 +</​table>​ 
 +<div class="​grid-container">​ 
 +</​html>​ 
 +<​html><​!-- ************************************************** --></​html>​ 
 +<​html><​div></​html>​ 
 +^Justin L. Gardner<​html><​br/></​html>​Principal ​Investigator^ 
 +|[[:​shared:​justin_gardner_cv|{{ :shared:jlg_landscape.jpg?​240x160 |}}]]| 
 +| ++ More| 
 +<​html><​br/></​html>​Associate ​Professor 
 +<​html><​br/></​html>​[[https://​psychology.stanford.edu|Department of Psychology]] 
 +<​html><​br/></​html>​co-Director 
 +<​html><​br/></​html>​[[https://​med.stanford.edu/​neurogradprogram.html|Neurosciences ​Graduate IDP]] 
 +<​html><​br/></​html>​Stanford University 
 +<​html><​br/​></​html><​html><​br/></​html>​[[:​shared:​justin_gardner_cv|CV]] 
 +<​html><​br/></​html>​[[https://​gru.stanford.edu/​justin/​pictures|Pictures]]<​html><​br/></​html><​html><​br/></​html>​How does neural activity in the human cortex create our sense of visual perception? Our lab at Stanford uses a combination of functional magnetic resonance imagingcomputational modeling, and psychophysical measurements to link human perception to cortical brain activity.++| 
 +<​html></​div></​html>​ 
 +<​html><​!-- ************************************************** --></​html>​ 
 +<​html><​div></​html>​ 
 +^Jiwon Yeon <​html><​br/></​html>​ Post-doc^ 
 +|<​html><​center><​script>​writeRandomImage("​bottom",​212,​160);</​script></​center></​html>​| 
 +| ++ More| 
 +<​html><​br/></​html>​ 
 +<​html><​br/></​html>​ 
 +<​html><​br/></​html>​++| 
 +<​html></​div></​html>​ 
 +<​html><​!-- ************************************************** --></​html>​ 
 +<​html><​div></​html>​ 
 +^Minyoung Lee <​html><​br/></​html> ​PhD Student^ 
 +| {{ :​shared:​minyoung_lee.jpg?​160x160 |}} | 
 +| ++ More| 
 +<​html><​br/></​html>​Korea University 
 +<​html><​br/></​html>​M.S. ​in Cognitive Psychology2015 
 +<​html><​br/></​html>​Korea University, B.A. in Psychology2012++| 
 +<​html></​div></​html>​ 
 +<​html><​!-- ************************************************** --></​html>​ 
 +<​html><​div></​html>​ 
 +^Jun Hwan (Joshua) Ryu <​html><​br/></​html> ​PhD Student^ 
 +|{{ :shared:josh190901.jpg?​140x160 ​|}}| 
 +| ++ More| 
 +<​html><​br/></​html>​Stanford,​ M.S. Computational and Mathematical Engineering,​ 2022 
 +<​html><​br/></​html>​Yale University, B.A. Cognitive Sicence and Mathematics,​ 2016 
 +<​html><​br/></​html>​ 
 +<​html><​br/></​html>​ Josh is interested in using neural and psychophysical measurements in order to understand neural mechanisms underlying our visual perception. He is working on developing and validating models of human visuomotor control. ++| 
 +<​html></​div></​html>​ 
 +<​html><​!-- ************************************************** --></​html>​ 
 +<​html><​div></​html>​ 
 +^Josh Wilson<​html><​br/></​html> ​PhD Student^ 
 +|{{ :shared:​jw.jpg?​160x160 |}}| 
 +| ++ More| 
 +<​html><​br/></html>UC Berkeley, B.AMolecular & Cell Biology (Neurobiology) and Cognitive Science 2019 
 +<​html><​br/></html> 
 +<​html><​br/></​html>​Josh is interested in how we encode, represent, and utilize representations of information in cortex.++| 
 +<​html></​div></​html>​ 
 +<​html><​!-- ************************************************** --></​html>​ 
 +<​html><​div></​html>​ 
 +^Austin Kuo<​html><​br/></​html>​ PhD Student^ 
 +|{{ :​shared:​austin.jpg?115x160 ​|}}| 
 +| ++ More| 
 +<​html><​br/></​html>​University ​of Texas at AustinB.S. Neuroscience,​ 2018  
 +<​html><​br/></​html>​ 
 +<​html><​br/></​html>​Austin is interested ​in exploring in how representations of low-level visual featuressuch as spatial frequency, are represented in visual cortex by analyzing neural measurements obtained from fMRI and building computational models to predict neural responses to visual stimuli.++| 
 +<​html></​div></​html>​ 
 +<​html><​!-- ************************************************** --></​html>​ 
 +<​html><​div></​html>​ 
 +^Alex Durango<​html><​br/></​html> ​PhD Student^ 
 +|<​html><​center><​script>​writeRandomImage("​bottom",​212,​160);</​script></​center></​html>​| 
 +| ++ More| 
 +<​html><​br/></​html>​ 
 +<​html><​br/></​html>​ 
 +<​html><​br/></​html>​++| 
 +<​html></​div></​html>​ 
 +<​html><​!-- ************************************************** --></​html>​ 
 +<​html><​div></​html>​ 
 +^Hyunwoo Gu<​html><​br/></​html>​ PhD Student^ 
 +|{{ :​shared:​hwgu.jpg?​150x150 |}}| 
 +| ++ More| 
 +<​html><​br/></​html>​Seoul National University, M.S.<​html><​br/></​html>​ 
 +Seoul National ​University, B.A., B.S. 
 +<​html><​br/></​html>​ 
 +<​html><​br/></​html>​[[https://​hyunwoogu.github.io/​|personal website]]<​html><​br/></​html><​html><​br/></​html>​Hyunwoo is interested ​in how we use our attention to guide our dynamiccontinuous sensory experiences. 
 +<​html><​br/></​html>​++| 
 +<​html></​div></​html>​ 
 +<​html><​!-- ************************************************** --></​html>​ 
 + 
 +<​html><​!-- *+=*+=*+=*+=*+=*+=*+=*+=*+=*+=*+=*+=*+=*+=*+=*+=* 
 +Add yourself above this line!! 
 +1) Copy the last persons code and place below them (remember to add the next **** comment line for the next person) 
 +2) Upload an image of yourself by clicking on the picture icon in the toolbar 
 +3) Add your image using a tag like the following: {{ :​shared:​austin.jpg?​240x160 |}} making sure to have the image scaled to 240x160 so that everything comes out even with the other images 
 +4) If you have somewhere that you want your image to link to, then you can add that (look at the first entry for me (Justin) to see the syntax for that) 
 +5) Add info for yourself and your tag line (see other entries for how)  
 +*+=*+=*+=*+=*+=*+=*+=*+=*+=*+=*+=*+=*+=*+=*+=*+=* --></​html><​html></​div></​html>​ 
 +====== Former Members ====== 
 +<​html><​div class="​grid-container"></​html>​ 
 +<​html><​!-- ************************************************** --></​html>​ 
 +<​html><​div></​html>​ 
 +^Franco Pestilli<​html><​br/></​html>​Post-doc
 +|[[http://​www.francopestilli.com|{{ :shared:photo_021807_003.jpg?120x160 ​|}}]]| 
 +| ++ More| 
 +<​html><​br/></​html>​Associate Professor 
 +<​html><​br/></​html>​Department of Psychology 
 +<​html><​br/></​html>​The ​University of Texas at Austin++| 
 +<​html></​div></​html>​ 
 +<​html><​!-- ************************************************** --></​html>​ 
 +<​html><​div></​html>​ 
 +^Steeve Laquitaine<​html><​br/></​html>​Post-doc^ 
 +|[[https://​people.epfl.ch/​steeve.laquitaine/?​lang=en|{{ :​shared:​steevelaquitaine.jpg?​160x160 |}}]]| 
 +| ++ More| 
 +<​html><​br/></​html>​Scientist 
 +<​html><​br/></​html>​EPFL BBP-CORE++| 
 +<​html></​div></​html>​ 
 +<​html><​!-- ************************************************** --></​html>​ 
 +<​html><​div></​html>​ 
 +^Arman Abrahamyan<​html><​br/></​html>​Post-doc^ 
 +|[[http://​www.armanaresearch.org|{{ :​shared:​arman_v1.jpg?​240x160 |}}]]| 
 +| ++ More| 
 +<​html><​br/></​html>​Data Science Chapter Lead 
 +<​html><​br/></​html>​Commonwealth BankAustralia++| 
 +<​html></​div></​html>​ 
 +<​html><​!-- ************************************************** --></​html>​ 
 +<​html><​div></​html>​ 
 +^Ilias Rentzeperis<​html><​br/></​html>​Post-doc^ 
 +|[[https://​medium.com/​@ilias.rentzeperis/​about|{{ :​shared:​IliasRentzeperis.jpg?​240x160 |}}]]| 
 +| ++ More| 
 +<​html><​br/></​html>​Swiss Federal Institute of Technology (ETH) 
 +<​html><​br/></​html>​Dr. sc.Neuroscience,​ 2012 
 +<​html><​br/></​html>​Carnegie Mellon University 
 +<​html><​br/></​html>​M.Sc. in Information Networking, 2005 
 +<​html><​br/></​html>​Michigan Technological University 
 +<​html><​br/></​html>​B.Sin Electrical Engineering2002++| 
 +<​html></​div></​html>​ 
 +<​html><​!-- ************************************************** --></​html>​ 
 +<​html><​div></​html>​ 
 +^Johan Carlin<​html><​br/></​html>​Visiting Post-doc^ 
 +|[[https://​www.johancarlin.com|{{ :​shared:​johan.jpg?​240x160 |}}]]| 
 +| ++ More| 
 +<​html><​br/></​html>​University of CambridgePhD Biology 2012 
 +<​html><​br/></​html>​University of York, BSc Psychology 2008 
 +<​html><​br/></​html>​MRC Cognition and Brain Sciences Unit, UK++| 
 +<​html></​div></​html>​ 
 +<​html><​!-- ************************************************** --></​html>​ 
 +<​html><​div></​html>​ 
 +^Andrew Isaac Meso<​html><​br/></​html>​Visiting Post-doc^ 
 +|[[https://www.kcl.ac.uk/people/​andrew-meso|{{ :​shared:​sel_6551a.jpg?​160x160 |}}]]| 
 +| ++ More| 
 +<​html><​br/></​html>​Lecturer in Computational Neuroscience 
 +<​html><​br/></​html>​King'​s College London++| 
 +<​html></​div></​html>​ 
 +<​html><​!-- ************************************************** --></​html>​ 
 +<​html><​div></​html>​ 
 +^Cameron McKenzie<​html><​br/></​html>​PhD Student^ 
 +|[[https://​au.linkedin.com/​in/​cameron-mckenzie-36412b185|{{ :​shared:​camcoffee.png?​240x160 |}}]]| 
 +| ++ More| 
 +<​html><​br/></​html>​Medical Student 
 +<​html><​br/></​html>​University of Newcastle++| 
 +<​html></​div></​html>​ 
 +<​html><​!-- ************************************************** --></​html>​ 
 +<​html><​div></​html>​ 
 +^Dan Birman<​html><​br/></​html>​PhD Student^ 
 +|[[https://​danbirman.com|{{ :​shared:​dan.jpg?​240x160 |}}]]| 
 +| ++ More| 
 +<​html><​br/></​html>​Washington Research Foundation Postdoctoral Fellow 
 +<​html><​br/></​html>​University of Washington++| 
 +<​html></​div></​html>​ 
 +<​html><​!-- ************************************************** --></​html>​ 
 +<​html><​div></​html>​ 
 +^ Guillaume Riesen<​html><​br/></​html>​PhD Student^ 
 +|[[https://www.youtube.com/user/thegnome54|{{ :​shared:​guillaume001.jpg?​240x160 |}}]]| 
 +| ++ More| 
 +<​html><​br/></html>​[[https://​www.worldview.studio/​who-we-are|Worldview Studio]] 
 +<​html><​br/></​html>​Science Engagement Designer++| 
 +<​html></​div></​html>​ 
 +<​html><​!-- ************************************************** ​--></html> 
 +<​html><​div><​/html> 
 +^Akshay Jagadeesh<​html><​br/></​html>​PhD Student^ 
 +|[[https://​www.akshayjagadeesh.com|{{ :​shared:​akshay.jpg?240x160 |}}]]| 
 +| ++ More| 
 +<​html><​br/></​html>​Postdoctoral Fellow 
 +<​html><​br/></​html>​Harvard University++| 
 +<​html></​div></​html>​ 
 +<​html><​!-- ************************************************** --></​html>​ 
 +<​html><​div></​html>​ 
 +^Katharina Dobs<​html><​br/></​html>​Visiting PhD Student^ 
 +|[[https://​www.katharinadobs.com|{{ :​shared:​katharina_dobs_web.jpg?180x160 ​|}}]]| 
 +| ++ More| 
 +<​html><​br/></​html>​Group Leader of the Cognitive ​Computational ​Neuroscience ​Lab 
 +<​html><​br/></​html>​[[https://​www.uni-giessen.de/​faculties/​f06/​psy|Justus-Liebig ​University ​Giessen]]++| 
 +<​html></​div></​html>​ 
 +<​html><​!-- ************************************************** --></​html>​ 
 +<​html><​div></​html>​ 
 +^Brett Vintch<​html><​br/></​html>​Visiting PhD Student^ 
 +|[[https://​www.linkedin.com/​in/​brettvintch|{{ :​shared:​brett.jpg?​240x160 |}}]]| 
 +| ++ More| 
 +<​html><​br/></​html>​Head of Applied Science & Data Science 
 +<​html><​br/></​html>​Uber Eats Consumer & Merchant++| 
 +<​html></​div></​html>​ 
 +<​html><​!-- ************************************************** --></​html>​ 
 +<​html><​div></​html>​ 
 +^Darren Seibert<​html><​br/></​html>​Visiting ​PhD Student^ 
 +|[[https://​www.semanticscholar.org/​author/​Darren-Seibert/​11287004|{{ :shared:darren.jpg?120x160 ​|}}]]| 
 +| ++ More| 
 +<​html><​br/></​html>​Medical Student 
 +<​html><​br/></​html>​Upstate SUNYSyracuse NY++| 
 +<​html></​div></​html>​ 
 +<​html><​!-- ************************************************** --></​html>​ 
 +<​html><​div></​html>​ 
 +^Yuko Hara (原 由子)<​html><​br/></​html>​Technical Staff^ 
 +|[[https://​www.linkedin.com/in/mryuko|{{ :​shared:​yukohara2.jpg?​120x160 |}}]]| 
 +| ++ More| 
 +<​html><​br/></​html>​Software Engineer 
 +<​html><​br/></​html>​Intuitive ++| 
 +<​html></​div></​html>​ 
 +<​html><​!-- ************************************************** --></​html>​ 
 +<​html><​div></​html>​ 
 +^Li-Feng Yeh<​html><​br/></​html>​Technical Staff^ 
 +|[[|{{ :​shared:​lfy.png?​180x160 |}}]]| 
 +| ++ More| 
 +<​html><​br/></​html>​Research ​Associate 
 +<​html><​br/></​html>​RIKEN++| 
 +<​html></​div></​html>​ 
 +<​html><​!-- ************************************************** --></​html>​ 
 +<​html><​div></​html>​ 
 +^Sam Mokhtary<​html><​br/></​html>​Technical Staff
 +|[[https://​sammokhtary.com|{{ :shared:fishyfish.jpg?240x160 ​|}}]]| 
 +| ++ More| 
 +<​html><​br/></​html>​Promoterentrepreneur++| 
 +<​html></​div></​html>​ 
 +<​html><​!-- ************************************************** --></​html>​ 
 +<​html><​div></​html>​ 
 +^Kenji Haruhana (春花 健児)<​html><​br/></​html>​Technical Staff^ 
 +|[[https://​jp.linkedin.com/​in/​kenji-haruhana-3a0b17b9|{{ :​shared:​dscn1055.jpg?​240x160 |}}]]| 
 +| ++ More| 
 +<​html><​br/></​html>​Education and Research Support Staff 
 +<​html><​br/></​html>​Hiroshima University++| 
 +<​html></​div></​html>​ 
 +<​html><​!-- ************************************************** --></​html>​ 
 +<​html><​div></​html>​ 
 +^Toshiko Ikari (碇 敏子)<​html><​br/></​html>​Administrative Assistant^ 
 +|[[https://​sammokhtary.com|{{ :​shared:​toshiko.jpg?​240x160 |}}]]| 
 +| ++ More| 
 +<​html><​br/></​html>​++| 
 +<​html></​div></​html>​ 
 +<​html><​!-- ************************************************** --></​html>​ 
 + 
 +<​html></​div></​html>​
  
-====== Collaborators ====== 
-^ Franco Pestilli ^ Associate Professor, Indiana University ^ 
-|{{ :​shared:​photo_021807_003.jpg?​120x180 |}}|New York University, PhD in Psychology, 2008<​html><​br/></​html>​University of Rome, B.A. in Experimental Psychology, 2000<​html><​br/></​html>​[[http://​www.francopestilli.com|francopestilli.com]]| 
-^ Johan Carlin ^ Post-doctoral collaborator / MRC Cognition and Brain Sciences Unit, UK^ 
-|{{ :​shared:​johan.jpg?​180x120 |johan}}|University of Cambridge, PhD Biology 2012<​html><​br/></​html>​University of York, BSc Psychology 2008<​html><​br/></​html>​http://​www.mrc-cbu.cam.ac.uk/​people/​johan.carlin/​| 
-^ Andrew Isaac Meso ^ Visiting Post-doctoral Fellow / Institut de Neurosciences de la Timone, Marseille ^ 
-|{{ :​shared:​sel_6551a.jpg?​157x180 |}}|Royal Holloway University of London, PhD in Visual Neuroscience,​ 2008<​html><​br/></​html>​University College London, M.Sc. Medical Physics, 2004<​html><​br/></​html>​Imperial College London, B.Sc. Physics, 2001<​html><​br/></​html>​| 
-====== Former Stanford members and collaborators ====== 
-^ Steeve Laquitaine ^ Postdoctoral Researcher ^ 
-|{{ :​shared:​SteeveLaquitaine.jpg?​140x140 |}}|Postdoctoral Research Associate, Riken BSI, 2010-2012<​html><​br/></​html>​University Bordeaux 2, PhD in Neurosciences,​ 2010<​html><​br/></​html>​University Bordeaux 2, MSc Medical and Biological Sciences, 2007<​html><​br/></​html>​Web:​ http://​steevelaquitaine.blogspot.jp/​| 
-^ Ilias Rentzeperis ^ Postdoctoral Researcher ^ 
-|{{ :​shared:​IliasRentzeperis.jpg?​240x180 |}}|Swiss Federal Institute of Technology (ETH), Dr. sc., Neuroscience,​ 2012<​html><​br/></​html>​Carnegie Mellon University, M.Sc. in Information Networking, 2005<​html><​br/></​html>​Michigan Technological University, B.S. in Electrical Engineering,​ 2002<​html><​br/></​html>​email:​ ilias.rentzeperis@gmail.com| 
-^ Arman Abrahamyan ^ Postdoctoral Researcher ^ 
-|{{ :​shared:​arman_v1.jpg?​240x180 |}}|Postdoctoral Research Associate, University of Sydney, 2008 - 2012<​html><​br/></​html>​University of Western Sydney, PhD in Experimental Psychology, 2008<​html><​br/></​html>​Yerevan State University, MSc Applied Mathematics and Computer Science, 1997<​html><​br/></​html>​Web:​ www.armanaresearch.org| 
-^ Dan Birman ^ PhD Student ^ 
-|{{ :​shared:​dan.jpg?​240x158 |}} | Stanford University, Ph.D. in Psychology (Cognitive Neuroscience),​ 2019<​html><​br/></​html>​Cornell University, B.A. in Biology, 2012<​html><​br/></​html>​https://​danbirman.com<​html><​br/></​html>​| 
-^ Cameron McKenzie ^ PhD Student ^ 
-|{{ :​shared:​screen_shot_2019-09-19_at_9.24.26_pm.png?​240 |}}|Stanford University. Ph.D. (Psychology),​ 2017<​html><​br/></​html>​University of Melbourne. L.L.B. (Hons), 2007<​html><​br/></​html>​University of Melbourne. B.A., 2007<​html><​br/></​html>​| 
-====== Former RIKEN members and collaborators ====== 
-^ Katharina Dobs ^ PhD Max Planck Institute for Biological Cybernetics ^ 
-| {{ shared:​katharina_dobs_web.jpg }} | [[http://​www.katharinadobs.com|www.katharinadobs.com]] | 
-^ Yuko Hara (原 由子)^ Masters Tokyo University ^ 
-|{{ :​shared:​yukohara2.jpg?​120x180 |}}|Yale University, B.S. in Biomedical Engineering,​ 2009<​html><​br/></​html>​[[:​grupub:​yukoCV|Info]]| 
-^ Brett Vintch ^ PhD New York University^ 
-|{{ :​shared:​brett.jpg?​240x166 |}}|Johns Hopkins University, Biomedical Engineering (BS) 2005<​html><​br/></​html>​University of Chicago, Computational Neuroscience (MS) 2007<​html><​br/></​html>​| 
-^ Sam Mokhtary ^ Technical Staff ^ 
-|{{ :​shared:​fishyfish.jpg?​240x180 |}}|University College London, B.S. in Neuroscience,​ 2008| 
-^ Li-Feng Yeh ^ Technical Staff ^ 
-|{{ :​shared:​lfy.png?​180x180 |lfy}}|National Yang-Ming University, M.S. in Neurosciences,​ 2011<​html><​br/>​ 
-</​html>​National Taiwan University, Bachelor of Law and B.S. in Life Sciences, 2008<​html><​br/></​html>​| 
-^ Darren Seibert ^ PhD student collaborator / MIT^ 
-|{{ :​shared:​darren.jpg?​100x153 |}}|University of Houston, Biomedical Engineering (BS) 2012<​html><​br/></​html>​| 
-^ Kenji Haruhana (春花 健児) ^ Technical Staff ^ 
-|{{ :​shared:​dscn1055.jpg?​240x180 |}}|Kyushu Institute of Technology, M.S. in Engineering,​ 2002| 
-^ Toshiko Ikari (碇 敏子)^ Administrative assistant ^ 
-|{{ :​shared:​toshiko.jpg?​240x169 |}}|University of Washington (BA) |