In [74]:
import pandas as pd
In [83]:
# loading data
data = pd.read_csv('../data_original/AbstractsCosyne2012.csv',sep='|')
# authors string to list
data["Author"] = pd.Series([ [y.translate(None,"'").strip().replace("\\", "") for y in x.split(',')] for x in data["Author"]])
# authors list
authors_list = sorted(list(set([item for sublist in data["Author"] for item in sublist])))
# poster list
posters_list = data["Title"]
# poster count
posters_count = {x:sum([ x in l for l in data["Author"]]) for x in authors_list}
# name to id
name_to_id = {authors_list[id]:id for id in range(len(authors_list))}
poster_to_id = {posters_list[id]:id for id in range(len(posters_list))}
In [84]:
from itertools import permutations
from collections import Counter
# count links author-author
links_aa = Counter([pair for la in data["Author"] for pair in permutations(la, 2)])
# links author-poster
links_ap = [(posters_list[i_p],a) for i_p in range(len(data)) for a in data["Author"][i_p]]
In [88]:
# graph of authors
names = [{"name":a,"group":1,"count":posters_count[a]} for a in authors_list]
links = [{"source":name_to_id[a[0]],"target":name_to_id[a[1]],"value":links_aa[a]} for a in links_aa]
json = {"nodes":names,"links":links}
with open("graph_authors.json", "w") as text_file:
text_file.write(str(json).replace("\\'", 'XXX').replace("'", '"').replace('XXX', "\\'").replace("\\", "") )
# graph of authors and posters .translate(None,"'")
names = [{"type":"author","name":a,"group":1,"count":posters_count[a]} for a in authors_list]
posters = [{"type":"poster","name":k,"group":1} for k in posters_list]
nodes = names+posters
node_to_id = {nodes[id]['name']:id for id in range(len(nodes))}
merge_list = list(links_aa)+links_ap
links_all = [{"source":node_to_id[a[0]],"target":node_to_id[a[1]],"value":merge_list[a]} for a in merge_list]
json2 = {"nodes":nodes,"links":links_all}
with open("graph_authors_posters.json", "w") as text_file:
text_file.write(str(json2).replace("\\'", 'XXX').replace("'", '"').replace('XXX', "\\'").replace("\\", "") )
In [86]:
authors_list
Out[86]:
['A. Moses Lee',
'Aaron Bornstein',
'Aaron Koralek',
'Aaron Seitz',
'Aaron Suminski',
'Abigail Morrison',
'Abram Friesen',
'Abtine Tavassoli',
'Ad Aertsen',
'Adam Charles',
'Adam Johnson',
'Adam Kepecs',
'Adam Kohn',
'Adam Zaidel',
'Adrienne Fairhall',
'Ahmad Osman',
'Akinori Ebihara',
'Alain Marchand',
'Alaina Case',
'Alan Litke',
'Alan Stocker',
'Alan Veliz-Cuba',
'Alberto Bernacchia',
'Aldo Faisal',
'Alejandro Fernandez Bujan',
'Alex D. Reyes',
'Alex Gomez-Marin',
'Alex Huk',
'Alex Kwan',
'Alexandar Kozarev',
'Alexander Dimitrov',
'Alexander Ecker',
'Alexander Genkin',
'Alexander Huth',
'Alexandre Pouget',
'Alexandro Ramirez',
'Alfred Kaye',
'Ali Mohebi',
'Ali Neishabouri',
'Alireza Soltani',
'Alison Barker',
'Aljoscha Nern',
'Aljoscha Schulze',
'Alla Karpova',
'Alon Chen',
'Alon Rubin',
'Aman Saleem',
'Amy Peng',
'An Vu',
'Ana Raquel Martins',
'Anandamohan Ghosh',
'Anda Degeratu',
'Andre Longtin',
'Andre Mendonca',
'Andrea Barreiro',
'Andreas Schaefer',
'Andreas Thomik',
'Andreas Tolias',
'Andreas V.M. Herz',
'Andreea Lazar',
'Andrew Fagg',
'Andrew Lees',
'Andrew Leifer',
'Andrew Tan',
'Andrew Welchman',
'Andrew Zaharia',
'Angela Radulescu',
'Angela Yu',
'Anirvan Nandy',
'Anita Disney',
'Anne Churchland',
'Anne Collins',
'Annika Linke',
'Anthony Norcia',
'Anthony Zador',
'Antonello Bonci',
'Antonio Lara',
'Antonio Rangel',
'Anya Skatova',
'Arash Afraz',
'Arash Fassihi',
'Aravinthan Samuel',
'Ari Pakman',
'Ari Rosenberg',
'Arjun Bharioke',
'Arkarup Bandyopadhyay',
'Arnulf Graf',
'Arpiar Saunders',
'Arseny Finkelstein',
'Arvind Kumar',
'Ashok Litwin-Kumar',
'Asli Ayaz',
'Atbin Djamshidian',
'Athena Akrami',
'Aurel Lazar',
'Aviv Mezer',
'Ayse Yarali',
'Badr Albanna',
'Baktash Babadi',
'Balaji Sriram',
'Bard Ermentrout',
'Bardia Behabadi',
'Bart Larsen',
'Bartlett Mel',
'Behrad Noudoost',
'Benjamin Greenberg',
'Benjamin Hayden',
'Bernardo Sabatini',
'Beth Lopour',
'Bijan Pesaran',
'Bilal Bari',
'Bilal Haider',
'Biljana Petreska',
'Bingni Brunton',
'Bob Schafer',
'Bosco Tjan',
'Brent Doiron',
'Brett Vintch',
'Brian Flynn',
'Brian Wandell',
'Brice Bathellier',
'Britni Crocker',
'Brittany Burrows',
'Bruno Averbeck',
'Bruno Olshausen',
'Bryan Seybold',
'Byron Yu',
'C Shawn Green',
'Cahir O\xc3\xadKane',
'Caleb Kemere',
'Calin Buia',
'Carina Curto',
'Carl Smith',
'Carlos Brody',
'Carlotta Martelli',
'Caswell Barry',
'Catalin Rusu',
'Catherine Dulac',
'Cecilia Babul',
'Cengiz Pehlevan',
'Chaohui Guo',
'Charles Gray',
'Chi-Hon Lee',
'Chris Fang-Yen',
'Chris Rozell',
'Chris Werner',
'Christian Leibold',
'Christian Tetzlaff',
'Christine Portfors',
'Christof Koch',
'Christoph Schreiner',
'Christoph Kayser',
'Christoph Kirst',
'Christoph Kolodziejski',
'Christopher Cueva',
'Christopher Hillar',
'Christopher Kanan',
'Christopher Moore',
'Christopher Pack',
'Christos Constantinidis',
'Chun-Yuan Ting',
'Chung-Chuan Lo',
'Chunyu Duan',
'Cinira Diogo',
'Clark Fisher',
'Claudia Clopath',
'Constantin Rothkopf',
'Corey Ziemba',
'Corinne Teeter',
'Cristina Savin',
'Cristopher Niell',
'Cynthia A Chestek',
'DJ Strouse',
'Damon Chandler',
'Daniel Ben Dayan Rubin',
'Daniel Bullock',
'Daniel Butts',
'Daniel Coca',
'Daniel Huber',
'Daniel Kaping',
'Daniel Knudsen',
'Daniel Lee',
'Daniel Leventhal',
'Daniel Little',
'Daniel McNamee',
'Daniel OConnor',
'Daniel Polley',
'Daniel Wolpert',
'Daniel Zoran',
'Danko Nikolic',
'Darin Dougherty',
'Dario Ringach',
'David Barack',
'David Barrett',
'David Field',
'David Freedman',
'David Kastner',
'David Morton',
'David Raposo',
'David Schneider',
'David Schulz',
'David Sussillo',
'Dean V. Buonomano',
'Dean Wyatte',
'Deborah Gunning',
'Deep Ganguli',
'Demian Battaglia',
'Diego Gutnisky',
'Dietmar Plenz',
'Dimitry Fisher',
'Dinu Albeanu',
'Dirk Walther',
'Dmitri Chklovskii',
'Dmitry Tsigankov',
'Dominique Pritchett',
'Dongsung Huh',
'Dora Angelaki',
'Dori Derdikman',
'Dougal Tervo',
'Douglas Ollerenshaw',
'EJ Chichilnisky',
'Earl Miller',
'Eddie Chang',
'Edith Reshef',
'Edward Boyden',
'Edward Callaway',
'Eero Simoncelli',
'Eftychios Pnevmatikakis',
'Einat Granot-Atedgi',
'Ekaterina Vinnik',
'Elad Ganmor',
'Elad Schneidman',
'Eldon Emberly',
'Elizabeth Hulme',
'Emad Eskandar',
'Emery Brown',
'Emily Anderson',
'Emre Aksay',
'Engin Bumbacher',
'Eran Eldar',
'Eran Lottem',
'Eran Mukamel',
'Eric Chen',
'Eric DeWitt',
'Eric Denovellis',
'Eric Reifenstein',
'Eric Shea-Brown',
'Eric Trautman',
'Ethan Bromberg-Martin',
'Ethan Meyers',
'Ethan Solomon',
'Etienne Koechlin',
'Eugenio Culurciello',
'Evan Archer',
'Evan Schaffer',
'Eyal Nitzany',
'Eyal Seidemann',
'Fanis Panagiotaropoulos',
'Farhan Khawaja',
'Farran Briggs',
'Felix Felmy',
'Felix Patzelt',
'Felix Wichmann',
'Feryal Mehraban Pour Behbahani',
'Florentin W\xcb\x86rg\xcb\x86tter',
'Florian Gerard-Mercier',
'Florian Rau',
'Francis Willett',
'Francoise Dellu-Hagedorn',
'Frank W. Ohl',
'Frank Wood',
'Franziska Hellmundt',
'Fred Marbach',
'Fred Rieke',
'Fred Wolf',
'Frederic Theunissen',
'Frederick Soo',
'Friedemann Zenke',
'Fritz Sommer',
'Fukunaga Izumi',
'Gabriel Kreiman',
'Garrett Kenyon',
'Garrett Stanley',
'Garrison Cottrell',
'Gary Marsat',
'Gasper Tkacik',
'Gautam Agarwal',
'Geoffrey Goodhill',
'George R. Mangun',
'George Whitesides',
'Georgia Gregoriou',
'Gerald Rubin',
'Gergo Orb\xc2\xb7n',
'Gerhard Jocham',
'Gil Costa',
'Gonzalo Otazu',
'Gordon Logan',
'Graham Cummins',
'Greg Field',
'Greg Horwitz',
'Gregory Schwartz',
'Gregory W Wornell',
'Grigorios Sotiropoulos',
'Guillaume Dugu\xc3\x88',
'Guillaume Hennequin',
'Guillaume Lajoie',
'Gus Lott',
'Guy Isely',
'Gyorgy Buzsaki',
'Ha Hong',
'Hachi Manzur',
'Haim Sompolinsky',
'Hamilton Farris',
'Han Lun Yap',
'Hang Zhang',
'Hania Kover',
'Hanlin Tang',
'Hannah Bernstein',
'Hans Trukenbrod',
'He Huang',
'He Zheng',
'Heesoo Kim',
'Helen Shen',
'Helga Mazyar',
'Henning Sprekeler',
'Hideaki Shimazaki',
'Hiroki Taniguchi',
'Hiroki Asari',
'Hiroki Terashima',
'Hiromu Tanimoto',
'Hiroshi Ban',
'Holly Gerhard',
'Hongdian Yang',
'Hongsup Shin',
'Hugo Fernandes',
'Ian Meinertzhagen',
'Ian Nauhaus',
'Ian Stevenson',
'Il Memming Park',
'Ila Fiete',
'Ilya Rybak',
'Ingmar Kanitscheider',
'Ingo Fr\xc2\xb8nd',
'Ioana Carcea',
'Irina Yonit Segal',
'Isaac Carruthers',
'Itai Pinkoviezsky',
'Itzhak Fried',
'I\xc3\x92igo Romero Arandia',
'Jack Gallant',
'Jacob Aptekar',
'Jacob Donoghue',
'Jacob Yates',
'Jacqueline Fulvio',
'Jakob Foerster',
'Jakob Macke',
'Jakob Voigts',
'Jaldert Rombouts',
'James DiCarlo',
'James Golden',
'James H Marshel',
'James M. Hyman',
'James Tee',
'James Trousdale',
'Jamie Near',
'Jan Clemens',
'Jan Drugowitsch',
'Jason Climer',
'Jason Fleischer',
'Jason Gerrard',
'Jason Hunzinger',
'Jason Rolfe',
'Javier Movellan',
'Jedidiah Carlson',
'Jeff Gavornik',
'Jeff Pettibone',
'Jeff Pobst',
'Jeffrey Beck',
'Jeffrey Erlich',
'Jeffrey Fitzgerald',
'Jeffrey Magee',
'Jeffrey Markowitz',
'Jeffrey Schall',
'Jeffrey Seely',
'Jeffrey Smith',
'Jelena Platisa',
'Jenia Jitsev',
'Jens Kremkow',
'Jeremy Freeman',
'Jeremy K. Seamans',
'Jessica A. Cardin',
'Jessica Fox',
'Jianzhong Jin',
'Jochen Triesch',
'Joel Alvarez',
'Johannes Burge',
'Johannes Nehrkorn',
'John Flannery',
'John Cunningham',
'John Gale',
'John Murray',
'John ODoherty',
'John Pearson',
'John R Carlson',
'John Reppas',
'John Reynolds',
'John Sheppard',
'John Tuthill',
'John Widloski',
'Joline Fan',
'Jonathan Huggins',
'Jonathan B. Demb',
'Jonathan Cohen',
'Jonathan Hunt',
'Jonathan Kao',
'Jonathan Pillow',
'Jonathan Rubin',
'Jonathan Victor',
'Jonathan Wallis',
'Jonathan Winawer',
'Joon Hyuk Park',
'Jose Carmena',
'Jose-Manuel Alonso',
'Joseph Bergan',
'Joseph Madsen',
'Josh Huang',
'Josh McDermott',
'Joshua Berke',
'Joshua Gold',
'Joshua Levy',
'Joshua Siegle',
'Jozsef Fiser',
'Juan Florez Weidinger',
'Jude Mitchell',
'Judy Walker',
'Jugoslava Acimovic',
'Julian Ammer',
'Julijana Gjorgjieva',
'Junya Hirokawa',
'Justin Ales',
'Justin Kiggins',
'K. Jannis Hildebrandt',
'Kanaka Rajan',
'Karel Svoboda',
'Karim Oweiss',
'Karl Deisseroth',
'Kate Jeffery',
'Katherine Ames',
'Katherine Morrison',
'Kathryn Hedrick',
'Kay Thurley',
'Kayvon Daie',
'Kazuo Imaizumi',
'Kedarnath Vilankar',
'Keijo Ruohonen',
'Keith Johnson',
'Keith Mathieson',
'Kelvin So',
'Kendrick Kay',
'Kenneth Harris',
'Kent Conover',
'Kentaroh Takagaki',
'Kerstin Preuschoff',
'Kevin Beier',
'Kevin Lin',
'Kevin Shi',
'Kexin Yuan',
'KiJung Yoon',
'Klaus Pawelzik',
'Kolia Sadeghi',
'Konrad Kording',
'Kresimir Josic',
'Kris Chaisanguanthum',
'Krishna Shenoy',
'Kristin Branson',
'Kristina Nielsen',
'Kristofer Bouchard',
'Kyle Lepage',
'Larry Abbott',
'Lars Buesing',
'Laura Lewis',
'Laurel Carney',
'Lauren Jepson',
'Laurence Aitchison',
'Laurence Hunt',
'Laurence Maloney',
'Lawrence Sincich',
'Leigh Hochberg',
'Leonard Maler',
'Leslie Osborne',
'Li Zhaoping',
'Liam Paninski',
'Lin Tian',
'Linda Wilbrecht',
'Liu Liu',
'Loic Matthey',
'Loren Looger',
'Loren Frank',
'Lorric Ziegler',
'Lou Scheffer',
'Luigi Acerbi',
'Luke Urban',
'Lung-Hao Tai',
'Lyubov Ushakova',
'Magor Lorincz',
'Mandy Turner',
'Maneesh Sahani',
'Manuel Berning',
'Marc Gershow',
'Marc Sommer',
'Marc Timme',
'Marc Tittgemeyer',
'Margot Wohl',
'Maria Geffen',
'Maria Vicente',
'Marie McCulloch',
'Marino Pagan',
'Marissa Powers',
'Marja-Leena Linne',
'Mark Bear',
'Mark Churchland',
'Mark Frye',
'Mark Goldman',
'Mark Harnett',
'Mark Kramer',
'Mark Zarella',
'Markus Meister',
'Martin Greschner',
'Martin Stemmler',
'Martin Vinck',
'Maryam Shanechi',
'Maryam Vaziri-Pashkam',
'Masato Okada',
'Masud Husain',
'Mate Lengyel',
'Mathew E. Diamond',
'Matt Mian',
'Matt Smith',
'Matteo Carandini',
'Matthew Bodenhamer',
'Matthew Colonnese',
'Matthew Cook',
'Matthew Golub',
'Matthew Kaufman',
'Matthew Koh',
'Matthew Nassar',
'Matthew Wilson',
'Matthias Bethge',
'Matthias Kaschube',
'Matthieu Louis',
'Matthieu Wyart',
'Mattia Rigotti',
'Mattias Karlsson',
'Mayank Kabra',
'Mehmet Fisek',
'Mehrdad Jazayeri',
'Melanie Lee',
'Melchi Michel',
'Mengchen Zhu',
'Merav Stern',
'Michael Gedalin',
'Michael Ham',
'Michael Merzenich',
'Michael Berry',
'Michael Black',
'Michael Buice',
'Michael DeWeese',
'Michael Gastpar',
'Michael Graupner',
'Michael Hasselmo',
'Michael H\xe2\x80\xb0usser',
'Michael J Frank',
'Michael Okun',
'Michael Platt',
'Michael Reiser',
'Michael Schnabel',
'Michael Stryker',
'Michael T. Lippert',
'Michel Besserve',
'Michele Insanally',
'Michoel Snow',
'Mihaly Kollo',
'Mijung Park',
'Mikko Juusola',
'Mili Milosavljevic',
'Miranda Babiak',
'Misha Tsodyks',
'Motonori Yamaguchi',
'Nachum Ulanovsky',
'Najib Majaj',
'Natalia Shevtsova',
'Natalya Zaika',
'Nathaniel Daw',
'Neil Burgess',
'Nicholas Furl',
'Nicholas Hatsopoulos',
'Nicholas Price',
'Nicholas Priebe',
'Nicholas Steinmetz',
'Nick Ketz',
'Nicole Carlson',
'Nicole Rust',
'Nikhil Deshmukh',
'Nikos K. Logothetis',
'Nima Mesgarani',
'Nina C. Di Pietro',
'Ning Qian',
'Ning-long Xu',
'Nisheeth Srivastava',
'Noah Cowan',
'O. Ozan Koyluoglu',
'Odelia Schwartz',
'Okihide Hikosaka',
'Olivier List',
'Olivier Marre',
'Omar Ahmed',
'Omri Barak',
'Oren Forkosh',
'Pamela Reinagel',
'Panyue Deng',
'Parvez Ahammad',
'Pat Shoemaker',
'Patrick Cavanagh',
'Patrick Jasinski',
'Patrick Purdon',
'Patrick Stinson',
'Patr\xc3\x8ccia Correia',
'Paul Bays',
'Paul Nuyujukian',
'Paul Schrater',
'Pavel Itskov',
'Pedro Maldonado',
'Peggy Series',
'Peter Dayan',
'Peter Bossaerts',
'Peter Latham',
'Peter Li',
'Peter Shizgal',
'Petr Znamenskiy',
'Philip Sabes',
'Philipp Berens',
'Pierre Yger',
'Pieter Roelfsema',
'Pietro Berkes',
'Priyanka Gupta',
'Qi Wang',
'Quan Wen',
'R Channing Moore',
'R Ebitz',
'R. Blythe Towal',
'R. Matthias Hennig',
'Rachel Wilson',
'Rajesh Rao',
'Ralf Engbert',
'Ralf Haefner',
'Ralf Wessel',
'Ran Rubin',
'Randall OReilly',
'Ranulfo Romo',
'Raoul-Martin Memmesheimer',
'Rava da Silveira',
'Rebecca Solomon',
'Reza Lashgari',
'Rhodri Cusack',
'Richard Andersen',
'Richard Born',
'Richard Fetter',
'Richard Kempter',
'Richard Naud',
'Rishabh Jain',
'Ritwik Niyogi',
'Robbe Goris',
'Robert Desimone',
'Robert Froemke',
'Robert G\xc2\xb8tig',
'Robert Haslinger',
'Robert Rosenbaum',
'Robert Schmidt',
'Rodrigo Laje',
'Roger Hardie',
'Rollin Hu',
'Ronald Van Den Berg',
'Ronen Segev',
'Roozbeh Kiani',
'Ruben Coen-Cagli',
'Ruben Moreno',
'Ryan Natan',
'Ryan Rowekamp',
'S.A. Billings',
'Salva Ardid',
'Sameer Sheth',
'Sander Bohte',
'Sandro Romani',
'Sanggyun Kim',
'Santiago Jaramillo',
'Sarah Woolley',
'Saskia de Vries',
'Scott Taylor',
'Sean Kelly',
'Sean Trettel',
'Sergey Stavisky',
'Seth Madlon-Kay',
'Sethu Vijayakumar',
'Seung-Hee Lee',
'Shaiyan Keshvari',
'Shan Yu',
'Shantanu Jadhav',
'Shaowen Bao',
'Shaul Druckmann',
'Shaun Patel',
'Sherika Sylvester',
'Shiming Tang',
'Shin-ya Takemura',
'Shinji Nishimoto',
'Shirin Hadizadeh',
'Shiv Vitaladevuni',
'Sidhartha Dongre',
'Simon Barthelm\xc3\x88',
'Simon Peron',
'Simon Rumpel',
'Simon Sponberg',
'Siyu Zhang',
'Sotiris Masmanidis',
'Srinimisha Morkonda',
'Stan Floresco',
'Stanley Jose Komban',
'Stefan Everling',
'Stefano Fusi',
'Stefano Panzeri',
'Stephanie Gleiss',
'Stephen Baccus',
'Stephen Heinen',
'Stephen Plaza',
'Stephen Ryu',
'Stephen Williams',
'Steve Gotts',
'Steve Cox',
'Steven Brumby',
'Steven Chase',
'Stuart Layton',
'Stuart Yarrow',
'SueYeon Chung',
'Sukbin Lim',
'Supriya Ray',
'Susanne Schreiber',
'Sven Jahnke',
'Sway Chen',
'Sydney Cash',
'Tao Hu',
'Taro Toyoizumi',
'Tatiana Pasternak',
'Tatjana Tchumatchenko',
'Tatyana Sharpee',
'Terrence Sejnowski',
'Thiago Gouvea',
'Thierry Emonet',
'Thilo Womelsdorf',
'Thomas Clandinin',
'Thomas Geib',
'Thomas Palmeri',
'Thomas Wiecki',
'Tim Behrens',
'Tim P. Vogels',
'Timothy Buschman',
'Timothy Gardner',
'Timothy Gentner',
'Timothy Hanks',
'Tirin Moore',
'Todd Coleman',
'Tom Daniel',
'Tomoki Tsuchida',
'Tony Movshon',
'Trevor Wardill',
'Tuomo M\xe2\x80\xb0ki-Marttunen',
'Tyler Lee',
'Ulf Ziemann',
'Upinder S. Bhalla',
'Uri Eden',
'Urs Koster',
'Uwe Friederich',
'Vahid Esmaeili',
'Valerio Mante',
'Vani Rajendran',
'Vasileios Christopoulos',
'Veronica Weiner',
'Victor Chan',
'Victoria Butler',
'Victoria Phoumthipphavong',
'Vikash Gilja',
'Vikranth Bejjanki',
'Vincent Pieribone',
'Vincent Valton',
'Vishal Kapoor',
'Vitaly Klyachko',
'Vivek Jayaraman',
'Vivienne Ming',
'Vladimir Itskov',
'W. Martin Usrey',
'Walter German',
'Walter Talbott',
'Warasinee Chaisangmongkon',
'Wayne Greg',
'Wei Ji Ma',
'William Bialek',
'William Anderson',
'William Bishop',
'William Nesse',
'William Newsome',
'William Schafer',
'Wilson Geisler',
'Winrich Freiwald',
'Wolf Singer',
'Wolfgang Keil',
'Wulfram Gerstner',
'Xaq Pitkow',
'Xiao-Jing Wang',
'Xiaofeng Li',
'Xinyu Liu',
'Xue-Lian Qi',
'Xundong Wu',
'Yael Niv',
'Yair Shemesh',
'Yair Weiss',
'Yan Karklin',
'Yanbin V. Wang',
'Yang Dan',
'Yang Yang',
'Yann LeCun',
'Yannick-Andre Breton',
'Yanping Huang',
'Yarden Cohen',
'Yaroslav Molkov',
'Yehezkel Sztainberg',
'Yen-Nan Lin',
'Yevgeniy Slutskiy',
'Yi-Hsuan Lee',
'Yoram Ben-Shaul',
'Yoram Burak',
'Yosef Yarom',
'Yu-Chi Huang',
'Yuji Ikegaya',
'Yushi Wang',
'Yuwei Cui',
'Yuzhi Chen',
'Zachary Kilpatrick',
'Zachary Lindbloom-Brown',
'Zachary Mainen',
'Zachary Mayko',
'Zachary Roth',
'Zhai Fangwen',
'Zhiyuan Lu',
'Zhuo Wang',
'Ziqiang Wei',
'Ziv Rotman',
'Ziv Williams']
In [87]:
data["Author"] = pd.Series([x.split(',') for x in data["Author"]])
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
<ipython-input-87-af3fd7a78ccc> in <module>()
----> 1 data["Author"] = pd.Series([x.split(',') for x in data["Author"]])
AttributeError: 'list' object has no attribute 'split'
In [89]:
links_ap
Out[89]:
[('Long-term modification of cortical synapses improves sensory perception',
'Ioana Carcea'),
('Long-term modification of cortical synapses improves sensory perception',
'Kexin Yuan'),
('Long-term modification of cortical synapses improves sensory perception',
'Alison Barker'),
('Long-term modification of cortical synapses improves sensory perception',
'Bryan Seybold'),
('Long-term modification of cortical synapses improves sensory perception',
'Ana Raquel Martins'),
('Long-term modification of cortical synapses improves sensory perception',
'Natalya Zaika'),
('Long-term modification of cortical synapses improves sensory perception',
'Hannah Bernstein'),
('Long-term modification of cortical synapses improves sensory perception',
'Daniel Polley'),
('Long-term modification of cortical synapses improves sensory perception',
'Michael Merzenich'),
('Long-term modification of cortical synapses improves sensory perception',
'Christoph Schreiner'),
('Long-term modification of cortical synapses improves sensory perception',
'Robert Froemke'),
('Multiple spectral inputs improve motion discrimination in the Drosophila visual system',
'Mikko Juusola'),
('Multiple spectral inputs improve motion discrimination in the Drosophila visual system',
'Trevor Wardill'),
('Multiple spectral inputs improve motion discrimination in the Drosophila visual system',
'Olivier List'),
('Multiple spectral inputs improve motion discrimination in the Drosophila visual system',
'Xiaofeng Li'),
('Multiple spectral inputs improve motion discrimination in the Drosophila visual system',
'Sidhartha Dongre'),
('Multiple spectral inputs improve motion discrimination in the Drosophila visual system',
'Marie McCulloch'),
('Multiple spectral inputs improve motion discrimination in the Drosophila visual system',
'Chun-Yuan Ting'),
('Multiple spectral inputs improve motion discrimination in the Drosophila visual system',
'Cahir O\xc3\xadKane'),
('Multiple spectral inputs improve motion discrimination in the Drosophila visual system',
'Shiming Tang'),
('Multiple spectral inputs improve motion discrimination in the Drosophila visual system',
'Chi-Hon Lee'),
('Multiple spectral inputs improve motion discrimination in the Drosophila visual system',
'Roger Hardie'),
('The beads task, information sampling and impulsivity', 'Bruno Averbeck'),
('The beads task, information sampling and impulsivity', 'Nicholas Furl'),
('The beads task, information sampling and impulsivity', 'Atbin Djamshidian'),
('The beads task, information sampling and impulsivity', 'Andrew Lees'),
('Phosphene induction in monkeys using optogenetics', 'Mehrdad Jazayeri'),
('Phosphene induction in monkeys using optogenetics',
'Zachary Lindbloom-Brown'),
('Phosphene induction in monkeys using optogenetics', 'Greg Horwitz'),
('Temporal segregation of olfactory bulb output', 'Fukunaga Izumi'),
('Temporal segregation of olfactory bulb output', 'Manuel Berning'),
('Temporal segregation of olfactory bulb output', 'Mihaly Kollo'),
('Temporal segregation of olfactory bulb output', 'Andreas Schaefer'),
('Nonlinear dendritic processing during active sensing produces an object localization signal',
'Ning-long Xu'),
('Nonlinear dendritic processing during active sensing produces an object localization signal',
'Mark Harnett'),
('Nonlinear dendritic processing during active sensing produces an object localization signal',
'Stephen Williams'),
('Nonlinear dendritic processing during active sensing produces an object localization signal',
'Daniel Huber'),
('Nonlinear dendritic processing during active sensing produces an object localization signal',
'Daniel OConnor'),
('Nonlinear dendritic processing during active sensing produces an object localization signal',
'Karel Svoboda'),
('Nonlinear dendritic processing during active sensing produces an object localization signal',
'Jeffrey Magee'),
('Emergence of pitch from natural sound statistics in a hierarchical, dual-pathway sparse coding model',
'Vivienne Ming'),
('Emergence of pitch from natural sound statistics in a hierarchical, dual-pathway sparse coding model',
'Engin Bumbacher'),
('Patterns of activity initiated by individual photoreceptors in primate retina',
'Peter Li'),
('Patterns of activity initiated by individual photoreceptors in primate retina',
'Greg Field'),
('Patterns of activity initiated by individual photoreceptors in primate retina',
'Martin Greschner'),
('Patterns of activity initiated by individual photoreceptors in primate retina',
'Lauren Jepson'),
('Patterns of activity initiated by individual photoreceptors in primate retina',
'Deborah Gunning'),
('Patterns of activity initiated by individual photoreceptors in primate retina',
'Keith Mathieson'),
('Patterns of activity initiated by individual photoreceptors in primate retina',
'Alan Litke'),
('Patterns of activity initiated by individual photoreceptors in primate retina',
'EJ Chichilnisky'),
('Plasticity and stability in motor cortex during learning', 'Daniel Huber'),
('Plasticity and stability in motor cortex during learning',
'Diego Gutnisky'),
('Plasticity and stability in motor cortex during learning', 'Simon Peron'),
('Plasticity and stability in motor cortex during learning',
'Daniel OConnor'),
('Plasticity and stability in motor cortex during learning', 'Lin Tian'),
('Plasticity and stability in motor cortex during learning', 'Loren Looger'),
('Plasticity and stability in motor cortex during learning', 'Karel Svoboda'),
('Awake hippocampal sharp-wave ripples support spatial working memory.',
'Shantanu Jadhav'),
('Awake hippocampal sharp-wave ripples support spatial working memory.',
'Caleb Kemere'),
('Awake hippocampal sharp-wave ripples support spatial working memory.',
'Walter German'),
('Awake hippocampal sharp-wave ripples support spatial working memory.',
'Loren Frank'),
('Activation of Specific Interneurons Improves V1 Feature Selectivity and Visual Perception',
'Seung-Hee Lee'),
('Activation of Specific Interneurons Improves V1 Feature Selectivity and Visual Perception',
'Alex Kwan'),
('Activation of Specific Interneurons Improves V1 Feature Selectivity and Visual Perception',
'Victoria Phoumthipphavong'),
('Activation of Specific Interneurons Improves V1 Feature Selectivity and Visual Perception',
'Siyu Zhang'),
('Activation of Specific Interneurons Improves V1 Feature Selectivity and Visual Perception',
'John Flannery'),
('Activation of Specific Interneurons Improves V1 Feature Selectivity and Visual Perception',
'Sotiris Masmanidis'),
('Activation of Specific Interneurons Improves V1 Feature Selectivity and Visual Perception',
'Hiroki Taniguchi'),
('Activation of Specific Interneurons Improves V1 Feature Selectivity and Visual Perception',
'Josh Huang'),
('Activation of Specific Interneurons Improves V1 Feature Selectivity and Visual Perception',
'Edward Boyden'),
('Activation of Specific Interneurons Improves V1 Feature Selectivity and Visual Perception',
'Karl Deisseroth'),
('Activation of Specific Interneurons Improves V1 Feature Selectivity and Visual Perception',
'Yang Dan'),
('Entraining gamma oscillations in somatosensory cortex enhances performance in tactile detection',
'Dominique Pritchett'),
('Entraining gamma oscillations in somatosensory cortex enhances performance in tactile detection',
'Joshua Siegle'),
('Entraining gamma oscillations in somatosensory cortex enhances performance in tactile detection',
'Christopher Moore'),
('Visual attention increases synaptic efficacy in thalamocortical circuits',
'Farran Briggs'),
('Visual attention increases synaptic efficacy in thalamocortical circuits',
'George R. Mangun'),
('Visual attention increases synaptic efficacy in thalamocortical circuits',
'W. Martin Usrey'),
('On the Origins of Motor Noise', 'Kris Chaisanguanthum'),
('On the Origins of Motor Noise', 'Helen Shen'),
('On the Origins of Motor Noise', 'Philip Sabes'),
('Tuning to 3-D head-direction in the bat presubiculum', 'Dori Derdikman'),
('Tuning to 3-D head-direction in the bat presubiculum',
'Arseny Finkelstein'),
('Tuning to 3-D head-direction in the bat presubiculum', 'Jakob Foerster'),
('Tuning to 3-D head-direction in the bat presubiculum', 'Nachum Ulanovsky'),
('Bending waves during C. elegans locomotion are driven and organized by proprioceptive coupling',
'Quan Wen'),
('Bending waves during C. elegans locomotion are driven and organized by proprioceptive coupling',
'Elizabeth Hulme'),
('Bending waves during C. elegans locomotion are driven and organized by proprioceptive coupling',
'Sway Chen'),
('Bending waves during C. elegans locomotion are driven and organized by proprioceptive coupling',
'Xinyu Liu'),
('Bending waves during C. elegans locomotion are driven and organized by proprioceptive coupling',
'Marc Gershow'),
('Bending waves during C. elegans locomotion are driven and organized by proprioceptive coupling',
'Andrew Leifer'),
('Bending waves during C. elegans locomotion are driven and organized by proprioceptive coupling',
'Victoria Butler'),
('Bending waves during C. elegans locomotion are driven and organized by proprioceptive coupling',
'Chris Fang-Yen'),
('Bending waves during C. elegans locomotion are driven and organized by proprioceptive coupling',
'William Schafer'),
('Bending waves during C. elegans locomotion are driven and organized by proprioceptive coupling',
'George Whitesides'),
('Bending waves during C. elegans locomotion are driven and organized by proprioceptive coupling',
'Matthieu Wyart'),
('Bending waves during C. elegans locomotion are driven and organized by proprioceptive coupling',
'Dmitri Chklovskii'),
('Bending waves during C. elegans locomotion are driven and organized by proprioceptive coupling',
'Aravinthan Samuel'),
('Linear and non-linear receptive fields for optimal disparity estimation in natural stereo-images',
'Johannes Burge'),
('Linear and non-linear receptive fields for optimal disparity estimation in natural stereo-images',
'Wilson Geisler'),
('Human single-unit responses in the nucleus accumbens during a financial decision-making task. ',
'Shaun Patel'),
('Human single-unit responses in the nucleus accumbens during a financial decision-making task. ',
'Sameer Sheth'),
('Human single-unit responses in the nucleus accumbens during a financial decision-making task. ',
'Matt Mian'),
('Human single-unit responses in the nucleus accumbens during a financial decision-making task. ',
'John Gale'),
('Human single-unit responses in the nucleus accumbens during a financial decision-making task. ',
'Jason Gerrard'),
('Human single-unit responses in the nucleus accumbens during a financial decision-making task. ',
'Benjamin Greenberg'),
('Human single-unit responses in the nucleus accumbens during a financial decision-making task. ',
'Darin Dougherty'),
('Human single-unit responses in the nucleus accumbens during a financial decision-making task. ',
'Emad Eskandar'),
('Sound encoding in the neocortex by combinations of discrete activity patterns in local neuronal ens',
'Brice Bathellier'),
('Sound encoding in the neocortex by combinations of discrete activity patterns in local neuronal ens',
'Lyubov Ushakova'),
('Sound encoding in the neocortex by combinations of discrete activity patterns in local neuronal ens',
'Simon Rumpel'),
('Visual Coding in the primary visual cortex is enhanced during active navigation',
'Aman Saleem'),
('Visual Coding in the primary visual cortex is enhanced during active navigation',
'Asli Ayaz'),
('Visual Coding in the primary visual cortex is enhanced during active navigation',
'Kenneth Harris'),
('Visual Coding in the primary visual cortex is enhanced during active navigation',
'Kate Jeffery'),
('Visual Coding in the primary visual cortex is enhanced during active navigation',
'Matteo Carandini'),
('Neural dynamics of reaching following incomplete or incorrect planning.',
'Katherine Ames'),
('Neural dynamics of reaching following incomplete or incorrect planning.',
'Stephen Ryu'),
('Neural dynamics of reaching following incomplete or incorrect planning.',
'Krishna Shenoy'),
('Electrophysiological Foundations of Human Speech Production',
'Kristofer Bouchard'),
('Electrophysiological Foundations of Human Speech Production',
'Nima Mesgarani'),
('Electrophysiological Foundations of Human Speech Production',
'Miranda Babiak'),
('Electrophysiological Foundations of Human Speech Production',
'Keith Johnson'),
('Electrophysiological Foundations of Human Speech Production',
'Eddie Chang'),
('Noise correlations in population codes with finite information',
'Jeffrey Beck'),
('Noise correlations in population codes with finite information',
'Peter Latham'),
('Noise correlations in population codes with finite information',
'Alexandre Pouget'),
('A general, accurate, closed-form rate model derived as an approximation to spiking network dynamics',
'Evan Schaffer'),
('A general, accurate, closed-form rate model derived as an approximation to spiking network dynamics',
'Larry Abbott'),
('Separable Influences of Reward on Prefrontal Control of Attention and Target Selection',
'Alireza Soltani'),
('Separable Influences of Reward on Prefrontal Control of Attention and Target Selection',
'Bob Schafer'),
('Separable Influences of Reward on Prefrontal Control of Attention and Target Selection',
'Brittany Burrows'),
('Separable Influences of Reward on Prefrontal Control of Attention and Target Selection',
'Tirin Moore'),
('A unified neuronal population code fully explains human object recognition ',
'Najib Majaj'),
('A unified neuronal population code fully explains human object recognition ',
'Ha Hong'),
('A unified neuronal population code fully explains human object recognition ',
'Ethan Solomon'),
('A unified neuronal population code fully explains human object recognition ',
'James DiCarlo'),
('Linking physiology and perception in V2', 'Jeremy Freeman'),
('Linking physiology and perception in V2', 'Corey Ziemba'),
('Linking physiology and perception in V2', 'Tony Movshon'),
('Linking physiology and perception in V2', 'Eero Simoncelli'),
('Emergence of selectivity in recurrent random networks with balanced excitation and inhibition',
'Cengiz Pehlevan'),
('Emergence of selectivity in recurrent random networks with balanced excitation and inhibition',
'Haim Sompolinsky'),
('Changes in cortico-striatal connectivity strength during flexible sound-action associations in rats',
'Santiago Jaramillo'),
('Changes in cortico-striatal connectivity strength during flexible sound-action associations in rats',
'Petr Znamenskiy'),
('Changes in cortico-striatal connectivity strength during flexible sound-action associations in rats',
'Anthony Zador'),
('Do rats make optimal decisions under perceptual uncertainty when rewards are unstable?',
'Junya Hirokawa'),
('Do rats make optimal decisions under perceptual uncertainty when rewards are unstable?',
'Adam Kepecs'),
('Energy-conservation and generalized power-law for curved hand movements',
'Dongsung Huh'),
('Energy-conservation and generalized power-law for curved hand movements',
'Terrence Sejnowski'),
('Recovery of a shared spike-timing-dependent synaptic plasticity resource in natural spike trains',
'Jason Hunzinger'),
('Recovery of a shared spike-timing-dependent synaptic plasticity resource in natural spike trains',
'Victor Chan'),
('Recovery of a shared spike-timing-dependent synaptic plasticity resource in natural spike trains',
'Robert Froemke'),
('Noradrenergic control of long-term cortical synaptic receptive field plasticity',
'Ana Raquel Martins'),
('Noradrenergic control of long-term cortical synaptic receptive field plasticity',
'Robert Froemke'),
('What kinds of local motion signals are present in naturalistic movies?',
'Eyal Nitzany'),
('What kinds of local motion signals are present in naturalistic movies?',
'Jonathan Victor'),
('The incorporation of new information into prefrontal cortical activity after learning new tasks ',
'Ethan Meyers'),
('The incorporation of new information into prefrontal cortical activity after learning new tasks ',
'Xue-Lian Qi'),
('The incorporation of new information into prefrontal cortical activity after learning new tasks ',
'Christos Constantinidis'),
('On the \xc3\xacSite\xc3\xae and \xc3\xacSource\xc3\xae of Saccadic Countermanding: Reformulations of the Interactive Race Model',
'Motonori Yamaguchi'),
('On the \xc3\xacSite\xc3\xae and \xc3\xacSource\xc3\xae of Saccadic Countermanding: Reformulations of the Interactive Race Model',
'Gordon Logan'),
('On the \xc3\xacSite\xc3\xae and \xc3\xacSource\xc3\xae of Saccadic Countermanding: Reformulations of the Interactive Race Model',
'Thomas Palmeri'),
('On the \xc3\xacSite\xc3\xae and \xc3\xacSource\xc3\xae of Saccadic Countermanding: Reformulations of the Interactive Race Model',
'Jeffrey Schall'),
('Differences in sensitivity to neural timing among cortical areas',
'Yang Yang'),
('Differences in sensitivity to neural timing among cortical areas',
'Anthony Zador'),
('Sparse gamma rhythms arising via clustering in adapting neuronal networks',
'Zachary Kilpatrick'),
('Sparse gamma rhythms arising via clustering in adapting neuronal networks',
'Bard Ermentrout'),
('A winner-take-all mechanism of decision rule discrimination by the supplementary eye field',
'Supriya Ray'),
('A winner-take-all mechanism of decision rule discrimination by the supplementary eye field',
'Stephen Heinen'),
('Dissection of cortical microcircuits by single-neuron stimulation in vivo',
'Alex Kwan'),
('Dissection of cortical microcircuits by single-neuron stimulation in vivo',
'Yang Dan'),
('Maximally informative stimulus energies in the analysis of neural responses to natural signals',
'Kanaka Rajan'),
('Maximally informative stimulus energies in the analysis of neural responses to natural signals',
'William Bialek'),
('Feedback from retinal ganglion cells to the inner retina', 'Hiroki Asari'),
('Feedback from retinal ganglion cells to the inner retina',
'Markus Meister'),
('Sparse codes for speech predict spectrotemporal receptive fields in the Inferior Colliculus',
'Nicole Carlson'),
('Sparse codes for speech predict spectrotemporal receptive fields in the Inferior Colliculus',
'Vivienne Ming'),
('Sparse codes for speech predict spectrotemporal receptive fields in the Inferior Colliculus',
'Michael DeWeese'),
('Unconstrained Gaussian mixture models: the best models for natural image statistics?',
'Daniel Zoran'),
('Unconstrained Gaussian mixture models: the best models for natural image statistics?',
'Yair Weiss'),
('Modeling maladaptive decision-making in a rat version of the Iowa Gambling Task',
'Vincent Valton'),
('Modeling maladaptive decision-making in a rat version of the Iowa Gambling Task',
'Alain Marchand'),
('Modeling maladaptive decision-making in a rat version of the Iowa Gambling Task',
'Francoise Dellu-Hagedorn'),
('Modeling maladaptive decision-making in a rat version of the Iowa Gambling Task',
'Peggy Series'),
('Neural processing of social signals in the medial amygdala',
'Joseph Bergan'),
('Neural processing of social signals in the medial amygdala',
'Yoram Ben-Shaul'),
('Neural processing of social signals in the medial amygdala',
'Catherine Dulac'),
('Temporal aspect of odor stimuli and odor identity and intensity coding by Olfactory Receptor Neurons',
'Carlotta Martelli'),
('Temporal aspect of odor stimuli and odor identity and intensity coding by Olfactory Receptor Neurons',
'John R Carlson'),
('Temporal aspect of odor stimuli and odor identity and intensity coding by Olfactory Receptor Neurons',
'Thierry Emonet'),
('Implicit representation of high-dimensional stimulus distributions',
'Xaq Pitkow'),
('Dealing with sequential dependencies in psychophysical data',
'Ingo Fr\xc2\xb8nd'),
('Dealing with sequential dependencies in psychophysical data',
'Felix Wichmann'),
('Dealing with sequential dependencies in psychophysical data',
'Jakob Macke'),
('Phase precession in a network model of entorhinal cortex stellate cells without external pacemaker',
'Kay Thurley'),
('Phase precession in a network model of entorhinal cortex stellate cells without external pacemaker',
'Franziska Hellmundt'),
('Phase precession in a network model of entorhinal cortex stellate cells without external pacemaker',
'Christian Leibold'),
('Network Dynamics in Response to time-varying Inputs', 'Sven Jahnke'),
('Network Dynamics in Response to time-varying Inputs',
'Tatjana Tchumatchenko'),
('Fisher and Shannon information in finite neural populations',
'Stuart Yarrow'),
('Fisher and Shannon information in finite neural populations',
'Peggy Series'),
('A wide-field neuron enhances visual contrast sensitivity in the fly',
'John Tuthill'),
('A wide-field neuron enhances visual contrast sensitivity in the fly',
'Aljoscha Nern'),
('A wide-field neuron enhances visual contrast sensitivity in the fly',
'Gerald Rubin'),
('A wide-field neuron enhances visual contrast sensitivity in the fly',
'Michael Reiser'),
('Phase coherence of field potentials facilitates prediction of single-trial outcome in a memory task',
'Beth Lopour'),
('Phase coherence of field potentials facilitates prediction of single-trial outcome in a memory task',
'Abtine Tavassoli'),
('Phase coherence of field potentials facilitates prediction of single-trial outcome in a memory task',
'Itzhak Fried'),
('Phase coherence of field potentials facilitates prediction of single-trial outcome in a memory task',
'Dario Ringach'),
('Precise decoding of dynamical motion from a large retinal population',
'Olivier Marre'),
('Precise decoding of dynamical motion from a large retinal population',
'Gasper Tkacik'),
('Precise decoding of dynamical motion from a large retinal population',
'Michael Berry'),
('Dynamic networks in frontal cortex support the cognitive flexibility to switch between rules',
'Timothy Buschman'),
('Dynamic networks in frontal cortex support the cognitive flexibility to switch between rules',
'Eric Denovellis'),
('Dynamic networks in frontal cortex support the cognitive flexibility to switch between rules',
'Cinira Diogo'),
('Dynamic networks in frontal cortex support the cognitive flexibility to switch between rules',
'Daniel Bullock'),
('Dynamic networks in frontal cortex support the cognitive flexibility to switch between rules',
'Earl Miller'),
('Learning from positive and negative rewards in a spiking neural network model of basal ganglia',
'Jenia Jitsev'),
('Learning from positive and negative rewards in a spiking neural network model of basal ganglia',
'Abigail Morrison'),
('Learning from positive and negative rewards in a spiking neural network model of basal ganglia',
'Marc Tittgemeyer'),
('Decorrelation of retinal response to natural scenes by fixational eye movements',
'Irina Yonit Segal'),
('Decorrelation of retinal response to natural scenes by fixational eye movements',
'Michael Gedalin'),
('Decorrelation of retinal response to natural scenes by fixational eye movements',
'Ronen Segev'),
('Saccade-confounded image statistics explain visual crowding', 'Bosco Tjan'),
('Saccade-confounded image statistics explain visual crowding',
'Anirvan Nandy'),
('What does information seeking tell us about reinforcement learning?',
'Ethan Bromberg-Martin'),
('What does information seeking tell us about reinforcement learning?',
'Okihide Hikosaka'),
('Adaptive sampling of visual stimuli in cortical neurons', 'Jens Kremkow'),
('Adaptive sampling of visual stimuli in cortical neurons', 'Jianzhong Jin'),
('Adaptive sampling of visual stimuli in cortical neurons', 'Yushi Wang'),
('Adaptive sampling of visual stimuli in cortical neurons', 'Reza Lashgari'),
('Adaptive sampling of visual stimuli in cortical neurons',
'Stanley Jose Komban'),
('Adaptive sampling of visual stimuli in cortical neurons',
'Jose-Manuel Alonso'),
('Retinal metric: a stimulus distance measure derived from population neural responses',
'Gasper Tkacik'),
('Retinal metric: a stimulus distance measure derived from population neural responses',
'Einat Granot-Atedgi'),
('Retinal metric: a stimulus distance measure derived from population neural responses',
'Ronen Segev'),
('Retinal metric: a stimulus distance measure derived from population neural responses',
'Elad Schneidman'),
('Corticostriatal projections mediate auditory decisions', 'Petr Znamenskiy'),
('Corticostriatal projections mediate auditory decisions', 'Anthony Zador'),
('Retinal adaptation and invariance to changes in higher-order stimulus statistics',
'Gasper Tkacik'),
('Retinal adaptation and invariance to changes in higher-order stimulus statistics',
'Anandamohan Ghosh'),
('Retinal adaptation and invariance to changes in higher-order stimulus statistics',
'Elad Schneidman'),
('Retinal adaptation and invariance to changes in higher-order stimulus statistics',
'Ronen Segev'),
('Biologically plausible learning of sparse-coding dictionary in a neural network',
'Ziqiang Wei'),
('Biologically plausible learning of sparse-coding dictionary in a neural network',
'Tao Hu'),
('Biologically plausible learning of sparse-coding dictionary in a neural network',
'Dmitri Chklovskii'),
('Developmental regulation of sensory processing by spontaneous cortical activity.',
'Matthew Colonnese'),
('Transient motion analysis reveals differential motion dynamics of synaptic vesicle populations. ',
'Ziv Rotman'),
('Transient motion analysis reveals differential motion dynamics of synaptic vesicle populations. ',
'Amy Peng'),
('Transient motion analysis reveals differential motion dynamics of synaptic vesicle populations. ',
'Vitaly Klyachko'),
('Decision-making and attention in a sampling-based neural representation',
'Ralf Haefner'),
('Decision-making and attention in a sampling-based neural representation',
'Pietro Berkes'),
('Decision-making and attention in a sampling-based neural representation',
'Jozsef Fiser'),
('Loom sensitive neurons link computation to action in the Drosophila visual system',
'Saskia de Vries'),
('Loom sensitive neurons link computation to action in the Drosophila visual system',
'Thomas Clandinin'),
('A Model of I-Wave Generation during Transcranial Magnetic Stimulation (TMS)',
'Catalin Rusu'),
('A Model of I-Wave Generation during Transcranial Magnetic Stimulation (TMS)',
'Ulf Ziemann'),
('A Model of I-Wave Generation during Transcranial Magnetic Stimulation (TMS)',
'Jochen Triesch'),
('BMI learning results in highly precise cell-specific coherence in corticostriatal networks',
'Aaron Koralek'),
('BMI learning results in highly precise cell-specific coherence in corticostriatal networks',
'Jose Carmena'),
('Spike time-dependent plasticity can organize a recurrent network to generate grid cell responses',
'John Widloski'),
('Spike time-dependent plasticity can organize a recurrent network to generate grid cell responses',
'Ila Fiete'),
('Phase coding of trajectories by grid cells in unconstrained environments',
'Jason Climer'),
('Phase coding of trajectories by grid cells in unconstrained environments',
'Michael Hasselmo'),
('Dynamics of Gap Junctions Inspired Networks ', 'Merav Stern'),
('Dynamics of Gap Junctions Inspired Networks ', 'Yosef Yarom'),
('Dynamics of Gap Junctions Inspired Networks ', 'Larry Abbott'),
('Selectivity of neurons in area MT to complex motion features\xc2\xa8',
'Yuwei Cui'),
('Selectivity of neurons in area MT to complex motion features\xc2\xa8',
'Liu Liu'),
('Selectivity of neurons in area MT to complex motion features\xc2\xa8',
'Farhan Khawaja'),
('Selectivity of neurons in area MT to complex motion features\xc2\xa8',
'Christopher Pack'),
('Selectivity of neurons in area MT to complex motion features\xc2\xa8',
'Daniel Butts'),
('Fast estimation of non-smooth non-stationary receptive fields',
'Eftychios Pnevmatikakis'),
('Fast estimation of non-smooth non-stationary receptive fields',
'Liam Paninski'),
('How prior probability influences decision making: A unifying probabilistic model',
'Yanping Huang'),
('How prior probability influences decision making: A unifying probabilistic model',
'Abram Friesen'),
('How prior probability influences decision making: A unifying probabilistic model',
'Rajesh Rao'),
('Short-term memory with balanced excitation and inhibition based on derivative feedback control',
'Sukbin Lim'),
('Short-term memory with balanced excitation and inhibition based on derivative feedback control',
'Mark Goldman'),
('Presaccadic modulation of visual responses in area V4 measured simultaneously across cortical layers',
'Nicholas Steinmetz'),
('Presaccadic modulation of visual responses in area V4 measured simultaneously across cortical layers',
'Tirin Moore'),
('Short-Term Plasticity Optimizes Synaptic Information Transmission',
'Ziv Rotman'),
('Short-Term Plasticity Optimizes Synaptic Information Transmission',
'Panyue Deng'),
('Short-Term Plasticity Optimizes Synaptic Information Transmission',
'Vitaly Klyachko'),
('Semantic organization of a neural population codebook and accurate decoding using a neural thesaurus',
'Elad Ganmor'),
('Semantic organization of a neural population codebook and accurate decoding using a neural thesaurus',
'Ronen Segev'),
('Semantic organization of a neural population codebook and accurate decoding using a neural thesaurus',
'Elad Schneidman'),
('Optimal neural tuning for arbitrary stimulus priors', 'Zhuo Wang'),
('Optimal neural tuning for arbitrary stimulus priors', 'Kevin Shi'),
('Optimal neural tuning for arbitrary stimulus priors', 'Alan Stocker'),
('Optimal neural tuning for arbitrary stimulus priors', 'Daniel Lee'),
('Are grid-cell responses very low-dimensional?', 'KiJung Yoon'),
('Are grid-cell responses very low-dimensional?', 'Caswell Barry'),
('Are grid-cell responses very low-dimensional?', 'Michael Buice'),
('Are grid-cell responses very low-dimensional?', 'Neil Burgess'),
('Are grid-cell responses very low-dimensional?', 'Ila Fiete'),
('The combined micro-organization of orientation and spatial frequency tuning in primate V1',
'Ian Nauhaus'),
('The combined micro-organization of orientation and spatial frequency tuning in primate V1',
'Kristina Nielsen'),
('The combined micro-organization of orientation and spatial frequency tuning in primate V1',
'Anita Disney'),
('The combined micro-organization of orientation and spatial frequency tuning in primate V1',
'Edward Callaway'),
('Regularisation reveals smooth dynamics of shared variability in neural population activity',
'Lars Buesing'),
('Regularisation reveals smooth dynamics of shared variability in neural population activity',
'Jakob Macke'),
('Regularisation reveals smooth dynamics of shared variability in neural population activity',
'Maneesh Sahani'),
('Fano factor constancy and scale-invariant sampling in recurrent networks with probabilistic synapses',
'Ruben Moreno'),
('The simultaneous silence of neurons explains higher-order interactions in ensemble spiking activity',
'Hideaki Shimazaki'),
('The simultaneous silence of neurons explains higher-order interactions in ensemble spiking activity',
'Kolia Sadeghi'),
('The simultaneous silence of neurons explains higher-order interactions in ensemble spiking activity',
'Yuji Ikegaya'),
('The simultaneous silence of neurons explains higher-order interactions in ensemble spiking activity',
'Taro Toyoizumi'),
('Inhibition of return in natural vision revealed by non-parametric analysis of gaze',
'Paul Bays'),
('Inhibition of return in natural vision revealed by non-parametric analysis of gaze',
'Masud Husain'),
('Scale-invariant effective connectivity in spontaneously active monkey V1 cortical networks ',
'I\xc3\x92igo Romero Arandia'),
('Scale-invariant effective connectivity in spontaneously active monkey V1 cortical networks ',
'Jan Drugowitsch'),
('Scale-invariant effective connectivity in spontaneously active monkey V1 cortical networks ',
'Adam Kohn'),
('Scale-invariant effective connectivity in spontaneously active monkey V1 cortical networks ',
'Alexandre Pouget'),
('Scale-invariant effective connectivity in spontaneously active monkey V1 cortical networks ',
'Ruben Moreno'),
('A computational role for noise in the cortex', 'David Barrett'),
('A computational role for noise in the cortex', 'Peter Latham'),
('Multisensory integration in the rat \xc3\xb1 behavioral benefits and neural correlates in parietal cortex',
'Stephanie Gleiss'),
('Multisensory integration in the rat \xc3\xb1 behavioral benefits and neural correlates in parietal cortex',
'Michael T. Lippert'),
('Multisensory integration in the rat \xc3\xb1 behavioral benefits and neural correlates in parietal cortex',
'Kentaroh Takagaki'),
('Multisensory integration in the rat \xc3\xb1 behavioral benefits and neural correlates in parietal cortex',
'Nikos K. Logothetis'),
('Multisensory integration in the rat \xc3\xb1 behavioral benefits and neural correlates in parietal cortex',
'Frank W. Ohl'),
('Multisensory integration in the rat \xc3\xb1 behavioral benefits and neural correlates in parietal cortex',
'Christoph Kayser'),
('A mechanism for value-guided choice based on the excitation-inhibition balance in prefrontal cortex',
'Gerhard Jocham'),
('A mechanism for value-guided choice based on the excitation-inhibition balance in prefrontal cortex',
'Laurence Hunt'),
('A mechanism for value-guided choice based on the excitation-inhibition balance in prefrontal cortex',
'Jamie Near'),
('A mechanism for value-guided choice based on the excitation-inhibition balance in prefrontal cortex',
'Tim Behrens'),
('Population decoding algorithms for change detection and discrimination',
'Nicholas Price'),
('Population decoding algorithms for change detection and discrimination',
'Richard Born'),
('Task set switching: dissecting ideal observer models and their approximation ',
'Jan Drugowitsch'),
('Task set switching: dissecting ideal observer models and their approximation ',
'Etienne Koechlin'),
('Odors sum linearly in time in the rat olfactory bulb', 'Priyanka Gupta'),
('Odors sum linearly in time in the rat olfactory bulb', 'Upinder S. Bhalla'),
('Neurally plausible reinforcement learning of memory representations in delayed-response tasks',
'Jaldert Rombouts'),
('Neurally plausible reinforcement learning of memory representations in delayed-response tasks',
'Sander Bohte'),
('Neurally plausible reinforcement learning of memory representations in delayed-response tasks',
'Pieter Roelfsema'),
('Analysing fixations using latent Gaussian fields',
'Simon Barthelm\xc3\x88'),
('Analysing fixations using latent Gaussian fields', 'Hans Trukenbrod'),
('Analysing fixations using latent Gaussian fields', 'Ralf Engbert'),
('Analysing fixations using latent Gaussian fields', 'Felix Wichmann'),
('Object completion along the ventral visual stream: neural signatures and computational mechanisms',
'Dean Wyatte'),
('Object completion along the ventral visual stream: neural signatures and computational mechanisms',
'Hanlin Tang'),
('Object completion along the ventral visual stream: neural signatures and computational mechanisms',
'Calin Buia'),
('Object completion along the ventral visual stream: neural signatures and computational mechanisms',
'Joseph Madsen'),
('Object completion along the ventral visual stream: neural signatures and computational mechanisms',
'Randall OReilly'),
('Object completion along the ventral visual stream: neural signatures and computational mechanisms',
'Gabriel Kreiman'),
('A stable, long-range motor pattern in the songbird brain',
'Jeffrey Markowitz'),
('A stable, long-range motor pattern in the songbird brain',
'Timothy Gardner'),
('Slow dynamics and high variability in balanced networks with clustered connections',
'Ashok Litwin-Kumar'),
('Slow dynamics and high variability in balanced networks with clustered connections',
'Brent Doiron'),
('Improving individual classification learning using a predictive maximum entropy model',
'Yarden Cohen'),
('Improving individual classification learning using a predictive maximum entropy model',
'Elad Schneidman'),
('Adaptive sharpening of tuning in the auditory system of the cricket',
'Jan Clemens'),
('Adaptive sharpening of tuning in the auditory system of the cricket',
'Florian Rau'),
('Adaptive sharpening of tuning in the auditory system of the cricket',
'K. Jannis Hildebrandt'),
('Adaptive sharpening of tuning in the auditory system of the cricket',
'R. Matthias Hennig'),
('Quadratic networks for invariant perceptual discrimination', 'Yoram Burak'),
('Quadratic networks for invariant perceptual discrimination',
'SueYeon Chung'),
('Quadratic networks for invariant perceptual discrimination',
'Haim Sompolinsky'),
('Perceptual relevance of neurally-inspired natural image models evaluated via contour discrimination',
'Holly Gerhard'),
('Perceptual relevance of neurally-inspired natural image models evaluated via contour discrimination',
'Matthias Bethge'),
('The correlation structure induced by fluctuations in attention',
'Alexander Ecker'),
('The correlation structure induced by fluctuations in attention',
'Philipp Berens'),
('The correlation structure induced by fluctuations in attention',
'Andreas Tolias'),
('The correlation structure induced by fluctuations in attention',
'Matthias Bethge'),
('Compressive spatial summation: a characteristic of extrastriate computation',
'Kendrick Kay'),
('Compressive spatial summation: a characteristic of extrastriate computation',
'Jonathan Winawer'),
('Compressive spatial summation: a characteristic of extrastriate computation',
'Aviv Mezer'),
('Compressive spatial summation: a characteristic of extrastriate computation',
'Brian Wandell'),
('Semi-Markov models of the molecular psychophysics of brain stimulation reward',
'Ritwik Niyogi'),
('Semi-Markov models of the molecular psychophysics of brain stimulation reward',
'Yannick-Andre Breton'),
('Semi-Markov models of the molecular psychophysics of brain stimulation reward',
'Kent Conover'),
('Semi-Markov models of the molecular psychophysics of brain stimulation reward',
'Rebecca Solomon'),
('Semi-Markov models of the molecular psychophysics of brain stimulation reward',
'Peter Shizgal'),
('Semi-Markov models of the molecular psychophysics of brain stimulation reward',
'Peter Dayan'),
('Combinatorial neural codes from a mathematical coding theory perspective',
'Katherine Morrison'),
('Combinatorial neural codes from a mathematical coding theory perspective',
'Vladimir Itskov'),
('Combinatorial neural codes from a mathematical coding theory perspective',
'Zachary Roth'),
('Combinatorial neural codes from a mathematical coding theory perspective',
'Judy Walker'),
('Combinatorial neural codes from a mathematical coding theory perspective',
'Carina Curto'),
('Stereotyped and diverse computations in third order olfactory circuits',
'Mehmet Fisek'),
('Stereotyped and diverse computations in third order olfactory circuits',
'Rachel Wilson'),
('Artificial synchronization across sensory cortical area is sufficient for behavioral discrimination',
'Hachi Manzur'),
('Artificial synchronization across sensory cortical area is sufficient for behavioral discrimination',
'Joel Alvarez'),
('Artificial synchronization across sensory cortical area is sufficient for behavioral discrimination',
'Cecilia Babul'),
('Artificial synchronization across sensory cortical area is sufficient for behavioral discrimination',
'Pedro Maldonado'),
('Similarity of spontaneous and sensory-evoked activity in cortex does not imply learning',
'Michael Okun'),
('Similarity of spontaneous and sensory-evoked activity in cortex does not imply learning',
'Pierre Yger'),
('Similarity of spontaneous and sensory-evoked activity in cortex does not imply learning',
'Florian Gerard-Mercier'),
('Similarity of spontaneous and sensory-evoked activity in cortex does not imply learning',
'Matteo Carandini'),
('Similarity of spontaneous and sensory-evoked activity in cortex does not imply learning',
'Kenneth Harris'),
('Modeling and analysis of rhythm generation mechanisms in excitatory neural networks',
'Yaroslav Molkov'),
('Modeling and analysis of rhythm generation mechanisms in excitatory neural networks',
'Patrick Jasinski'),
('Modeling and analysis of rhythm generation mechanisms in excitatory neural networks',
'Natalia Shevtsova'),
('Modeling and analysis of rhythm generation mechanisms in excitatory neural networks',
'Jeffrey Smith'),
('Modeling and analysis of rhythm generation mechanisms in excitatory neural networks',
'Ilya Rybak'),
('Phase precession through intrinsic neural resonance in continuous attractor models of grid cells',
'Sean Trettel'),
('Phase precession through intrinsic neural resonance in continuous attractor models of grid cells',
'Ila Fiete'),
('Internal model estimation for feedback control in brain-computer interfaces',
'Matthew Golub'),
('Internal model estimation for feedback control in brain-computer interfaces',
'Steven Chase'),
('Internal model estimation for feedback control in brain-computer interfaces',
'Byron Yu'),
('How does pacemaking in the globus pallidus affect striatal microcircuits?',
'Arpiar Saunders'),
('How does pacemaking in the globus pallidus affect striatal microcircuits?',
'Kevin Beier'),
('How does pacemaking in the globus pallidus affect striatal microcircuits?',
'Bernardo Sabatini'),
('Multisensory calibration with external feedback is contingent on cue-reliability',
'Adam Zaidel'),
('Multisensory calibration with external feedback is contingent on cue-reliability',
'Mandy Turner'),
('Multisensory calibration with external feedback is contingent on cue-reliability',
'Dora Angelaki'),
('Synaptic scaling generically stabilizes circuit connectivity',
'Christian Tetzlaff'),
('Synaptic scaling generically stabilizes circuit connectivity',
'Christoph Kolodziejski'),
('Synaptic scaling generically stabilizes circuit connectivity',
'Marc Timme'),
('Synaptic scaling generically stabilizes circuit connectivity',
'Florentin W\xcb\x86rg\xcb\x86tter'),
('Memory formation, recall and forgetting in neuronal networks',
'Christian Tetzlaff'),
('Memory formation, recall and forgetting in neuronal networks',
'Christoph Kolodziejski'),
('Memory formation, recall and forgetting in neuronal networks',
'Marc Timme'),
('Memory formation, recall and forgetting in neuronal networks',
'Florentin W\xcb\x86rg\xcb\x86tter'),
('Performing noise reduction using realistic spectro-temporal receptive fields as modulation filters',
'Tyler Lee'),
('Performing noise reduction using realistic spectro-temporal receptive fields as modulation filters',
'R Channing Moore'),
('Performing noise reduction using realistic spectro-temporal receptive fields as modulation filters',
'Frederic Theunissen'),
('Representation of multiple stimuli in the macaque middle face patch.',
'Akinori Ebihara'),
('Representation of multiple stimuli in the macaque middle face patch.',
'Winrich Freiwald'),
('Probabilistic palimpsest memory: multiplicity, binding and coverage in visual short-term memory',
'Loic Matthey'),
('Probabilistic palimpsest memory: multiplicity, binding and coverage in visual short-term memory',
'Paul Bays'),
('Probabilistic palimpsest memory: multiplicity, binding and coverage in visual short-term memory',
'Peter Dayan'),
('Significance of graph theoretic measures in predicting neuronal network activity',
'Tuomo M\xe2\x80\xb0ki-Marttunen'),
('Significance of graph theoretic measures in predicting neuronal network activity',
'Jugoslava Acimovic'),
('Significance of graph theoretic measures in predicting neuronal network activity',
'Keijo Ruohonen'),
('Significance of graph theoretic measures in predicting neuronal network activity',
'Marja-Leena Linne'),
('The role of nonlinear phase processing in photoreceptors',
'Uwe Friederich'),
('The role of nonlinear phase processing in photoreceptors', 'S.A. Billings'),
('The role of nonlinear phase processing in photoreceptors', 'Mikko Juusola'),
('The role of nonlinear phase processing in photoreceptors', 'Daniel Coca'),
('Fluctuations in attractor networks', 'Michael Buice'),
('Fluctuations in attractor networks', 'Ila Fiete'),
('Error-driven learning within the Hippocampus; theta rhythm, and novelty based learning signals',
'Nick Ketz'),
('Error-driven learning within the Hippocampus; theta rhythm, and novelty based learning signals',
'Srinimisha Morkonda'),
('Error-driven learning within the Hippocampus; theta rhythm, and novelty based learning signals',
'Randall OReilly'),
('Predicting functional connectivity in primary visual cortex',
'David Schulz'),
('Predicting functional connectivity in primary visual cortex',
'Maneesh Sahani'),
('Predicting functional connectivity in primary visual cortex',
'Matteo Carandini'),
('Active self-organization of disordered arrangements of orientation preference in cortical networks',
'Juan Florez Weidinger'),
('Active self-organization of disordered arrangements of orientation preference in cortical networks',
'Wolfgang Keil'),
('Active self-organization of disordered arrangements of orientation preference in cortical networks',
'Dmitry Tsigankov'),
('Active self-organization of disordered arrangements of orientation preference in cortical networks',
'Michael Schnabel'),
('Active self-organization of disordered arrangements of orientation preference in cortical networks',
'Matthias Kaschube'),
('Active self-organization of disordered arrangements of orientation preference in cortical networks',
'Fred Wolf'),
('Response of a Hodgkin-Huxley model VCN octopus cell to sounds with pitch',
'Brian Flynn'),
('Response of a Hodgkin-Huxley model VCN octopus cell to sounds with pitch',
'Laurel Carney'),
('Statistics of junctions in natural images', 'James Golden'),
('Statistics of junctions in natural images', 'Kedarnath Vilankar'),
('Statistics of junctions in natural images', 'Damon Chandler'),
('Statistics of junctions in natural images', 'David Field'),
('A Population Approach to Coding and Decoding with Adapting Neurons',
'Richard Naud'),
('A Population Approach to Coding and Decoding with Adapting Neurons',
'Wulfram Gerstner'),
('Sequences and the emergence of continuous attractor networks',
'Alan Veliz-Cuba'),
('Sequences and the emergence of continuous attractor networks',
'Carina Curto'),
('Sequences and the emergence of continuous attractor networks',
'Vladimir Itskov'),
('Filtering and recurrent connectivity shape higher-order correlations in retinal circuits',
'Andrea Barreiro'),
('Filtering and recurrent connectivity shape higher-order correlations in retinal circuits',
'Julijana Gjorgjieva'),
('Filtering and recurrent connectivity shape higher-order correlations in retinal circuits',
'Fred Rieke'),
('Filtering and recurrent connectivity shape higher-order correlations in retinal circuits',
'Eric Shea-Brown'),
('On the precision of sensory encoding in visual search', 'Helga Mazyar'),
('On the precision of sensory encoding in visual search',
'Ronald Van Den Berg'),
('On the precision of sensory encoding in visual search', 'Wei Ji Ma'),
('Embodied Exploration', 'Daniel Little'),
('Embodied Exploration', 'Fritz Sommer'),
('A neural system for motor planning and control ', 'Wayne Greg'),
('A neural system for motor planning and control ', 'Larry Abbott'),
('Internal representations of temporal statistics and feedback calibrate sensorimotor interval timing',
'Luigi Acerbi'),
('Internal representations of temporal statistics and feedback calibrate sensorimotor interval timing',
'Daniel Wolpert'),
('Internal representations of temporal statistics and feedback calibrate sensorimotor interval timing',
'Sethu Vijayakumar'),
('Attention, Information, Normalization and Correlations',
'Vikranth Bejjanki'),
('Attention, Information, Normalization and Correlations', 'Jeffrey Beck'),
('Attention, Information, Normalization and Correlations',
'Alexandre Pouget'),
('An objective approach to learning movement-related features from local field potentials',
'Kelvin So'),
('An objective approach to learning movement-related features from local field potentials',
'Michael Gastpar'),
('An objective approach to learning movement-related features from local field potentials',
'Jose Carmena'),
('On the interaction of excitatory and inhibitory synaptic plasticity',
'Henning Sprekeler'),
('On the interaction of excitatory and inhibitory synaptic plasticity',
'Claudia Clopath'),
('On the interaction of excitatory and inhibitory synaptic plasticity',
'Tim P. Vogels'),
('Adaptive Gating of Information Flow to Cortex', 'He Zheng'),
('Adaptive Gating of Information Flow to Cortex', 'Douglas Ollerenshaw'),
('Adaptive Gating of Information Flow to Cortex', 'Bilal Bari'),
('Adaptive Gating of Information Flow to Cortex', 'Qi Wang'),
('Adaptive Gating of Information Flow to Cortex', 'Garrett Stanley'),
('Information theoretic limits on performance in short-term memory tasks',
'O. Ozan Koyluoglu'),
('Information theoretic limits on performance in short-term memory tasks',
'Ila Fiete'),
('Spatial properties of the hippocampal theta rhythm in the hippocampus',
'Gautam Agarwal'),
('Spatial properties of the hippocampal theta rhythm in the hippocampus',
'Gyorgy Buzsaki'),
('Spatial properties of the hippocampal theta rhythm in the hippocampus',
'Fritz Sommer'),
('An optimal control perspective of the competition hypothesis',
'Vasileios Christopoulos'),
('An optimal control perspective of the competition hypothesis',
'Paul Schrater'),
('Constructive Episodic Memory as Statistical Inference', 'Jedidiah Carlson'),
('Constructive Episodic Memory as Statistical Inference', 'Paul Schrater'),
('Constructive Episodic Memory as Statistical Inference', 'Adam Johnson'),
('Computing sparse representations using a network of integrate-and-fire neurons',
'Tao Hu'),
('Computing sparse representations using a network of integrate-and-fire neurons',
'Alexander Genkin'),
('Computing sparse representations using a network of integrate-and-fire neurons',
'Dmitri Chklovskii'),
('Evidence for incidental structured learning and abstraction in cognitive reinforcement learning',
'Anne Collins'),
('Evidence for incidental structured learning and abstraction in cognitive reinforcement learning',
'Michael J Frank'),
('Effects of local orientation on large-scale representations in V1 bias perceived global shape',
'Melchi Michel'),
('Effects of local orientation on large-scale representations in V1 bias perceived global shape',
'Yuzhi Chen'),
('Effects of local orientation on large-scale representations in V1 bias perceived global shape',
'Wilson Geisler'),
('Effects of local orientation on large-scale representations in V1 bias perceived global shape',
'Eyal Seidemann'),
('Diverse Network Representations of Risky Decision-Making in mPFC ',
'Shirin Hadizadeh'),
('Diverse Network Representations of Risky Decision-Making in mPFC ',
'Nina C. Di Pietro'),
('Diverse Network Representations of Risky Decision-Making in mPFC ',
'James M. Hyman'),
('Diverse Network Representations of Risky Decision-Making in mPFC ',
'Stan Floresco'),
('Diverse Network Representations of Risky Decision-Making in mPFC ',
'Eldon Emberly'),
('Diverse Network Representations of Risky Decision-Making in mPFC ',
'Jeremy K. Seamans'),
('Thalamic Synchrony and Visual Orientation Information Transmission To Cortex',
'Sean Kelly'),
('Thalamic Synchrony and Visual Orientation Information Transmission To Cortex',
'Jianzhong Jin'),
('Thalamic Synchrony and Visual Orientation Information Transmission To Cortex',
'Yushi Wang'),
('Thalamic Synchrony and Visual Orientation Information Transmission To Cortex',
'Qi Wang'),
('Thalamic Synchrony and Visual Orientation Information Transmission To Cortex',
'Michael Black'),
('Thalamic Synchrony and Visual Orientation Information Transmission To Cortex',
'Jose-Manuel Alonso'),
('Thalamic Synchrony and Visual Orientation Information Transmission To Cortex',
'Garrett Stanley'),
('Suppressing Actions in the Basal Ganglia', 'Robert Schmidt'),
('Suppressing Actions in the Basal Ganglia', 'Daniel Leventhal'),
('Suppressing Actions in the Basal Ganglia', 'Jeff Pettibone'),
('Suppressing Actions in the Basal Ganglia', 'Alaina Case'),
('Suppressing Actions in the Basal Ganglia', 'Joshua Berke'),
('The neural mechanisms involved in finding specific objects and switching between targets',
'Marino Pagan'),
('The neural mechanisms involved in finding specific objects and switching between targets',
'Luke Urban'),
('The neural mechanisms involved in finding specific objects and switching between targets',
'Margot Wohl'),
('The neural mechanisms involved in finding specific objects and switching between targets',
'Nicole Rust'),
('Critical exponents derived for neuronal avalanches in alert non-human primate ',
'Shan Yu'),
('Critical exponents derived for neuronal avalanches in alert non-human primate ',
'Hongdian Yang'),
('Critical exponents derived for neuronal avalanches in alert non-human primate ',
'Dietmar Plenz'),
('How criticality of visuo-motor control behaviour depends on task objective.',
'Klaus Pawelzik'),
('How criticality of visuo-motor control behaviour depends on task objective.',
'Felix Patzelt'),
('Neurons in macaque area CIP respect the geometric topology of 3D object orientation',
'Ari Rosenberg'),
('Neurons in macaque area CIP respect the geometric topology of 3D object orientation',
'Noah Cowan'),
('Neurons in macaque area CIP respect the geometric topology of 3D object orientation',
'Dora Angelaki'),
('Neuronal activity in anterior cingulate cortex predicts susceptibility to distraction ',
'R Ebitz'),
('Neuronal activity in anterior cingulate cortex predicts susceptibility to distraction ',
'Michael Platt'),
('Identifying endogenous rhythmic spatio-temporal patterns in micro-electrode array recordings',
'Michel Besserve'),
('Identifying endogenous rhythmic spatio-temporal patterns in micro-electrode array recordings',
'Fanis Panagiotaropoulos'),
('Identifying endogenous rhythmic spatio-temporal patterns in micro-electrode array recordings',
'Britni Crocker'),
('Identifying endogenous rhythmic spatio-temporal patterns in micro-electrode array recordings',
'Vishal Kapoor'),
('Identifying endogenous rhythmic spatio-temporal patterns in micro-electrode array recordings',
'Andreas Tolias'),
('Identifying endogenous rhythmic spatio-temporal patterns in micro-electrode array recordings',
'Stefano Panzeri'),
('Identifying endogenous rhythmic spatio-temporal patterns in micro-electrode array recordings',
'Nikos K. Logothetis'),
('Direction selectivity within large receptive fields in a three-layer visual cortex',
'Jeff Pobst'),
('Direction selectivity within large receptive fields in a three-layer visual cortex',
'David Morton'),
('Direction selectivity within large receptive fields in a three-layer visual cortex',
'Ralf Wessel'),
('An open-source system for combining multi-electrode recording with closed-loop feedback',
'Joshua Siegle'),
('An open-source system for combining multi-electrode recording with closed-loop feedback',
'Jakob Voigts'),
('An open-source system for combining multi-electrode recording with closed-loop feedback',
'Stuart Layton'),
('An open-source system for combining multi-electrode recording with closed-loop feedback',
'Caleb Kemere'),
('An open-source system for combining multi-electrode recording with closed-loop feedback',
'Loren Frank'),
('An open-source system for combining multi-electrode recording with closed-loop feedback',
'Christopher Moore'),
('An open-source system for combining multi-electrode recording with closed-loop feedback',
'Matthew Wilson'),
('Dimensionality in motor cortex: differences between models and experiment',
'Jeffrey Seely'),
('Dimensionality in motor cortex: differences between models and experiment',
'Matthew Kaufman'),
('Dimensionality in motor cortex: differences between models and experiment',
'John Cunningham'),
('Dimensionality in motor cortex: differences between models and experiment',
'Stephen Ryu'),
('Dimensionality in motor cortex: differences between models and experiment',
'Krishna Shenoy'),
('Dimensionality in motor cortex: differences between models and experiment',
'Mark Churchland'),
('Bridging the gap: A third time-scale between plasticity and homeostasis?',
'Friedemann Zenke'),
('Bridging the gap: A third time-scale between plasticity and homeostasis?',
'Henning Sprekeler'),
('Bridging the gap: A third time-scale between plasticity and homeostasis?',
'Tim P. Vogels'),
('Bridging the gap: A third time-scale between plasticity and homeostasis?',
'Wulfram Gerstner'),
('Evidence for Attention-dependent inactivation of Sodium Channels',
'Emily Anderson'),
('Evidence for Attention-dependent inactivation of Sodium Channels',
'Jude Mitchell'),
('Evidence for Attention-dependent inactivation of Sodium Channels',
'John Reynolds'),
('Circuit- and systems-level contributions to successful memory retrieval in the hippocampus',
'Cristina Savin'),
('Circuit- and systems-level contributions to successful memory retrieval in the hippocampus',
'Peter Dayan'),
('Circuit- and systems-level contributions to successful memory retrieval in the hippocampus',
'Mate Lengyel'),
('Fitting receptive fields in V1 and V2 as linear combinations of nonlinear subunits',
'Brett Vintch'),
('Fitting receptive fields in V1 and V2 as linear combinations of nonlinear subunits',
'Andrew Zaharia'),
('Fitting receptive fields in V1 and V2 as linear combinations of nonlinear subunits',
'Tony Movshon'),
('Fitting receptive fields in V1 and V2 as linear combinations of nonlinear subunits',
'Eero Simoncelli'),
('Continuous Time Infomax Models of Oculomotor Control', 'Walter Talbott'),
('Continuous Time Infomax Models of Oculomotor Control', 'He Huang'),
('Continuous Time Infomax Models of Oculomotor Control', 'Javier Movellan'),
('A mobile imaging system to monitor the cortex in behaving rodents ',
'Joon Hyuk Park'),
('A mobile imaging system to monitor the cortex in behaving rodents ',
'Ahmad Osman'),
('A mobile imaging system to monitor the cortex in behaving rodents ',
'Jelena Platisa'),
('A mobile imaging system to monitor the cortex in behaving rodents ',
'Eugenio Culurciello'),
('A mobile imaging system to monitor the cortex in behaving rodents ',
'Vincent Pieribone'),
('A feedback error learning approach to online-adaptive decoding for dynamic prosthetic arm control',
'Matthew Bodenhamer'),
('A feedback error learning approach to online-adaptive decoding for dynamic prosthetic arm control',
'Francis Willett'),
('A feedback error learning approach to online-adaptive decoding for dynamic prosthetic arm control',
'Aaron Suminski'),
('A feedback error learning approach to online-adaptive decoding for dynamic prosthetic arm control',
'Nicholas Hatsopoulos'),
('A feedback error learning approach to online-adaptive decoding for dynamic prosthetic arm control',
'Andrew Fagg'),
('Event timing in associative learning: From biochemical reaction dynamics to behavioral observations',
'Ayse Yarali'),
('Event timing in associative learning: From biochemical reaction dynamics to behavioral observations',
'Johannes Nehrkorn'),
('Event timing in associative learning: From biochemical reaction dynamics to behavioral observations',
'Hiromu Tanimoto'),
('Event timing in associative learning: From biochemical reaction dynamics to behavioral observations',
'Andreas V.M. Herz'),
('Cerebellar granule cell activity during behavior: dynamics in light of the adaptive filter model',
'Sherika Sylvester'),
('Cerebellar granule cell activity during behavior: dynamics in light of the adaptive filter model',
'Kayvon Daie'),
('Cerebellar granule cell activity during behavior: dynamics in light of the adaptive filter model',
'Melanie Lee'),
('Cerebellar granule cell activity during behavior: dynamics in light of the adaptive filter model',
'Mark Goldman'),
('Cerebellar granule cell activity during behavior: dynamics in light of the adaptive filter model',
'Emre Aksay'),
('Infinite-horizon optimal feedback control models for biological systems: application to target jump',
'Zhai Fangwen'),
('Infinite-horizon optimal feedback control models for biological systems: application to target jump',
'Li Zhaoping'),
('Infinite-horizon optimal feedback control models for biological systems: application to target jump',
'Ning Qian'),
('Dendritic processing underlying temporal integration ', 'Melanie Lee'),
('Dendritic processing underlying temporal integration ', 'Kayvon Daie'),
('Dendritic processing underlying temporal integration ',
'Sherika Sylvester'),
('Dendritic processing underlying temporal integration ', 'Dimitry Fisher'),
('Dendritic processing underlying temporal integration ', 'Mark Goldman'),
('Dendritic processing underlying temporal integration ', 'Emre Aksay'),
('Evidence for a class of dLGN neurons with extra-strong classical surrounds in the awake rat',
'Balaji Sriram'),
('Evidence for a class of dLGN neurons with extra-strong classical surrounds in the awake rat',
'Pamela Reinagel'),
('Global Synchronous Spontaneous Activity in Xenopus Optic Tectum',
'Kazuo Imaizumi'),
('Global Synchronous Spontaneous Activity in Xenopus Optic Tectum',
'Hamilton Farris'),
('Visual cortex learns novel representations under anesthesia',
'Andreea Lazar'),
('Visual cortex learns novel representations under anesthesia',
'Wolf Singer'),
('Visual cortex learns novel representations under anesthesia',
'Danko Nikolic'),
('Intrinsic gradient networks: Highly recurrent neural networks with biologically plausible training',
'Jason Rolfe'),
('Intrinsic gradient networks: Highly recurrent neural networks with biologically plausible training',
'Matthew Cook'),
('Intrinsic gradient networks: Highly recurrent neural networks with biologically plausible training',
'Yann LeCun'),
('Decision making and working memory in a parietal-prefrontal loop model',
'John Murray'),
('Decision making and working memory in a parietal-prefrontal loop model',
'Xiao-Jing Wang'),
('Short-Term Memory Capacity in Recurrent Networks via Compressed Sensing',
'Adam Charles'),
('Short-Term Memory Capacity in Recurrent Networks via Compressed Sensing',
'Han Lun Yap'),
('Short-Term Memory Capacity in Recurrent Networks via Compressed Sensing',
'Chris Rozell'),
('Synaptic input correlations and membrane potential decorrelation in spontaneous cortical activity ',
'Michael Graupner'),
('Synaptic input correlations and membrane potential decorrelation in spontaneous cortical activity ',
'Alex D. Reyes'),
('Symmetry in the neural representation of visual motion', 'Alfred Kaye'),
('Symmetry in the neural representation of visual motion', 'James H Marshel'),
('Symmetry in the neural representation of visual motion', 'Edward Callaway'),
('Symmetry in the neural representation of visual motion', 'Tatyana Sharpee'),
('Neuronal populations model of associative retrieval', 'Sandro Romani'),
('Neuronal populations model of associative retrieval', 'Itai Pinkoviezsky'),
('Neuronal populations model of associative retrieval', 'Alon Rubin'),
('Neuronal populations model of associative retrieval', 'Misha Tsodyks'),
('Structure of stimulus induced correlations in random networks with distance dependent connectivity',
'Alejandro Fernandez Bujan'),
('Structure of stimulus induced correlations in random networks with distance dependent connectivity',
'Ad Aertsen'),
('Structure of stimulus induced correlations in random networks with distance dependent connectivity',
'Arvind Kumar'),
('Maximum entropy models of social behavior reveal high-order interactions in groups of mice',
'Oren Forkosh'),
('Maximum entropy models of social behavior reveal high-order interactions in groups of mice',
'Yair Shemesh'),
('Maximum entropy models of social behavior reveal high-order interactions in groups of mice',
'Yehezkel Sztainberg'),
('Maximum entropy models of social behavior reveal high-order interactions in groups of mice',
'Alon Chen'),
('Maximum entropy models of social behavior reveal high-order interactions in groups of mice',
'Elad Schneidman'),
('Position-specific heterogeneity of orientation pooling in curvature-tuned neurons of macaque area V4',
'Anirvan Nandy'),
('Position-specific heterogeneity of orientation pooling in curvature-tuned neurons of macaque area V4',
'Tatyana Sharpee'),
('Position-specific heterogeneity of orientation pooling in curvature-tuned neurons of macaque area V4',
'John Reynolds'),
('Position-specific heterogeneity of orientation pooling in curvature-tuned neurons of macaque area V4',
'Jude Mitchell'),
('Trial-to-trial variability of MT neurons reveals the nature of their engagement in a motion discrimi',
'Mark Zarella'),
('Trial-to-trial variability of MT neurons reveals the nature of their engagement in a motion discrimi',
'Tatiana Pasternak'),
('Kinematic limitations to texture discrimination by whiskers',
'Andreas Thomik'),
('Kinematic limitations to texture discrimination by whiskers',
'Aldo Faisal'),
('Parallel pathways for information processing in the retina: the ON and OFF dichotomy',
'Julijana Gjorgjieva'),
('Parallel pathways for information processing in the retina: the ON and OFF dichotomy',
'Haim Sompolinsky'),
('Parallel pathways for information processing in the retina: the ON and OFF dichotomy',
'Markus Meister'),
('Efficient coding of natural images and movies with populations of noisy nonlinear neurons',
'Yan Karklin'),
('Efficient coding of natural images and movies with populations of noisy nonlinear neurons',
'Eero Simoncelli'),
('Inactivation of rat frontal and parietal cortex during a temporal integration of evidence task',
'Chunyu Duan'),
('Inactivation of rat frontal and parietal cortex during a temporal integration of evidence task',
'Jeffrey Erlich'),
('Inactivation of rat frontal and parietal cortex during a temporal integration of evidence task',
'Timothy Hanks'),
('Inactivation of rat frontal and parietal cortex during a temporal integration of evidence task',
'Bingni Brunton'),
('Inactivation of rat frontal and parietal cortex during a temporal integration of evidence task',
'Carlos Brody'),
('Local control of non-local information routing in spiking neuronal networks',
'Christoph Kirst'),
('Local control of non-local information routing in spiking neuronal networks',
'Marc Timme'),
('Local control of non-local information routing in spiking neuronal networks',
'Demian Battaglia'),
('Cortico-basal ganglia computations in controlled decision making: an extended diffusion model analys',
'Thomas Wiecki'),
('Cortico-basal ganglia computations in controlled decision making: an extended diffusion model analys',
'Michael J Frank'),
('Fast methods for mapping the full dendritic synaptic connectivity',
'Ari Pakman'),
('Fast methods for mapping the full dendritic synaptic connectivity',
'Jonathan Huggins'),
('Fast methods for mapping the full dendritic synaptic connectivity',
'Liam Paninski'),
('Nonnormal amplification in random balanced neuronal networks',
'Guillaume Hennequin'),
('Nonnormal amplification in random balanced neuronal networks',
'Tim P. Vogels'),
('Nonnormal amplification in random balanced neuronal networks',
'Wulfram Gerstner'),
('Attentional effects in V1 are related to spatial gating but not to allocation of limited resources',
'Eyal Seidemann'),
('Attentional effects in V1 are related to spatial gating but not to allocation of limited resources',
'Yuzhi Chen'),
('Scale-dependence of orientation statistics in natural scenes',
'Tatyana Sharpee'),
('Scale-dependence of orientation statistics in natural scenes',
'Anirvan Nandy'),
('Scale-dependence of orientation statistics in natural scenes',
'John Reynolds'),
('Adaptation to spectro-temporal correlation in the primary auditory cortex',
'Ryan Natan'),
('Adaptation to spectro-temporal correlation in the primary auditory cortex',
'Isaac Carruthers'),
('Adaptation to spectro-temporal correlation in the primary auditory cortex',
'Maria Geffen'),
('Diffusion of nodal sodium channels can restore function in multiple sclerosis',
'Ali Neishabouri'),
('Diffusion of nodal sodium channels can restore function in multiple sclerosis',
'Aldo Faisal'),
('Synaptic consolidation: from synapses to behavioral modeling',
'Lorric Ziegler'),
('Synaptic consolidation: from synapses to behavioral modeling',
'Wulfram Gerstner'),
('Neural implementation of Bayesian inference using efficient population codes ',
'Deep Ganguli'),
('Neural implementation of Bayesian inference using efficient population codes ',
'Eero Simoncelli'),
('Generalization of uncertainty', 'Hugo Fernandes'),
('Generalization of uncertainty', 'Ian Stevenson'),
('Generalization of uncertainty', 'Konrad Kording'),
('Summary statistics in auditory perception', 'Josh McDermott'),
('Summary statistics in auditory perception', 'Eero Simoncelli'),
('Learning precisely timed spiking responses', 'Raoul-Martin Memmesheimer'),
('Learning precisely timed spiking responses', 'Ran Rubin'),
('Learning precisely timed spiking responses', 'Haim Sompolinsky'),
('Visual Object Classification is Consistent with Bayesian Generative Representations',
'Feryal Mehraban Pour Behbahani'),
('Visual Object Classification is Consistent with Bayesian Generative Representations',
'Aldo Faisal'),
('Task-dependent feature representations of complex sounds in human auditory cortex',
'Annika Linke'),
('Task-dependent feature representations of complex sounds in human auditory cortex',
'Rhodri Cusack'),
('Prediction error signals in ACC are scaled according to rational adjustments of learning.',
'Matthew Nassar'),
('Prediction error signals in ACC are scaled according to rational adjustments of learning.',
'Joshua Gold'),
('Internal metabolic state determines human motor control strategies',
'Scott Taylor'),
('Internal metabolic state determines human motor control strategies',
'Aldo Faisal'),
('A retinotopic systems identification method reveals parallel visual streams in the fruit fly',
'Jacob Aptekar'),
('A retinotopic systems identification method reveals parallel visual streams in the fruit fly',
'Jessica Fox'),
('A retinotopic systems identification method reveals parallel visual streams in the fruit fly',
'Pat Shoemaker'),
('A retinotopic systems identification method reveals parallel visual streams in the fruit fly',
'Mark Frye'),
('Inferring eye position and saccade direction from populations of LIP neurons',
'Arnulf Graf'),
('Inferring eye position and saccade direction from populations of LIP neurons',
'Richard Andersen'),
('Casting light on the interplay between perception and decision making in active sensing',
'Alex Gomez-Marin'),
('Casting light on the interplay between perception and decision making in active sensing',
'Aljoscha Schulze'),
('Casting light on the interplay between perception and decision making in active sensing',
'Vani Rajendran'),
('Casting light on the interplay between perception and decision making in active sensing',
'Gus Lott'),
('Casting light on the interplay between perception and decision making in active sensing',
'Eric Trautman'),
('Casting light on the interplay between perception and decision making in active sensing',
'Parvez Ahammad'),
('Casting light on the interplay between perception and decision making in active sensing',
'Chris Werner'),
('Casting light on the interplay between perception and decision making in active sensing',
'Vivek Jayaraman'),
('Casting light on the interplay between perception and decision making in active sensing',
'Matthieu Louis'),
('Co-variability of spontaneous synaptic excitation and inhibition in visual cortex.',
'Andrew Tan'),
('Co-variability of spontaneous synaptic excitation and inhibition in visual cortex.',
'Nicholas Priebe'),
('Inhibition controls the spatiotemporal spread of responses in awake visual cortex',
'Bilal Haider'),
('Inhibition controls the spatiotemporal spread of responses in awake visual cortex',
'Michael H\xe2\x80\xb0usser'),
('Inhibition controls the spatiotemporal spread of responses in awake visual cortex',
'Matteo Carandini'),
('Bayesian entropy estimation for infinite neural alphabets', 'Evan Archer'),
('Bayesian entropy estimation for infinite neural alphabets',
'Il Memming Park'),
('Bayesian entropy estimation for infinite neural alphabets',
'Jonathan Pillow'),
('Serotonergic modulation of sensory information processing', 'Eran Lottem'),
('Serotonergic modulation of sensory information processing',
'Guillaume Dugu\xc3\x88'),
('Serotonergic modulation of sensory information processing',
'Magor Lorincz'),
('Serotonergic modulation of sensory information processing',
'Patr\xc3\x8ccia Correia'),
('Serotonergic modulation of sensory information processing',
'Zachary Mainen'),
('Theta-phase coding by grid cells in two-dimensional environments',
'Eric Reifenstein'),
('Theta-phase coding by grid cells in two-dimensional environments',
'Andreas V.M. Herz'),
('Theta-phase coding by grid cells in two-dimensional environments',
'Richard Kempter'),
('Theta-phase coding by grid cells in two-dimensional environments',
'Susanne Schreiber'),
('Theta-phase coding by grid cells in two-dimensional environments',
'Martin Stemmler'),
('Real-time changes in single neurons during auditory object recognition learning.',
'Daniel Knudsen'),
('Real-time changes in single neurons during auditory object recognition learning.',
'Timothy Gentner'),
('Transient activation of distinct striatal pathways mimics changes in the value of actions',
'Lung-Hao Tai'),
('Transient activation of distinct striatal pathways mimics changes in the value of actions',
'A. Moses Lee'),
('Transient activation of distinct striatal pathways mimics changes in the value of actions',
'Antonello Bonci'),
('Transient activation of distinct striatal pathways mimics changes in the value of actions',
'Linda Wilbrecht'),
('Control allows confidence learning', 'Jacqueline Fulvio'),
('Control allows confidence learning', 'C Shawn Green'),
('Control allows confidence learning', 'Paul Schrater'),
('Encoding of ultra-sonic vocalizations in the rodent primary auditory cortex',
'Isaac Carruthers'),
('Encoding of ultra-sonic vocalizations in the rodent primary auditory cortex',
'Ryan Natan'),
('Encoding of ultra-sonic vocalizations in the rodent primary auditory cortex',
'Maria Geffen'),
('The spatiotemporal structure of learned and recalled information in whole frontal cortical netwoks',
'Ziv Williams'),
('The spatiotemporal structure of learned and recalled information in whole frontal cortical netwoks',
'Robert Haslinger'),
('The spatiotemporal structure of learned and recalled information in whole frontal cortical netwoks',
'Rollin Hu'),
('Phase of spikes encodes sound identity in hippocampus', 'Ekaterina Vinnik'),
('Phase of spikes encodes sound identity in hippocampus', 'Pavel Itskov'),
('Optimizing online learning capacity in a biologically-inspired memory structure',
'Xundong Wu'),
('Optimizing online learning capacity in a biologically-inspired memory structure',
'DJ Strouse'),
('Optimizing online learning capacity in a biologically-inspired memory structure',
'Bartlett Mel'),
('Correlations in Spatially Heterogeneous Neuronal Networks',
'James Trousdale'),
('Correlations in Spatially Heterogeneous Neuronal Networks',
'Kresimir Josic'),
('Structure-preserving model reduction of the passive and quasi-active neuron',
'Kathryn Hedrick'),
('Structure-preserving model reduction of the passive and quasi-active neuron',
'Steve Cox'),
('COHERENT NETWORK-WIDE FLUCTUATIONS OF NEURAL ACTIVITY IN THE PFC DURING BEHAVIORAL UNCERTAINTY',
'Mattias Karlsson'),
('COHERENT NETWORK-WIDE FLUCTUATIONS OF NEURAL ACTIVITY IN THE PFC DURING BEHAVIORAL UNCERTAINTY',
'Dougal Tervo'),
('COHERENT NETWORK-WIDE FLUCTUATIONS OF NEURAL ACTIVITY IN THE PFC DURING BEHAVIORAL UNCERTAINTY',
'Alla Karpova'),
('Ion Channels Overcome the Biophysical Constraints of Neuron Morphology',
'Corinne Teeter'),
('Ion Channels Overcome the Biophysical Constraints of Neuron Morphology',
'Victor Chan'),
('Bayesian spike-triggered covariance and the elliptical LNP model ',
'Il Memming Park'),
('Bayesian spike-triggered covariance and the elliptical LNP model ',
'Jonathan Pillow'),
('The importance of being slow: Extreme-value theory of cognitive representations.',
'Alberto Bernacchia'),
('The importance of being slow: Extreme-value theory of cognitive representations.',
'Xiao-Jing Wang'),
('Plasticity in chaotic random recurrent networks leads to complex but non-chaotic neural trajectories',
'Rodrigo Laje'),
('Plasticity in chaotic random recurrent networks leads to complex but non-chaotic neural trajectories',
'Dean V. Buonomano'),
('Second order dimensionality reduction using minimum and maximum mutual information models',
'Ryan Rowekamp'),
('Second order dimensionality reduction using minimum and maximum mutual information models',
'Jeffrey Fitzgerald'),
('Second order dimensionality reduction using minimum and maximum mutual information models',
'Lawrence Sincich'),
('Second order dimensionality reduction using minimum and maximum mutual information models',
'Tatyana Sharpee'),
('Reductions of correlated firing arise from attention-dependent depolarization in a spiking network',
'Jude Mitchell'),
('Reductions of correlated firing arise from attention-dependent depolarization in a spiking network',
'John Reynolds'),
('Model-based analysis of 3D surface representations in human visual cortex',
'Andrew Welchman'),
('Model-based analysis of 3D surface representations in human visual cortex',
'Hiroshi Ban'),
('Pairwise analysis can account for network structures arising from spike-timing dependent plasticity',
'Baktash Babadi'),
('Pairwise analysis can account for network structures arising from spike-timing dependent plasticity',
'Larry Abbott'),
('A concurrent brain-machine interface for enhanced motor function',
'Maryam Shanechi'),
('A concurrent brain-machine interface for enhanced motor function',
'Rollin Hu'),
('A concurrent brain-machine interface for enhanced motor function',
'Marissa Powers'),
('A concurrent brain-machine interface for enhanced motor function',
'Gregory W Wornell'),
('A concurrent brain-machine interface for enhanced motor function',
'Emery Brown'),
('A concurrent brain-machine interface for enhanced motor function',
'Ziv Williams'),
('A RODENT MODEL FOR STUDYING MECHANISMS OF BEHAVIORAL RESPONSE VARIABILITY',
'Dougal Tervo'),
('A RODENT MODEL FOR STUDYING MECHANISMS OF BEHAVIORAL RESPONSE VARIABILITY',
'Mayank Kabra'),
('A RODENT MODEL FOR STUDYING MECHANISMS OF BEHAVIORAL RESPONSE VARIABILITY',
'Kristin Branson'),
('A RODENT MODEL FOR STUDYING MECHANISMS OF BEHAVIORAL RESPONSE VARIABILITY',
'Alla Karpova'),
('Selectivity and invariance are greater in macaque V2 than V1',
'Corey Ziemba'),
('Selectivity and invariance are greater in macaque V2 than V1',
'Jeremy Freeman'),
('Selectivity and invariance are greater in macaque V2 than V1',
'Tony Movshon'),
('Selectivity and invariance are greater in macaque V2 than V1',
'Eero Simoncelli'),
('How plastic is the \xc3\xacslow speeds prior\xc3\xae?',
'Grigorios Sotiropoulos'),
('How plastic is the \xc3\xacslow speeds prior\xc3\xae?', 'Aaron Seitz'),
('How plastic is the \xc3\xacslow speeds prior\xc3\xae?', 'Peggy Series'),
('Sequence Learning in Primary Visual Cortex', 'Jeff Gavornik'),
('Sequence Learning in Primary Visual Cortex', 'Mark Bear'),
('Selective Allocation of attention is crucial in setting a capacity limit in visual short-term memory',
'Antonio Lara'),
('Selective Allocation of attention is crucial in setting a capacity limit in visual short-term memory',
'Jonathan Wallis'),
('Odor detection vs. mixture categorization: crucial differences in behavioral and learning strategies',
'Maria Vicente'),
('Odor detection vs. mixture categorization: crucial differences in behavioral and learning strategies',
'Andre Mendonca'),
('Odor detection vs. mixture categorization: crucial differences in behavioral and learning strategies',
'Alexandre Pouget'),
('Odor detection vs. mixture categorization: crucial differences in behavioral and learning strategies',
'Zachary Mainen'),
('Joint probability of independent events is consistent with weighted combination of log probabilities',
'James Tee'),
('Joint probability of independent events is consistent with weighted combination of log probabilities',
'Hang Zhang'),
('Joint probability of independent events is consistent with weighted combination of log probabilities',
'Laurence Maloney'),
('Biophysically accurate inhibitory interneuron properties in a sparse coding network',
'Mengchen Zhu'),
('Biophysically accurate inhibitory interneuron properties in a sparse coding network',
'Bruno Olshausen'),
('Biophysically accurate inhibitory interneuron properties in a sparse coding network',
'Chris Rozell'),
('Direction vs. category selectivity in LIP and MT neurons in delayed match-to-category task',
'Warasinee Chaisangmongkon'),
('Direction vs. category selectivity in LIP and MT neurons in delayed match-to-category task',
'David Freedman'),
('Direction vs. category selectivity in LIP and MT neurons in delayed match-to-category task',
'Xiao-Jing Wang'),
('Sensation of a \xc3\xacnoisy\xc3\xae whisker vibration in rats: Psychometric and neurometric analysis',
'Arash Fassihi'),
('Sensation of a \xc3\xacnoisy\xc3\xae whisker vibration in rats: Psychometric and neurometric analysis',
'Athena Akrami'),
('Sensation of a \xc3\xacnoisy\xc3\xae whisker vibration in rats: Psychometric and neurometric analysis',
'Vahid Esmaeili'),
('Sensation of a \xc3\xacnoisy\xc3\xae whisker vibration in rats: Psychometric and neurometric analysis',
'Mathew E. Diamond'),
('Norepinephrine, neural gain, and \xc3\xacfirst one wins\xc3\xae network dynamics',
'Eran Eldar'),
('Norepinephrine, neural gain, and \xc3\xacfirst one wins\xc3\xae network dynamics',
'Angela Radulescu'),
('Norepinephrine, neural gain, and \xc3\xacfirst one wins\xc3\xae network dynamics',
'Yael Niv'),
('Norepinephrine, neural gain, and \xc3\xacfirst one wins\xc3\xae network dynamics',
'Jonathan Cohen'),
('Spatial heterogeneity in visual perception; a new conceptual framework for translation invariance.',
'Arash Afraz'),
('Spatial heterogeneity in visual perception; a new conceptual framework for translation invariance.',
'Maryam Vaziri-Pashkam'),
('Spatial heterogeneity in visual perception; a new conceptual framework for translation invariance.',
'Edith Reshef'),
('Spatial heterogeneity in visual perception; a new conceptual framework for translation invariance.',
'James DiCarlo'),
('Spatial heterogeneity in visual perception; a new conceptual framework for translation invariance.',
'Patrick Cavanagh'),
('Perturbative memory encoding in recurrent networks', 'Carina Curto'),
('Perturbative memory encoding in recurrent networks', 'Anda Degeratu'),
('Perturbative memory encoding in recurrent networks', 'Vladimir Itskov'),
('Humans integrate motion information using noise adaptive filters',
'Justin Ales'),
('Humans integrate motion information using noise adaptive filters',
'Anthony Norcia'),
('Optimal placement of dynamic range by coordinated populations of retinal ganglion cells',
'David Kastner'),
('Optimal placement of dynamic range by coordinated populations of retinal ganglion cells',
'Stephen Baccus'),
('Optimal placement of dynamic range by coordinated populations of retinal ganglion cells',
'Tatyana Sharpee'),
('Dissecting the Contributions of Sensory and Category Uncertainty in Perceptual Decision-Making',
'Andre Mendonca'),
('Dissecting the Contributions of Sensory and Category Uncertainty in Perceptual Decision-Making',
'Maria Vicente'),
('Dissecting the Contributions of Sensory and Category Uncertainty in Perceptual Decision-Making',
'Alexandre Pouget'),
('Dissecting the Contributions of Sensory and Category Uncertainty in Perceptual Decision-Making',
'Zachary Mainen'),
('Executive control and arbitration in reinforcement learning',
'Anya Skatova'),
('Executive control and arbitration in reinforcement learning',
'Seth Madlon-Kay'),
('Executive control and arbitration in reinforcement learning',
'Nathaniel Daw'),
('Identifying the neural initiation of a movement', 'Biljana Petreska'),
('Identifying the neural initiation of a movement', 'Matthew Kaufman'),
('Identifying the neural initiation of a movement', 'Mark Churchland'),
('Identifying the neural initiation of a movement', 'Stephen Ryu'),
('Identifying the neural initiation of a movement', 'Krishna Shenoy'),
('Identifying the neural initiation of a movement', 'Maneesh Sahani'),
('Change detection as probabilistic inference under variable resources',
'Shaiyan Keshvari'),
('Change detection as probabilistic inference under variable resources',
'Ronald Van Den Berg'),
('Change detection as probabilistic inference under variable resources',
'Wei Ji Ma'),
('A normative theory of Weber\xc3\xads law', 'Jeffrey Beck'),
('A normative theory of Weber\xc3\xads law', 'Ingmar Kanitscheider'),
('A normative theory of Weber\xc3\xads law', 'Alexandre Pouget'),
('Reliable and unreliable spike times in sparsely connected networks',
'Guillaume Lajoie'),
('Reliable and unreliable spike times in sparsely connected networks',
'Kevin Lin'),
('Reliable and unreliable spike times in sparsely connected networks',
'Eric Shea-Brown'),
('Reconstruction of the connectome of the fruit fly visual system',
'Shin-ya Takemura'),
('Reconstruction of the connectome of the fruit fly visual system',
'Shiv Vitaladevuni'),
('Reconstruction of the connectome of the fruit fly visual system',
'Richard Fetter'),
('Reconstruction of the connectome of the fruit fly visual system',
'Zhiyuan Lu'),
('Reconstruction of the connectome of the fruit fly visual system',
'Stephen Plaza'),
('Reconstruction of the connectome of the fruit fly visual system',
'Arjun Bharioke'),
('Reconstruction of the connectome of the fruit fly visual system',
'Lou Scheffer'),
('Reconstruction of the connectome of the fruit fly visual system',
'Ian Meinertzhagen'),
('Reconstruction of the connectome of the fruit fly visual system',
'Dmitri Chklovskii'),
('A principle of brain communication based on compressive sampling and sparse coding',
'Guy Isely'),
('A principle of brain communication based on compressive sampling and sparse coding',
'Christopher Hillar'),
('A principle of brain communication based on compressive sampling and sparse coding',
'Fritz Sommer'),
('Adaptive reinforcement learning in dynamic environments', 'Chaohui Guo'),
('Adaptive reinforcement learning in dynamic environments',
'Peter Bossaerts'),
('Adaptive reinforcement learning in dynamic environments',
'Kerstin Preuschoff'),
('Sparse coding neurons encode individual vocalizations in complex auditory scenes',
'David Schneider'),
('Sparse coding neurons encode individual vocalizations in complex auditory scenes',
'Sarah Woolley'),
('Decoding semantic content from fMRI responses to natural movies',
'Alexander Huth'),
('Decoding semantic content from fMRI responses to natural movies',
'Tyler Lee'),
('Decoding semantic content from fMRI responses to natural movies',
'Shinji Nishimoto'),
('Decoding semantic content from fMRI responses to natural movies', 'An Vu'),
('Decoding semantic content from fMRI responses to natural movies',
'Jack Gallant'),
('Dynamics of correlated variability in evoked and spontaneous responses of V4 neurons',
'Matt Smith'),
('Dynamics of correlated variability in evoked and spontaneous responses of V4 neurons',
'Marc Sommer'),
('Inferred functional circuitry in a microcolumn of cat visual cortex ',
'Urs Koster'),
('Inferred functional circuitry in a microcolumn of cat visual cortex ',
'Christopher Hillar'),
('Inferred functional circuitry in a microcolumn of cat visual cortex ',
'Bruno Olshausen'),
('Inferred functional circuitry in a microcolumn of cat visual cortex ',
'Charles Gray'),
('Functional Connectivity of the Neural Integrator in Larval Zebrafish',
'Kayvon Daie'),
('Functional Connectivity of the Neural Integrator in Larval Zebrafish',
'Mark Goldman'),
('Functional Connectivity of the Neural Integrator in Larval Zebrafish',
'Emre Aksay'),
('Short-axon Cells Provide Both Excitatory and Inhibitory Drive to the Mitral/Tufted Cells.',
'Arkarup Bandyopadhyay'),
('Short-axon Cells Provide Both Excitatory and Inhibitory Drive to the Mitral/Tufted Cells.',
'Fred Marbach'),
('Short-axon Cells Provide Both Excitatory and Inhibitory Drive to the Mitral/Tufted Cells.',
'Matthew Koh'),
('Short-axon Cells Provide Both Excitatory and Inhibitory Drive to the Mitral/Tufted Cells.',
'Dinu Albeanu'),
('Encoding of motion onset by retinal ganglion cells', 'Eric Chen'),
('Encoding of motion onset by retinal ganglion cells', 'Joshua Levy'),
('Encoding of motion onset by retinal ganglion cells', 'Clark Fisher'),
('Encoding of motion onset by retinal ganglion cells', 'Rava da Silveira'),
('Encoding of motion onset by retinal ganglion cells', 'Michael Berry'),
('Optimal integration of multisensory event streams in rats and humans',
'David Raposo'),
('Optimal integration of multisensory event streams in rats and humans',
'John Sheppard'),
('Optimal integration of multisensory event streams in rats and humans',
'Paul Schrater'),
('Optimal integration of multisensory event streams in rats and humans',
'Anne Churchland'),
('The Distinct Behavior of Membrane Potential and Spike Train Statistics',
'Robert Rosenbaum'),
('The Distinct Behavior of Membrane Potential and Spike Train Statistics',
'Kresimir Josic'),
('Using dimensionality reduction to explore muscle synergies and torque encoding during insect flight',
'Simon Sponberg'),
('Using dimensionality reduction to explore muscle synergies and torque encoding during insect flight',
'Tom Daniel'),
('Using dimensionality reduction to explore muscle synergies and torque encoding during insect flight',
'Adrienne Fairhall'),
('Support Vector Machines in Spiking Neurons with Non-Linear Dendrites',
'Ran Rubin'),
('Support Vector Machines in Spiking Neurons with Non-Linear Dendrites',
'Raoul-Martin Memmesheimer'),
('Support Vector Machines in Spiking Neurons with Non-Linear Dendrites',
'Haim Sompolinsky'),
('Exact inference for time series data on nonstandard state spaces',
'Carl Smith'),
('Exact inference for time series data on nonstandard state spaces',
'Frank Wood'),
('Exact inference for time series data on nonstandard state spaces',
'Liam Paninski'),
('Fast encoding model estimation via expected log-likelihoods ',
'Alexandro Ramirez'),
('Fast encoding model estimation via expected log-likelihoods ',
'Liam Paninski'),
('Understanding V1 surround modulation with natural stimuli using a principled statistical model',
'Ruben Coen-Cagli'),
('Understanding V1 surround modulation with natural stimuli using a principled statistical model',
'Adam Kohn'),
('Understanding V1 surround modulation with natural stimuli using a principled statistical model',
'Odelia Schwartz'),
('Embracing disorder: making sense of complex population codes',
'Omri Barak'),
('Embracing disorder: making sense of complex population codes',
'David Sussillo'),
('Embracing disorder: making sense of complex population codes',
'Misha Tsodyks'),
('Embracing disorder: making sense of complex population codes',
'Ranulfo Romo'),
('Embracing disorder: making sense of complex population codes',
'Larry Abbott'),
('Natural grouping of neural responses reveals spatially segregated clusters in prearcuate cortex',
'Roozbeh Kiani'),
('Natural grouping of neural responses reveals spatially segregated clusters in prearcuate cortex',
'Christopher Cueva'),
('Natural grouping of neural responses reveals spatially segregated clusters in prearcuate cortex',
'John Reppas'),
('Natural grouping of neural responses reveals spatially segregated clusters in prearcuate cortex',
'William Newsome'),
('A generative Model for Adaptation in Primary Visual Cortex Neurons derived from Movie Statistics',
'Michoel Snow'),
('A generative Model for Adaptation in Primary Visual Cortex Neurons derived from Movie Statistics',
'Ruben Coen-Cagli'),
('A generative Model for Adaptation in Primary Visual Cortex Neurons derived from Movie Statistics',
'Odelia Schwartz'),
('Human cortical neurons form functionally isolated networks during propofol-induced unconsciousness',
'Laura Lewis'),
('Human cortical neurons form functionally isolated networks during propofol-induced unconsciousness',
'Veronica Weiner'),
('Human cortical neurons form functionally isolated networks during propofol-induced unconsciousness',
'Eran Mukamel'),
('Human cortical neurons form functionally isolated networks during propofol-induced unconsciousness',
'Jacob Donoghue'),
('Human cortical neurons form functionally isolated networks during propofol-induced unconsciousness',
'Emad Eskandar'),
('Human cortical neurons form functionally isolated networks during propofol-induced unconsciousness',
'Joseph Madsen'),
('Human cortical neurons form functionally isolated networks during propofol-induced unconsciousness',
'William Anderson'),
('Human cortical neurons form functionally isolated networks during propofol-induced unconsciousness',
'Leigh Hochberg'),
('Human cortical neurons form functionally isolated networks during propofol-induced unconsciousness',
'Sydney Cash'),
('Human cortical neurons form functionally isolated networks during propofol-induced unconsciousness',
'Emery Brown'),
('Human cortical neurons form functionally isolated networks during propofol-induced unconsciousness',
'Patrick Purdon'),
('Hamiltonian Monte Carlo sampling and oscillatory activity in V1',
'Gergo Orb\xc2\xb7n'),
('Hamiltonian Monte Carlo sampling and oscillatory activity in V1',
'Laurence Aitchison'),
('Hamiltonian Monte Carlo sampling and oscillatory activity in V1',
'Mate Lengyel'),
('Information processing changes during development in primary auditory cortex',
'Badr Albanna'),
('Information processing changes during development in primary auditory cortex',
'Michele Insanally'),
('Information processing changes during development in primary auditory cortex',
'Hania Kover'),
('Information processing changes during development in primary auditory cortex',
'Heesoo Kim'),
('Information processing changes during development in primary auditory cortex',
'Shaowen Bao'),
('Information processing changes during development in primary auditory cortex',
'Michael DeWeese'),
('Neural representations that are good for both generalization and discrimination',
'Omri Barak'),
('Neural representations that are good for both generalization and discrimination',
'Mattia Rigotti'),
('Neural representations that are good for both generalization and discrimination',
'Stefano Fusi'),
('The mesencephalic locomotor region modulates layer-specific activity in V1 independent of locomotion',
'Cristopher Niell'),
('The mesencephalic locomotor region modulates layer-specific activity in V1 independent of locomotion',
'A. Moses Lee'),
('The mesencephalic locomotor region modulates layer-specific activity in V1 independent of locomotion',
'Linda Wilbrecht'),
('The mesencephalic locomotor region modulates layer-specific activity in V1 independent of locomotion',
'Antonello Bonci'),
('The mesencephalic locomotor region modulates layer-specific activity in V1 independent of locomotion',
'Michael Stryker'),
('Change localization: a new paradigm for visual short-term memory',
'Hongsup Shin'),
('Change localization: a new paradigm for visual short-term memory',
'Ronald Van Den Berg'),
('Change localization: a new paradigm for visual short-term memory',
'Wei Ji Ma'),
('Perceptual grouping and figure-ground segregation arising from short-term plasticity in a spiking ne',
'Jason Fleischer'),
('Perceptual grouping and figure-ground segregation arising from short-term plasticity in a spiking ne',
'Alexandar Kozarev'),
('Efficient coding of visual motion signals in the smooth pursuit system',
'Leslie Osborne'),
('Efficient coding of visual motion signals in the smooth pursuit system',
'Patrick Stinson'),
('Scientists are suboptimal in judging scientific data',
'Ronald Van Den Berg'),
('Scientists are suboptimal in judging scientific data', 'Jeffrey Beck'),
('Scientists are suboptimal in judging scientific data', 'Wei Ji Ma'),
('On the role of cortical feedback on invariant odor perception in the mammalian olfactory system',
'Gonzalo Otazu'),
('On the role of cortical feedback on invariant odor perception in the mammalian olfactory system',
'Dinu Albeanu'),
('Improving neural control of a simulated arm by decoding intended future movement',
'Francis Willett'),
('Improving neural control of a simulated arm by decoding intended future movement',
'Aaron Suminski'),
('Improving neural control of a simulated arm by decoding intended future movement',
'Andrew Fagg'),
('Improving neural control of a simulated arm by decoding intended future movement',
'Nicholas Hatsopoulos'),
('Between-pair spike-field coherence comparison', 'Kyle Lepage'),
('Between-pair spike-field coherence comparison', 'Mark Kramer'),
('Between-pair spike-field coherence comparison', 'Georgia Gregoriou'),
('Between-pair spike-field coherence comparison', 'Steve Gotts'),
('Between-pair spike-field coherence comparison', 'Robert Desimone'),
('Between-pair spike-field coherence comparison', 'Uri Eden'),
('Hierarchical generalized linear models of dendritic integration and somatic membrane potential',
'DJ Strouse'),
('Hierarchical generalized linear models of dendritic integration and somatic membrane potential',
'Mate Lengyel'),
('Probing motion perception with spatiotemporal reverse correlation',
'Jacob Yates'),
('Probing motion perception with spatiotemporal reverse correlation',
'Alex Huk'),
('Probing motion perception with spatiotemporal reverse correlation',
'Jonathan Pillow'),
('Relating patterns of EEG activity to natural scene categories',
'Dirk Walther'),
('Relating patterns of EEG activity to natural scene categories',
'Bart Larsen'),
('An adaptive spiking neural network for decision making in partially observable environments',
'Mattia Rigotti'),
('An adaptive spiking neural network for decision making in partially observable environments',
'Daniel Ben Dayan Rubin'),
('An adaptive spiking neural network for decision making in partially observable environments',
'Nathaniel Daw'),
('An adaptive spiking neural network for decision making in partially observable environments',
'Stefano Fusi'),
('Dissociating interneuron types in frontal cortex by firing variability and spike timing specificity',
'Salva Ardid'),
('Dissociating interneuron types in frontal cortex by firing variability and spike timing specificity',
'Martin Vinck'),
('Dissociating interneuron types in frontal cortex by firing variability and spike timing specificity',
'Daniel Kaping'),
('Dissociating interneuron types in frontal cortex by firing variability and spike timing specificity',
'Stefan Everling'),
('Dissociating interneuron types in frontal cortex by firing variability and spike timing specificity',
'Thilo Womelsdorf'),
('Dissociable Influences of D1 and D2-mediated Frontal Eye Field Activity on Target Selection',
'Alireza Soltani'),
('Dissociable Influences of D1 and D2-mediated Frontal Eye Field Activity on Target Selection',
'Behrad Noudoost'),
('Dissociable Influences of D1 and D2-mediated Frontal Eye Field Activity on Target Selection',
'Tirin Moore'),
('Stochastic short term depression imposes a frequency-dependent filter on information transmission',
'Robert Rosenbaum'),
('Stochastic short term depression imposes a frequency-dependent filter on information transmission',
'Jonathan Rubin'),
('Stochastic short term depression imposes a frequency-dependent filter on information transmission',
'Brent Doiron'),
('Inhibition in mouse IC affects the rate code but not the timing code when processing vocalizations.',
'Alexander Dimitrov'),
('Inhibition in mouse IC affects the rate code but not the timing code when processing vocalizations.',
'Graham Cummins'),
('Inhibition in mouse IC affects the rate code but not the timing code when processing vocalizations.',
'Zachary Mayko'),
('Inhibition in mouse IC affects the rate code but not the timing code when processing vocalizations.',
'Christine Portfors'),
('A cell-type-specific population analysis of optogenetically evoked response in primary visual cortex',
'Ali Mohebi'),
('A cell-type-specific population analysis of optogenetically evoked response in primary visual cortex',
'Jessica A. Cardin'),
('A cell-type-specific population analysis of optogenetically evoked response in primary visual cortex',
'Karim Oweiss'),
('Action valuation in multi-effector decision-making', 'Seth Madlon-Kay'),
('Action valuation in multi-effector decision-making', 'Bijan Pesaran'),
('Action valuation in multi-effector decision-making', 'Nathaniel Daw'),
('The neural representation of behaviorally relevant acoustical sequences',
'Justin Kiggins'),
('The neural representation of behaviorally relevant acoustical sequences',
'Timothy Gentner'),
('Sparse and expansive representations in network models of associative memory',
'Baktash Babadi'),
('Sparse and expansive representations in network models of associative memory',
'Haim Sompolinsky'),
('Recurrent vs. feedforward networks: differences in neural code topology',
'Vladimir Itskov'),
('Recurrent vs. feedforward networks: differences in neural code topology',
'Carina Curto'),
('Long-term Decoding Stability without Retraining for Intracortical Brain Computer Interface',
'William Bishop'),
('Long-term Decoding Stability without Retraining for Intracortical Brain Computer Interface',
'Cynthia A Chestek'),
('Long-term Decoding Stability without Retraining for Intracortical Brain Computer Interface',
'Vikash Gilja'),
('Long-term Decoding Stability without Retraining for Intracortical Brain Computer Interface',
'Paul Nuyujukian'),
('Long-term Decoding Stability without Retraining for Intracortical Brain Computer Interface',
'Stephen Ryu'),
('Long-term Decoding Stability without Retraining for Intracortical Brain Computer Interface',
'Krishna Shenoy'),
('Long-term Decoding Stability without Retraining for Intracortical Brain Computer Interface',
'Byron Yu'),
('Neural threshold for patch leaving decisions in posterior cingulate cortex',
'David Barack'),
('Neural threshold for patch leaving decisions in posterior cingulate cortex',
'Benjamin Hayden'),
('Neural threshold for patch leaving decisions in posterior cingulate cortex',
'John Pearson'),
('Neural threshold for patch leaving decisions in posterior cingulate cortex',
'Michael Platt'),
('A hippocampal-cortical network underlies model-based planning in humans',
'Aaron Bornstein'),
('A hippocampal-cortical network underlies model-based planning in humans',
'Nathaniel Daw'),
('A hippocampal-cortical network underlies model-based planning in humans',
'Thomas Geib'),
('Probing mechanisms of contrast adaptation in retina with modeling of synaptic currents and spikes',
'Daniel Butts'),
('Probing mechanisms of contrast adaptation in retina with modeling of synaptic currents and spikes',
'Yanbin V. Wang'),
('Probing mechanisms of contrast adaptation in retina with modeling of synaptic currents and spikes',
'Jonathan B. Demb'),
('V1 and A1 maps: different topographies, a common organizing principle',
'Hiroki Terashima'),
('V1 and A1 maps: different topographies, a common organizing principle',
'Masato Okada'),
('Concurrent integration and gating of sensory information with orthogonal mixed representations',
'Valerio Mante'),
('Concurrent integration and gating of sensory information with orthogonal mixed representations',
'David Sussillo'),
('Concurrent integration and gating of sensory information with orthogonal mixed representations',
'Krishna Shenoy'),
('Concurrent integration and gating of sensory information with orthogonal mixed representations',
'William Newsome'),
('Using a doubly-stochastic model to analyze neuronal activity in the visual cortex',
'Robbe Goris'),
('Using a doubly-stochastic model to analyze neuronal activity in the visual cortex',
'Eero Simoncelli'),
('Using a doubly-stochastic model to analyze neuronal activity in the visual cortex',
'Tony Movshon'),
('Adaptive estimation of nonlinear response functions in V1 with Gaussian processes',
'Mijung Park'),
('Adaptive estimation of nonlinear response functions in V1 with Gaussian processes',
'Greg Horwitz'),
('Adaptive estimation of nonlinear response functions in V1 with Gaussian processes',
'Jonathan Pillow'),
('Identifying dendritic processing in Drosophila OSNs', 'Aurel Lazar'),
('Identifying dendritic processing in Drosophila OSNs', 'Yevgeniy Slutskiy'),
('Non-linear predictive coding and dynamic decorrelation in early sensory systems',
'Shaul Druckmann'),
('Non-linear predictive coding and dynamic decorrelation in early sensory systems',
'Dmitri Chklovskii'),
('A model of the effect of visual saliency on ethologically relevant, value-based decisions',
'R. Blythe Towal'),
('A model of the effect of visual saliency on ethologically relevant, value-based decisions',
'Mili Milosavljevic'),
('A model of the effect of visual saliency on ethologically relevant, value-based decisions',
'Christof Koch'),
('A Sequential Prediction Approach to Measure Time-Varying Causality in Ensemble Neural Recordings',
'Sanggyun Kim'),
('A Sequential Prediction Approach to Measure Time-Varying Causality in Ensemble Neural Recordings',
'Todd Coleman'),
('Efficient horizontal and vertical information processing in neural networks',
'Yen-Nan Lin'),
('Efficient horizontal and vertical information processing in neural networks',
'Yu-Chi Huang'),
('Efficient horizontal and vertical information processing in neural networks',
'Yi-Hsuan Lee'),
('Efficient horizontal and vertical information processing in neural networks',
'Chung-Chuan Lo'),
('Predictive Coding with linear threshold neurons', 'Arjun Bharioke'),
('Predictive Coding with linear threshold neurons', 'Dmitri Chklovskii'),
('The omitted stimulus response originates in ON bipolar cells ',
'Nikhil Deshmukh'),
('The omitted stimulus response originates in ON bipolar cells ',
'Frederick Soo'),
('The omitted stimulus response originates in ON bipolar cells ',
'Gregory Schwartz'),
('The omitted stimulus response originates in ON bipolar cells ',
'Michael Berry'),
('Detection of weak sensory signals by molecular dynamic transformations of interspike interval seque',
'William Nesse'),
('Detection of weak sensory signals by molecular dynamic transformations of interspike interval seque',
'Gary Marsat'),
('Detection of weak sensory signals by molecular dynamic transformations of interspike interval seque',
'Andre Longtin'),
('Detection of weak sensory signals by molecular dynamic transformations of interspike interval seque',
'Leonard Maler'),
('Dynamic grouping in neuronal networks by inhibition induced neuronal excitability transitions',
'Christoph Kirst'),
('Dynamic grouping in neuronal networks by inhibition induced neuronal excitability transitions',
'Julian Ammer'),
('Dynamic grouping in neuronal networks by inhibition induced neuronal excitability transitions',
'Felix Felmy'),
('Dynamic grouping in neuronal networks by inhibition induced neuronal excitability transitions',
'Andreas V.M. Herz'),
('Dynamic grouping in neuronal networks by inhibition induced neuronal excitability transitions',
'Martin Stemmler'),
('A high-performance, robust brain-machine interface without retraining',
'Paul Nuyujukian'),
('A high-performance, robust brain-machine interface without retraining',
'Jonathan Kao'),
('A high-performance, robust brain-machine interface without retraining',
'Joline Fan'),
('A high-performance, robust brain-machine interface without retraining',
'Sergey Stavisky'),
('A high-performance, robust brain-machine interface without retraining',
'Stephen Ryu'),
('A high-performance, robust brain-machine interface without retraining',
'Krishna Shenoy'),
('Generic and stimulus-dependent value signals are encoded in human ventromedial prefrontal cortex',
'Daniel McNamee'),
('Generic and stimulus-dependent value signals are encoded in human ventromedial prefrontal cortex',
'Antonio Rangel'),
('Generic and stimulus-dependent value signals are encoded in human ventromedial prefrontal cortex',
'John ODoherty'),
('A neural network model of the primate visuo-motor system',
'Christopher Kanan'),
('A neural network model of the primate visuo-motor system',
'Garrison Cottrell'),
('Sparse coding model of binocular receptive field development reproduces changes in abnormal rearing',
'Jonathan Hunt'),
('Sparse coding model of binocular receptive field development reproduces changes in abnormal rearing',
'Peter Dayan'),
('Sparse coding model of binocular receptive field development reproduces changes in abnormal rearing',
'Geoffrey Goodhill'),
('Semi-supervised learning of high-level representations of natural video sequences.',
'Steven Brumby'),
('Semi-supervised learning of high-level representations of natural video sequences.',
'Michael Ham'),
('Semi-supervised learning of high-level representations of natural video sequences.',
'Garrett Kenyon'),
('Trial-by-trial perceptual learning during odor category decisions: Value, uncertainty and dopamine',
'Thiago Gouvea'),
('Trial-by-trial perceptual learning during odor category decisions: Value, uncertainty and dopamine',
'Gil Costa'),
('Trial-by-trial perceptual learning during odor category decisions: Value, uncertainty and dopamine',
'Eric DeWitt'),
('Trial-by-trial perceptual learning during odor category decisions: Value, uncertainty and dopamine',
'Zachary Mainen'),
('Push-pull neural architecture naturally arises from optimal sensory stimulus detection',
'Tomoki Tsuchida'),
('Push-pull neural architecture naturally arises from optimal sensory stimulus detection',
'Angela Yu'),
('Optimally adapting heuristics: humans quickly abandon the constant bearing angle strategy',
'Constantin Rothkopf'),
('Optimally adapting heuristics: humans quickly abandon the constant bearing angle strategy',
'Paul Schrater'),
('The multi-class tempotron: a neuron model for processing of sensory streams',
'Robert G\xc2\xb8tig'),
('Gamma-frequency alterations allow neural sequences to replay at many different speeds',
'Omar Ahmed'),
('Gamma-frequency alterations allow neural sequences to replay at many different speeds',
'Sydney Cash'),
('Cognitive efficiency explains intelligence effects on risk sensitivity and temporal discounting',
'Nisheeth Srivastava'),
('Cognitive efficiency explains intelligence effects on risk sensitivity and temporal discounting',
'Paul Schrater'),
('Two-layer synaptic integration in pyramidal neurons', 'Bardia Behabadi'),
('Two-layer synaptic integration in pyramidal neurons', 'Bartlett Mel'),
('Nearly extensive sequential memory lifetime achieved by coupled nonlinear neurons',
'Taro Toyoizumi'),
('On the complementary strengths and weaknesses of spatial vs. hybrid map formation algorithms',
'Rishabh Jain'),
('On the complementary strengths and weaknesses of spatial vs. hybrid map formation algorithms',
'Bartlett Mel')]
In [61]:
Out[61]:
['A. Moses Lee',
'Aaron Bornstein',
'Aaron Koralek',
'Aaron Seitz',
'Aaron Suminski',
'Abigail Morrison',
'Abram Friesen',
'Abtine Tavassoli',
'Ad Aertsen',
'Adam Charles',
'Adam Johnson',
'Adam Kepecs',
'Adam Kohn',
'Adam Zaidel',
'Adrienne Fairhall',
'Ahmad Osman',
'Akinori Ebihara',
'Alain Marchand',
'Alaina Case',
'Alan Litke',
'Alan Stocker',
'Alan Veliz-Cuba',
'Alberto Bernacchia',
'Aldo Faisal',
'Alejandro Fernandez Bujan',
'Alex D. Reyes',
'Alex Gomez-Marin',
'Alex Huk',
'Alex Kwan',
'Alexandar Kozarev',
'Alexander Dimitrov',
'Alexander Ecker',
'Alexander Genkin',
'Alexander Huth',
'Alexandre Pouget',
'Alexandro Ramirez',
'Alfred Kaye',
'Ali Mohebi',
'Ali Neishabouri',
'Alireza Soltani',
'Alison Barker',
'Aljoscha Nern',
'Aljoscha Schulze',
'Alla Karpova',
'Alon Chen',
'Alon Rubin',
'Aman Saleem',
'Amy Peng',
'An Vu',
'Ana Raquel Martins',
'Anandamohan Ghosh',
'Anda Degeratu',
'Andre Longtin',
'Andre Mendonca',
'Andrea Barreiro',
'Andreas Schaefer',
'Andreas Thomik',
'Andreas Tolias',
'Andreas V.M. Herz',
'Andreea Lazar',
'Andrew Fagg',
'Andrew Lees',
'Andrew Leifer',
'Andrew Tan',
'Andrew Welchman',
'Andrew Zaharia',
'Angela Radulescu',
'Angela Yu',
'Anirvan Nandy',
'Anita Disney',
'Anne Churchland',
'Anne Collins',
'Annika Linke',
'Anthony Norcia',
'Anthony Zador',
'Antonello Bonci',
'Antonio Lara',
'Antonio Rangel',
'Anya Skatova',
'Arash Afraz',
'Arash Fassihi',
'Aravinthan Samuel',
'Ari Pakman',
'Ari Rosenberg',
'Arjun Bharioke',
'Arkarup Bandyopadhyay',
'Arnulf Graf',
'Arpiar Saunders',
'Arseny Finkelstein',
'Arvind Kumar',
'Ashok Litwin-Kumar',
'Asli Ayaz',
'Atbin Djamshidian',
'Athena Akrami',
'Aurel Lazar',
'Aviv Mezer',
'Ayse Yarali',
'Badr Albanna',
'Baktash Babadi',
'Balaji Sriram',
'Bard Ermentrout',
'Bardia Behabadi',
'Bart Larsen',
'Bartlett Mel',
'Behrad Noudoost',
'Benjamin Greenberg',
'Benjamin Hayden',
'Bernardo Sabatini',
'Beth Lopour',
'Bijan Pesaran',
'Bilal Bari',
'Bilal Haider',
'Biljana Petreska',
'Bingni Brunton',
'Bob Schafer',
'Bosco Tjan',
'Brent Doiron',
'Brett Vintch',
'Brian Flynn',
'Brian Wandell',
'Brice Bathellier',
'Britni Crocker',
'Brittany Burrows',
'Bruno Averbeck',
'Bruno Olshausen',
'Bryan Seybold',
'Byron Yu',
'C Shawn Green',
'Cahir O\xc3\xadKane',
'Caleb Kemere',
'Calin Buia',
'Carina Curto',
'Carl Smith',
'Carlos Brody',
'Carlotta Martelli',
'Caswell Barry',
'Catalin Rusu',
'Catherine Dulac',
'Cecilia Babul',
'Cengiz Pehlevan',
'Chaohui Guo',
'Charles Gray',
'Chi-Hon Lee',
'Chris Fang-Yen',
'Chris Rozell',
'Chris Werner',
'Christian Leibold',
'Christian Tetzlaff',
'Christine Portfors',
'Christof Koch',
'Christoph Schreiner',
'Christoph Kayser',
'Christoph Kirst',
'Christoph Kolodziejski',
'Christopher Cueva',
'Christopher Hillar',
'Christopher Kanan',
'Christopher Moore',
'Christopher Pack',
'Christos Constantinidis',
'Chun-Yuan Ting',
'Chung-Chuan Lo',
'Chunyu Duan',
'Cinira Diogo',
'Clark Fisher',
'Claudia Clopath',
'Constantin Rothkopf',
'Corey Ziemba',
'Corinne Teeter',
'Cristina Savin',
'Cristopher Niell',
'Cynthia A Chestek',
'DJ Strouse',
'Damon Chandler',
'Daniel Ben Dayan Rubin',
'Daniel Bullock',
'Daniel Butts',
'Daniel Coca',
'Daniel Huber',
'Daniel Kaping',
'Daniel Knudsen',
'Daniel Lee',
'Daniel Leventhal',
'Daniel Little',
'Daniel McNamee',
"Daniel O'Connor",
'Daniel Polley',
'Daniel Wolpert',
'Daniel Zoran',
'Danko Nikolic',
'Darin Dougherty',
'Dario Ringach',
'David Barack',
'David Barrett',
'David Field',
'David Freedman',
'David Kastner',
'David Morton',
'David Raposo',
'David Schneider',
'David Schulz',
'David Sussillo',
'Dean V. Buonomano',
'Dean Wyatte',
'Deborah Gunning',
'Deep Ganguli',
'Demian Battaglia',
'Diego Gutnisky',
'Dietmar Plenz',
'Dimitry Fisher',
'Dinu Albeanu',
'Dirk Walther',
'Dmitri Chklovskii',
'Dmitry Tsigankov',
'Dominique Pritchett',
'Dongsung Huh',
'Dora Angelaki',
'Dori Derdikman',
'Dougal Tervo',
'Douglas Ollerenshaw',
'EJ Chichilnisky',
'Earl Miller',
'Eddie Chang',
'Edith Reshef',
'Edward Boyden',
'Edward Callaway',
'Eero Simoncelli',
'Eftychios Pnevmatikakis',
'Einat Granot-Atedgi',
'Ekaterina Vinnik',
'Elad Ganmor',
'Elad Schneidman',
'Eldon Emberly',
'Elizabeth Hulme',
'Emad Eskandar',
'Emery Brown',
'Emily Anderson',
'Emre Aksay',
'Engin Bumbacher',
'Eran Eldar',
'Eran Lottem',
'Eran Mukamel',
'Eric Chen',
'Eric DeWitt',
'Eric Denovellis',
'Eric Reifenstein',
'Eric Shea-Brown',
'Eric Trautman',
'Ethan Bromberg-Martin',
'Ethan Meyers',
'Ethan Solomon',
'Etienne Koechlin',
'Eugenio Culurciello',
'Evan Archer',
'Evan Schaffer',
'Eyal Nitzany',
'Eyal Seidemann',
'Fanis Panagiotaropoulos',
'Farhan Khawaja',
'Farran Briggs',
'Felix Felmy',
'Felix Patzelt',
'Felix Wichmann',
'Feryal Mehraban Pour Behbahani',
'Florentin W\xcb\x86rg\xcb\x86tter',
'Florian Gerard-Mercier',
'Florian Rau',
'Francis Willett',
'Francoise Dellu-Hagedorn',
'Frank W. Ohl',
'Frank Wood',
'Franziska Hellmundt',
'Fred Marbach',
'Fred Rieke',
'Fred Wolf',
'Frederic Theunissen',
'Frederick Soo',
'Friedemann Zenke',
'Fritz Sommer',
'Fukunaga Izumi',
'Gabriel Kreiman',
'Garrett Kenyon',
'Garrett Stanley',
'Garrison Cottrell',
'Gary Marsat',
'Gasper Tkacik',
'Gautam Agarwal',
'Geoffrey Goodhill',
'George R. Mangun',
'George Whitesides',
'Georgia Gregoriou',
'Gerald Rubin',
'Gergo Orb\xc2\xb7n',
'Gerhard Jocham',
'Gil Costa',
'Gonzalo Otazu',
'Gordon Logan',
'Graham Cummins',
'Greg Field',
'Greg Horwitz',
'Gregory Schwartz',
'Gregory W Wornell',
'Grigorios Sotiropoulos',
'Guillaume Dugu\xc3\x88',
'Guillaume Hennequin',
'Guillaume Lajoie',
'Gus Lott',
'Guy Isely',
'Gyorgy Buzsaki',
'Ha Hong',
'Hachi Manzur',
'Haim Sompolinsky',
'Hamilton Farris',
'Han Lun Yap',
'Hang Zhang',
'Hania Kover',
'Hanlin Tang',
'Hannah Bernstein',
'Hans Trukenbrod',
'He Huang',
'He Zheng',
'Heesoo Kim',
'Helen Shen',
'Helga Mazyar',
'Henning Sprekeler',
'Hideaki Shimazaki',
'Hiroki Taniguchi',
'Hiroki Asari',
'Hiroki Terashima',
'Hiromu Tanimoto',
'Hiroshi Ban',
'Holly Gerhard',
'Hongdian Yang',
'Hongsup Shin',
'Hugo Fernandes',
'Ian Meinertzhagen',
'Ian Nauhaus',
'Ian Stevenson',
'Il Memming Park',
'Ila Fiete',
'Ilya Rybak',
'Ingmar Kanitscheider',
'Ingo Fr\xc2\xb8nd',
'Ioana Carcea',
'Irina Yonit Segal',
'Isaac Carruthers',
'Itai Pinkoviezsky',
'Itzhak Fried',
'I\xc3\x92igo Romero Arandia',
'Jack Gallant',
'Jacob Aptekar',
'Jacob Donoghue',
'Jacob Yates',
'Jacqueline Fulvio',
'Jakob Foerster',
'Jakob Macke',
'Jakob Voigts',
'Jaldert Rombouts',
'James DiCarlo',
'James Golden',
'James H Marshel',
'James M. Hyman',
'James Tee',
'James Trousdale',
'Jamie Near',
'Jan Clemens',
'Jan Drugowitsch',
'Jason Climer',
'Jason Fleischer',
'Jason Gerrard',
'Jason Hunzinger',
'Jason Rolfe',
'Javier Movellan',
'Jedidiah Carlson',
'Jeff Gavornik',
'Jeff Pettibone',
'Jeff Pobst',
'Jeffrey Beck',
'Jeffrey Erlich',
'Jeffrey Fitzgerald',
'Jeffrey Magee',
'Jeffrey Markowitz',
'Jeffrey Schall',
'Jeffrey Seely',
'Jeffrey Smith',
'Jelena Platisa',
'Jenia Jitsev',
'Jens Kremkow',
'Jeremy Freeman',
'Jeremy K. Seamans',
'Jessica A. Cardin',
'Jessica Fox',
'Jianzhong Jin',
'Jochen Triesch',
'Joel Alvarez',
'Johannes Burge',
'Johannes Nehrkorn',
'John Flannery',
'John Cunningham',
'John Gale',
'John Murray',
"John O'Doherty",
'John Pearson',
'John R Carlson',
'John Reppas',
'John Reynolds',
'John Sheppard',
'John Tuthill',
'John Widloski',
'Joline Fan',
'Jonathan Huggins',
'Jonathan B. Demb',
'Jonathan Cohen',
'Jonathan Hunt',
'Jonathan Kao',
'Jonathan Pillow',
'Jonathan Rubin',
'Jonathan Victor',
'Jonathan Wallis',
'Jonathan Winawer',
'Joon Hyuk Park',
'Jose Carmena',
'Jose-Manuel Alonso',
'Joseph Bergan',
'Joseph Madsen',
'Josh Huang',
'Josh McDermott',
'Joshua Berke',
'Joshua Gold',
'Joshua Levy',
'Joshua Siegle',
'Jozsef Fiser',
'Juan Florez Weidinger',
'Jude Mitchell',
'Judy Walker',
'Jugoslava Acimovic',
'Julian Ammer',
'Julijana Gjorgjieva',
'Junya Hirokawa',
'Justin Ales',
'Justin Kiggins',
'K. Jannis Hildebrandt',
'Kanaka Rajan',
'Karel Svoboda',
'Karim Oweiss',
'Karl Deisseroth',
'Kate Jeffery',
'Katherine Ames',
'Katherine Morrison',
'Kathryn Hedrick',
'Kay Thurley',
'Kayvon Daie',
'Kazuo Imaizumi',
'Kedarnath Vilankar',
'Keijo Ruohonen',
'Keith Johnson',
'Keith Mathieson',
'Kelvin So',
'Kendrick Kay',
'Kenneth Harris',
'Kent Conover',
'Kentaroh Takagaki',
'Kerstin Preuschoff',
'Kevin Beier',
'Kevin Lin',
'Kevin Shi',
'Kexin Yuan',
'KiJung Yoon',
'Klaus Pawelzik',
'Kolia Sadeghi',
'Konrad Kording',
'Kresimir Josic',
'Kris Chaisanguanthum',
'Krishna Shenoy',
'Kristin Branson',
'Kristina Nielsen',
'Kristofer Bouchard',
'Kyle Lepage',
'Larry Abbott',
'Lars Buesing',
'Laura Lewis',
'Laurel Carney',
'Lauren Jepson',
'Laurence Aitchison',
'Laurence Hunt',
'Laurence Maloney',
'Lawrence Sincich',
'Leigh Hochberg',
'Leonard Maler',
'Leslie Osborne',
'Li Zhaoping',
'Liam Paninski',
'Lin Tian',
'Linda Wilbrecht',
'Liu Liu',
'Loic Matthey',
'Loren Looger',
'Loren Frank',
'Lorric Ziegler',
'Lou Scheffer',
'Luigi Acerbi',
'Luke Urban',
'Lung-Hao Tai',
'Lyubov Ushakova',
'Magor Lorincz',
'Mandy Turner',
'Maneesh Sahani',
'Manuel Berning',
'Marc Gershow',
'Marc Sommer',
'Marc Timme',
'Marc Tittgemeyer',
'Margot Wohl',
'Maria Geffen',
'Maria Vicente',
'Marie McCulloch',
'Marino Pagan',
'Marissa Powers',
'Marja-Leena Linne',
'Mark Bear',
'Mark Churchland',
'Mark Frye',
'Mark Goldman',
'Mark Harnett',
'Mark Kramer',
'Mark Zarella',
'Markus Meister',
'Martin Greschner',
'Martin Stemmler',
'Martin Vinck',
'Maryam Shanechi',
'Maryam Vaziri-Pashkam',
'Masato Okada',
'Masud Husain',
'Mate Lengyel',
'Mathew E. Diamond',
'Matt Mian',
'Matt Smith',
'Matteo Carandini',
'Matthew Bodenhamer',
'Matthew Colonnese',
'Matthew Cook',
'Matthew Golub',
'Matthew Kaufman',
'Matthew Koh',
'Matthew Nassar',
'Matthew Wilson',
'Matthias Bethge',
'Matthias Kaschube',
'Matthieu Louis',
'Matthieu Wyart',
'Mattia Rigotti',
'Mattias Karlsson',
'Mayank Kabra',
'Mehmet Fisek',
'Mehrdad Jazayeri',
'Melanie Lee',
'Melchi Michel',
'Mengchen Zhu',
'Merav Stern',
'Michael Gedalin',
'Michael Ham',
'Michael Merzenich',
'Michael Berry',
'Michael Black',
'Michael Buice',
'Michael DeWeese',
'Michael Gastpar',
'Michael Graupner',
'Michael Hasselmo',
'Michael H\xe2\x80\xb0usser',
'Michael J Frank',
'Michael Okun',
'Michael Platt',
'Michael Reiser',
'Michael Schnabel',
'Michael Stryker',
'Michael T. Lippert',
'Michel Besserve',
'Michele Insanally',
'Michoel Snow',
'Mihaly Kollo',
'Mijung Park',
'Mikko Juusola',
'Mili Milosavljevic',
'Miranda Babiak',
'Misha Tsodyks',
'Motonori Yamaguchi',
'Nachum Ulanovsky',
'Najib Majaj',
'Natalia Shevtsova',
'Natalya Zaika',
'Nathaniel Daw',
'Neil Burgess',
'Nicholas Furl',
'Nicholas Hatsopoulos',
'Nicholas Price',
'Nicholas Priebe',
'Nicholas Steinmetz',
'Nick Ketz',
'Nicole Carlson',
'Nicole Rust',
'Nikhil Deshmukh',
'Nikos K. Logothetis',
'Nima Mesgarani',
'Nina C. Di Pietro',
'Ning Qian',
'Ning-long Xu',
'Nisheeth Srivastava',
'Noah Cowan',
'O. Ozan Koyluoglu',
'Odelia Schwartz',
'Okihide Hikosaka',
'Olivier List',
'Olivier Marre',
'Omar Ahmed',
'Omri Barak',
'Oren Forkosh',
'Pamela Reinagel',
'Panyue Deng',
'Parvez Ahammad',
'Pat Shoemaker',
'Patrick Cavanagh',
'Patrick Jasinski',
'Patrick Purdon',
'Patrick Stinson',
'Patr\xc3\x8ccia Correia',
'Paul Bays',
'Paul Nuyujukian',
'Paul Schrater',
'Pavel Itskov',
'Pedro Maldonado',
'Peggy Series',
'Peter Dayan',
'Peter Bossaerts',
'Peter Latham',
'Peter Li',
'Peter Shizgal',
'Petr Znamenskiy',
'Philip Sabes',
'Philipp Berens',
'Pierre Yger',
'Pieter Roelfsema',
'Pietro Berkes',
'Priyanka Gupta',
'Qi Wang',
'Quan Wen',
'R Channing Moore',
'R Ebitz',
'R. Blythe Towal',
'R. Matthias Hennig',
'Rachel Wilson',
'Rajesh Rao',
'Ralf Engbert',
'Ralf Haefner',
'Ralf Wessel',
'Ran Rubin',
"Randall O'Reilly",
'Ranulfo Romo',
'Raoul-Martin Memmesheimer',
'Rava da Silveira',
'Rebecca Solomon',
'Reza Lashgari',
'Rhodri Cusack',
'Richard Andersen',
'Richard Born',
'Richard Fetter',
'Richard Kempter',
'Richard Naud',
'Rishabh Jain',
'Ritwik Niyogi',
'Robbe Goris',
'Robert Desimone',
'Robert Froemke',
'Robert G\xc2\xb8tig',
'Robert Haslinger',
'Robert Rosenbaum',
'Robert Schmidt',
'Rodrigo Laje',
'Roger Hardie',
'Rollin Hu',
'Ronald Van Den Berg',
'Ronen Segev',
'Roozbeh Kiani',
'Ruben Coen-Cagli',
'Ruben Moreno',
'Ryan Natan',
'Ryan Rowekamp',
'S.A. Billings',
'Salva Ardid',
'Sameer Sheth',
'Sander Bohte',
'Sandro Romani',
'Sanggyun Kim',
'Santiago Jaramillo',
'Sarah Woolley',
'Saskia de Vries',
'Scott Taylor',
'Sean Kelly',
'Sean Trettel',
'Sergey Stavisky',
'Seth Madlon-Kay',
'Sethu Vijayakumar',
'Seung-Hee Lee',
'Shaiyan Keshvari',
'Shan Yu',
'Shantanu Jadhav',
'Shaowen Bao',
'Shaul Druckmann',
'Shaun Patel',
'Sherika Sylvester',
'Shiming Tang',
'Shin-ya Takemura',
'Shinji Nishimoto',
'Shirin Hadizadeh',
'Shiv Vitaladevuni',
'Sidhartha Dongre',
'Simon Barthelm\xc3\x88',
'Simon Peron',
'Simon Rumpel',
'Simon Sponberg',
'Siyu Zhang',
'Sotiris Masmanidis',
'Srinimisha Morkonda',
'Stan Floresco',
'Stanley Jose Komban',
'Stefan Everling',
'Stefano Fusi',
'Stefano Panzeri',
'Stephanie Gleiss',
'Stephen Baccus',
'Stephen Heinen',
'Stephen Plaza',
'Stephen Ryu',
'Stephen Williams',
'Steve Gotts',
'Steve Cox',
'Steven Brumby',
'Steven Chase',
'Stuart Layton',
'Stuart Yarrow',
'SueYeon Chung',
'Sukbin Lim',
'Supriya Ray',
'Susanne Schreiber',
'Sven Jahnke',
'Sway Chen',
'Sydney Cash',
'Tao Hu',
'Taro Toyoizumi',
'Tatiana Pasternak',
'Tatjana Tchumatchenko',
'Tatyana Sharpee',
'Terrence Sejnowski',
'Thiago Gouvea',
'Thierry Emonet',
'Thilo Womelsdorf',
'Thomas Clandinin',
'Thomas Geib',
'Thomas Palmeri',
'Thomas Wiecki',
'Tim Behrens',
'Tim P. Vogels',
'Timothy Buschman',
'Timothy Gardner',
'Timothy Gentner',
'Timothy Hanks',
'Tirin Moore',
'Todd Coleman',
'Tom Daniel',
'Tomoki Tsuchida',
'Tony Movshon',
'Trevor Wardill',
'Tuomo M\xe2\x80\xb0ki-Marttunen',
'Tyler Lee',
'Ulf Ziemann',
'Upinder S. Bhalla',
'Uri Eden',
'Urs Koster',
'Uwe Friederich',
'Vahid Esmaeili',
'Valerio Mante',
'Vani Rajendran',
'Vasileios Christopoulos',
'Veronica Weiner',
'Victor Chan',
'Victoria Butler',
'Victoria Phoumthipphavong',
'Vikash Gilja',
'Vikranth Bejjanki',
'Vincent Pieribone',
'Vincent Valton',
'Vishal Kapoor',
'Vitaly Klyachko',
'Vivek Jayaraman',
'Vivienne Ming',
'Vladimir Itskov',
'W. Martin Usrey',
'Walter German',
'Walter Talbott',
'Warasinee Chaisangmongkon',
'Wayne Greg',
'Wei Ji Ma',
'William Bialek',
'William Anderson',
'William Bishop',
'William Nesse',
'William Newsome',
'William Schafer',
'Wilson Geisler',
'Winrich Freiwald',
'Wolf Singer',
'Wolfgang Keil',
'Wulfram Gerstner',
'Xaq Pitkow',
'Xiao-Jing Wang',
'Xiaofeng Li',
'Xinyu Liu',
'Xue-Lian Qi',
'Xundong Wu',
'Yael Niv',
'Yair Shemesh',
'Yair Weiss',
'Yan Karklin',
'Yanbin V. Wang',
'Yang Dan',
'Yang Yang',
'Yann LeCun',
'Yannick-Andre Breton',
'Yanping Huang',
'Yarden Cohen',
'Yaroslav Molkov',
'Yehezkel Sztainberg',
'Yen-Nan Lin',
'Yevgeniy Slutskiy',
'Yi-Hsuan Lee',
'Yoram Ben-Shaul',
'Yoram Burak',
'Yosef Yarom',
'Yu-Chi Huang',
'Yuji Ikegaya',
'Yushi Wang',
'Yuwei Cui',
'Yuzhi Chen',
'Zachary Kilpatrick',
'Zachary Lindbloom-Brown',
'Zachary Mainen',
'Zachary Mayko',
'Zachary Roth',
'Zhai Fangwen',
'Zhiyuan Lu',
'Zhuo Wang',
'Ziqiang Wei',
'Ziv Rotman',
'Ziv Williams']
In [ ]:
Content source: vincentadam87/cosyne-visualization
Similar notebooks: