In [4]:
import pandas as pd
In [5]:
# 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 [6]:
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 [9]:
# 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":2} 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
links1= [{"source":node_to_id[a[0]],"target":node_to_id[a[1]],"value":links_aa[a]} for a in list(links_aa)]
links2= [{"source":node_to_id[a[0]],"target":node_to_id[a[1]],"value":1} for a in links_ap]
json2 = {"nodes":nodes,"links":links2}
with open("graph_authors_posters.json", "w") as text_file:
text_file.write(str(json2).replace("\\'", 'XXX').replace("'", '"').replace('XXX', "\\'").replace("\\", "") )
In [91]:
list(links_aa)+links_apauthors_list
Out[91]:
[('John Gale', 'Sameer Sheth'),
('Michael T. Lippert', 'Nikos K. Logothetis'),
('Gus Lott', 'Matthieu Louis'),
('Olivier List', 'Shiming Tang'),
('Alexander Genkin', 'Dmitri Chklovskii'),
('Kresimir Josic', 'James Trousdale'),
('Melanie Lee', 'Sherika Sylvester'),
('Andreas Tolias', 'Philipp Berens'),
('Wolf Singer', 'Danko Nikolic'),
('Mihaly Kollo', 'Manuel Berning'),
('Christoph Kayser', 'Nikos K. Logothetis'),
('Gerhard Jocham', 'Tim Behrens'),
('Parvez Ahammad', 'Alex Gomez-Marin'),
('Dmitry Tsigankov', 'Michael Schnabel'),
('Karl Deisseroth', 'Hiroki Taniguchi'),
('Eric Trautman', 'Chris Werner'),
('Andrew Leifer', 'Dmitri Chklovskii'),
('Steven Chase', 'Byron Yu'),
('Douglas Ollerenshaw', 'Garrett Stanley'),
('Caleb Kemere', 'Stuart Layton'),
('Benjamin Greenberg', 'Shaun Patel'),
('Adam Kohn', 'Odelia Schwartz'),
('Bingni Brunton', 'Jeffrey Erlich'),
('Raoul-Martin Memmesheimer', 'Haim Sompolinsky'),
('Eric Shea-Brown', 'Andrea Barreiro'),
('Katherine Morrison', 'Carina Curto'),
('Earl Miller', 'Cinira Diogo'),
('Alex Kwan', 'Josh Huang'),
('Yu-Chi Huang', 'Chung-Chuan Lo'),
('Daniel Zoran', 'Yair Weiss'),
('Michael Stryker', 'A. Moses Lee'),
('Lars Buesing', 'Maneesh Sahani'),
('R. Blythe Towal', 'Mili Milosavljevic'),
('Xinyu Liu', 'Marc Gershow'),
('Nikos K. Logothetis', 'Christoph Kayser'),
('Antonello Bonci', 'Linda Wilbrecht'),
('Roger Hardie', 'Cahir O\xc3\xadKane'),
('Hiroki Taniguchi', 'Victoria Phoumthipphavong'),
('Stefano Fusi', 'Omri Barak'),
('Sergey Stavisky', 'Paul Nuyujukian'),
('Patrick Purdon', 'Veronica Weiner'),
('William Anderson', 'Jacob Donoghue'),
('Chris Werner', 'Eric Trautman'),
('Michael Berry', 'Olivier Marre'),
('Michael Ham', 'Steven Brumby'),
('Victor Chan', 'Jason Hunzinger'),
('Chris Fang-Yen', 'William Schafer'),
('Dean Wyatte', 'Gabriel Kreiman'),
('Gyorgy Buzsaki', 'Fritz Sommer'),
('William Anderson', 'Leigh Hochberg'),
('Kristin Branson', 'Mayank Kabra'),
('Xiaofeng Li', 'Shiming Tang'),
('Alon Chen', 'Yehezkel Sztainberg'),
('John Reynolds', 'Emily Anderson'),
('John Sheppard', 'Anne Churchland'),
('Peter Dayan', 'Jonathan Hunt'),
('Urs Koster', 'Charles Gray'),
('Gabriel Kreiman', 'Hanlin Tang'),
('Ari Rosenberg', 'Dora Angelaki'),
('Ethan Solomon', 'Ha Hong'),
('Andrew Zaharia', 'Eero Simoncelli'),
('Christopher Cueva', 'John Reppas'),
('Eldon Emberly', 'Jeremy K. Seamans'),
('Greg Horwitz', 'Jonathan Pillow'),
('Stephen Heinen', 'Supriya Ray'),
('Michel Besserve', 'Vishal Kapoor'),
('Chris Fang-Yen', 'Victoria Butler'),
('Eran Mukamel', 'Patrick Purdon'),
('Emery Brown', 'William Anderson'),
('Daniel Kaping', 'Stefan Everling'),
('Cynthia A Chestek', 'William Bishop'),
('Gasper Tkacik', 'Elad Schneidman'),
('Chi-Hon Lee', 'Trevor Wardill'),
('Ana Raquel Martins', 'Christoph Schreiner'),
('Terrence Sejnowski', 'Dongsung Huh'),
('Charles Gray', 'Christopher Hillar'),
('Motonori Yamaguchi', 'Thomas Palmeri'),
('Matt Smith', 'Marc Sommer'),
('Patrick Purdon', 'William Anderson'),
('Dougal Tervo', 'Alla Karpova'),
('Yoram Burak', 'SueYeon Chung'),
('Susanne Schreiber', 'Andreas V.M. Herz'),
('Xinyu Liu', 'Quan Wen'),
('Arash Afraz', 'James DiCarlo'),
('Vani Rajendran', 'Vivek Jayaraman'),
('Martin Vinck', 'Salva Ardid'),
('Kolia Sadeghi', 'Yuji Ikegaya'),
('Hiroki Taniguchi', 'Karl Deisseroth'),
('Chun-Yuan Ting', 'Shiming Tang'),
('Marie McCulloch', 'Trevor Wardill'),
('Victoria Phoumthipphavong', 'Josh Huang'),
('Eran Mukamel', 'Laura Lewis'),
('Tim Behrens', 'Jamie Near'),
('Yu-Chi Huang', 'Yi-Hsuan Lee'),
('Joseph Madsen', 'Emad Eskandar'),
('Yoram Ben-Shaul', 'Joseph Bergan'),
('Daniel Butts', 'Liu Liu'),
('Tatyana Sharpee', 'Stephen Baccus'),
('KiJung Yoon', 'Michael Buice'),
('Daniel Coca', 'Uwe Friederich'),
('Okihide Hikosaka', 'Ethan Bromberg-Martin'),
('Diego Gutnisky', 'Simon Peron'),
('Matteo Carandini', 'Bilal Haider'),
('Jason Climer', 'Michael Hasselmo'),
('Daniel Ben Dayan Rubin', 'Mattia Rigotti'),
('Karel Svoboda', 'Lin Tian'),
('Eric Denovellis', 'Earl Miller'),
('George Whitesides', 'Dmitri Chklovskii'),
('Cristopher Niell', 'Michael Stryker'),
('Jens Kremkow', 'Jose-Manuel Alonso'),
('Daniel Polley', 'Christoph Schreiner'),
('Daniel Huber', 'Jeffrey Magee'),
('Thomas Palmeri', 'Jeffrey Schall'),
('Sarah Woolley', 'David Schneider'),
('Shaowen Bao', 'Badr Albanna'),
('Martin Stemmler', 'Julian Ammer'),
('Benjamin Greenberg', 'Matt Mian'),
('Christopher Moore', 'Caleb Kemere'),
('Quan Wen', 'William Schafer'),
('Angela Radulescu', 'Yael Niv'),
('Dinu Albeanu', 'Matthew Koh'),
('Demian Battaglia', 'Marc Timme'),
('Cecilia Babul', 'Joel Alvarez'),
('Anne Collins', 'Michael J Frank'),
('Loren Looger', 'Lin Tian'),
('Stephen Ryu', 'Maneesh Sahani'),
('Hannah Bernstein', 'Bryan Seybold'),
('Michael DeWeese', 'Vivienne Ming'),
('Marc Tittgemeyer', 'Jenia Jitsev'),
('Kyle Lepage', 'Robert Desimone'),
('Marc Gershow', 'Dmitri Chklovskii'),
('Dmitry Tsigankov', 'Wolfgang Keil'),
('Roger Hardie', 'Shiming Tang'),
('Judy Walker', 'Katherine Morrison'),
('Matthew Cook', 'Jason Rolfe'),
('Diego Gutnisky', 'Karel Svoboda'),
('Behrad Noudoost', 'Tirin Moore'),
('Gasper Tkacik', 'Michael Berry'),
('Qi Wang', 'Michael Black'),
('Vladimir Itskov', 'Judy Walker'),
('Cahir O\xc3\xadKane', 'Olivier List'),
('Katherine Ames', 'Stephen Ryu'),
('Margot Wohl', 'Luke Urban'),
('Graham Cummins', 'Christine Portfors'),
('Frank Wood', 'Carl Smith'),
('Vitaly Klyachko', 'Panyue Deng'),
('Zachary Mainen', 'Maria Vicente'),
('Chunyu Duan', 'Bingni Brunton'),
('Mark Goldman', 'Kayvon Daie'),
('Joel Alvarez', 'Pedro Maldonado'),
('Frank W. Ohl', 'Nikos K. Logothetis'),
('Matthew Wilson', 'Stuart Layton'),
('Hachi Manzur', 'Pedro Maldonado'),
('Jonathan B. Demb', 'Daniel Butts'),
('Peggy Series', 'Grigorios Sotiropoulos'),
('Loren Looger', 'Simon Peron'),
('Kayvon Daie', 'Dimitry Fisher'),
('Hans Trukenbrod', 'Ralf Engbert'),
('Kentaroh Takagaki', 'Stephanie Gleiss'),
('Dmitry Tsigankov', 'Juan Florez Weidinger'),
('Jeremy Freeman', 'Eero Simoncelli'),
('Linda Wilbrecht', 'Lung-Hao Tai'),
('Simon Rumpel', 'Lyubov Ushakova'),
('Yevgeniy Slutskiy', 'Aurel Lazar'),
('Jason Gerrard', 'Sameer Sheth'),
('Michael Merzenich', 'Daniel Polley'),
('Lung-Hao Tai', 'A. Moses Lee'),
('Patrick Purdon', 'Jacob Donoghue'),
('Ronald Van Den Berg', 'Hongsup Shin'),
('Gasper Tkacik', 'Einat Granot-Atedgi'),
('Richard Fetter', 'Zhiyuan Lu'),
('Arseny Finkelstein', 'Nachum Ulanovsky'),
('Zachary Mayko', 'Alexander Dimitrov'),
('Matteo Carandini', 'Maneesh Sahani'),
('Eran Mukamel', 'William Anderson'),
('Vani Rajendran', 'Gus Lott'),
('Shin-ya Takemura', 'Dmitri Chklovskii'),
('Seung-Hee Lee', 'Siyu Zhang'),
('Zachary Roth', 'Carina Curto'),
('Gasper Tkacik', 'Ronen Segev'),
('Tim P. Vogels', 'Guillaume Hennequin'),
('Margot Wohl', 'Marino Pagan'),
('Dario Ringach', 'Abtine Tavassoli'),
('Robert Desimone', 'Uri Eden'),
('Uwe Friederich', 'Daniel Coca'),
('Kolia Sadeghi', 'Hideaki Shimazaki'),
('Benjamin Greenberg', 'Sameer Sheth'),
('Brittany Burrows', 'Tirin Moore'),
('Dmitri Chklovskii', 'Sway Chen'),
('Greg Field', 'Alan Litke'),
('Vladimir Itskov', 'Anda Degeratu'),
('Julijana Gjorgjieva', 'Haim Sompolinsky'),
('Michael Black', 'Yushi Wang'),
('Greg Field', 'Deborah Gunning'),
('Liu Liu', 'Farhan Khawaja'),
('Dmitri Chklovskii', 'Aravinthan Samuel'),
('Tuomo M\xe2\x80\xb0ki-Marttunen', 'Jugoslava Acimovic'),
('Alex Gomez-Marin', 'Eric Trautman'),
('Valerio Mante', 'Krishna Shenoy'),
('Christopher Hillar', 'Fritz Sommer'),
('Robbe Goris', 'Eero Simoncelli'),
('Magor Lorincz', 'Zachary Mainen'),
('Mark Goldman', 'Emre Aksay'),
('Gerald Rubin', 'Aljoscha Nern'),
('Kedarnath Vilankar', 'David Field'),
('Alon Chen', 'Oren Forkosh'),
('Emery Brown', 'Gregory W Wornell'),
('Dougal Tervo', 'Kristin Branson'),
('Nick Ketz', 'Randall OReilly'),
('Christos Constantinidis', 'Xue-Lian Qi'),
('Magor Lorincz', 'Patr\xc3\x8ccia Correia'),
('Matthew Wilson', 'Joshua Siegle'),
('Yair Weiss', 'Daniel Zoran'),
('Justin Kiggins', 'Timothy Gentner'),
('Victoria Butler', 'Matthieu Wyart'),
('Jeffrey Erlich', 'Bingni Brunton'),
('Mikko Juusola', 'Shiming Tang'),
('Susanne Schreiber', 'Martin Stemmler'),
('Simon Sponberg', 'Tom Daniel'),
('Yen-Nan Lin', 'Yu-Chi Huang'),
('Alfred Kaye', 'Tatyana Sharpee'),
('Garrett Stanley', 'Yushi Wang'),
('Chi-Hon Lee', 'Xiaofeng Li'),
('Michael T. Lippert', 'Frank W. Ohl'),
('Nikhil Deshmukh', 'Gregory Schwartz'),
('Randall OReilly', 'Hanlin Tang'),
('Edward Boyden', 'Hiroki Taniguchi'),
('Nima Mesgarani', 'Kristofer Bouchard'),
('Alexandre Pouget', 'Vikranth Bejjanki'),
('Miranda Babiak', 'Eddie Chang'),
('Hiroki Taniguchi', 'Edward Boyden'),
('Jack Gallant', 'Tyler Lee'),
('Felix Wichmann', 'Simon Barthelm\xc3\x88'),
('Jude Mitchell', 'Emily Anderson'),
('Jianzhong Jin', 'Yushi Wang'),
('Emery Brown', 'Maryam Shanechi'),
('Arpiar Saunders', 'Bernardo Sabatini'),
('Diego Gutnisky', 'Daniel Huber'),
('Dora Angelaki', 'Ari Rosenberg'),
('Dimitry Fisher', 'Mark Goldman'),
('Katherine Morrison', 'Vladimir Itskov'),
('William Schafer', 'Sway Chen'),
('Aljoscha Schulze', 'Vani Rajendran'),
('Pierre Yger', 'Florian Gerard-Mercier'),
('Laura Lewis', 'Veronica Weiner'),
('Michael Berry', 'Joshua Levy'),
('Ila Fiete', 'Sean Trettel'),
('EJ Chichilnisky', 'Lauren Jepson'),
('Eran Lottem', 'Magor Lorincz'),
('Joseph Madsen', 'Emery Brown'),
('Matthieu Louis', 'Eric Trautman'),
('Wilson Geisler', 'Melchi Michel'),
('Thierry Emonet', 'Carlotta Martelli'),
('Ralf Wessel', 'David Morton'),
('Xiao-Jing Wang', 'Alberto Bernacchia'),
('Wolfgang Keil', 'Juan Florez Weidinger'),
('Alaina Case', 'Robert Schmidt'),
('Loren Frank', 'Matthew Wilson'),
('Alain Marchand', 'Peggy Series'),
('Caswell Barry', 'Michael Buice'),
('Josh Huang', 'Karl Deisseroth'),
('Alexandre Pouget', 'Jeffrey Beck'),
('Shiming Tang', 'Xiaofeng Li'),
('Liam Paninski', 'Carl Smith'),
('Jacob Aptekar', 'Jessica Fox'),
('Adam Kohn', 'Jan Drugowitsch'),
('Richard Kempter', 'Susanne Schreiber'),
('Jens Kremkow', 'Stanley Jose Komban'),
('Ronen Segev', 'Einat Granot-Atedgi'),
('A. Moses Lee', 'Linda Wilbrecht'),
('Rajesh Rao', 'Abram Friesen'),
('Robert Haslinger', 'Rollin Hu'),
('Hamilton Farris', 'Kazuo Imaizumi'),
('Peter Li', 'Alan Litke'),
('Daniel Butts', 'Christopher Pack'),
('Jakob Foerster', 'Dori Derdikman'),
('Laura Lewis', 'Eran Mukamel'),
('Andreas V.M. Herz', 'Hiromu Tanimoto'),
('Yang Dan', 'Josh Huang'),
('John Flannery', 'Alex Kwan'),
('Karel Svoboda', 'Daniel Huber'),
('Shiv Vitaladevuni', 'Zhiyuan Lu'),
('Anthony Norcia', 'Justin Ales'),
('Adam Kohn', 'I\xc3\x92igo Romero Arandia'),
('Walter Talbott', 'Javier Movellan'),
('Matteo Carandini', 'Asli Ayaz'),
('Nina C. Di Pietro', 'Eldon Emberly'),
('Michael Gedalin', 'Irina Yonit Segal'),
('Einat Granot-Atedgi', 'Ronen Segev'),
('Michael DeWeese', 'Hania Kover'),
('Emad Eskandar', 'Patrick Purdon'),
('Deborah Gunning', 'EJ Chichilnisky'),
('Sotiris Masmanidis', 'Edward Boyden'),
('Michael Buice', 'Ila Fiete'),
('Andrew Leifer', 'Xinyu Liu'),
('Simon Sponberg', 'Adrienne Fairhall'),
('Rajesh Rao', 'Yanping Huang'),
('Matteo Carandini', 'Aman Saleem'),
('Julian Ammer', 'Felix Felmy'),
('Vishal Kapoor', 'Andreas Tolias'),
('Stephen Baccus', 'David Kastner'),
('Jacob Aptekar', 'Mark Frye'),
('Krishna Shenoy', 'Valerio Mante'),
('Yosef Yarom', 'Larry Abbott'),
('Ronen Segev', 'Irina Yonit Segal'),
('Sidhartha Dongre', 'Roger Hardie'),
('Natalya Zaika', 'Alison Barker'),
('David Sussillo', 'Larry Abbott'),
('Yuji Ikegaya', 'Taro Toyoizumi'),
('Rava da Silveira', 'Eric Chen'),
('Ana Raquel Martins', 'Michael Merzenich'),
('Mark Goldman', 'Sukbin Lim'),
('Jonathan Kao', 'Stephen Ryu'),
('Mikko Juusola', 'Roger Hardie'),
('Jacob Donoghue', 'Veronica Weiner'),
('Caleb Kemere', 'Christopher Moore'),
('Omri Barak', 'Mattia Rigotti'),
('Adrienne Fairhall', 'Simon Sponberg'),
('Amy Peng', 'Vitaly Klyachko'),
('Sanggyun Kim', 'Todd Coleman'),
('Eric Trautman', 'Vani Rajendran'),
('Quan Wen', 'Dmitri Chklovskii'),
('David Barack', 'John Pearson'),
('Matthieu Louis', 'Vani Rajendran'),
('Yann LeCun', 'Jason Rolfe'),
('Ruben Coen-Cagli', 'Adam Kohn'),
('Ingo Fr\xc2\xb8nd', 'Jakob Macke'),
('Oren Forkosh', 'Yehezkel Sztainberg'),
('Anirvan Nandy', 'Bosco Tjan'),
('Maneesh Sahani', 'Matteo Carandini'),
('Michael DeWeese', 'Heesoo Kim'),
('Bryan Seybold', 'Hannah Bernstein'),
('Frank W. Ohl', 'Kentaroh Takagaki'),
('Veronica Weiner', 'Emery Brown'),
('Mark Frye', 'Jessica Fox'),
('Stefano Fusi', 'Daniel Ben Dayan Rubin'),
('Andreas V.M. Herz', 'Johannes Nehrkorn'),
('Jenia Jitsev', 'Marc Tittgemeyer'),
('Elad Schneidman', 'Yehezkel Sztainberg'),
('Kent Conover', 'Rebecca Solomon'),
('George R. Mangun', 'Farran Briggs'),
('Marino Pagan', 'Margot Wohl'),
('Robert Froemke', 'Michael Merzenich'),
('Jakob Voigts', 'Christopher Moore'),
('Daniel Coca', 'Mikko Juusola'),
('Joshua Siegle', 'Caleb Kemere'),
('Leigh Hochberg', 'Patrick Purdon'),
('Victoria Butler', 'William Schafer'),
('Engin Bumbacher', 'Vivienne Ming'),
('Yuji Ikegaya', 'Hideaki Shimazaki'),
('Mark Harnett', 'Karel Svoboda'),
('Sameer Sheth', 'Benjamin Greenberg'),
('Joel Alvarez', 'Hachi Manzur'),
('Mikko Juusola', 'Cahir O\xc3\xadKane'),
('Xinyu Liu', 'Victoria Butler'),
('Aravinthan Samuel', 'Andrew Leifer'),
('Paul Nuyujukian', 'William Bishop'),
('Edward Boyden', 'Seung-Hee Lee'),
('Robert Schmidt', 'Joshua Berke'),
('Daniel Lee', 'Alan Stocker'),
('Liu Liu', 'Christopher Pack'),
('David Sussillo', 'Misha Tsodyks'),
('Robert Desimone', 'Mark Kramer'),
('Marc Gershow', 'Xinyu Liu'),
('Fred Marbach', 'Matthew Koh'),
('Heesoo Kim', 'Hania Kover'),
('Maria Vicente', 'Andre Mendonca'),
('Yuwei Cui', 'Christopher Pack'),
('Timothy Hanks', 'Jeffrey Erlich'),
('Alain Marchand', 'Francoise Dellu-Hagedorn'),
('Marc Gershow', 'Sway Chen'),
('Ethan Solomon', 'Najib Majaj'),
('Reza Lashgari', 'Stanley Jose Komban'),
('Jens Kremkow', 'Yushi Wang'),
('Daniel Huber', 'Mark Harnett'),
('Eran Mukamel', 'Emery Brown'),
('Trevor Wardill', 'Sidhartha Dongre'),
('Hideaki Shimazaki', 'Yuji Ikegaya'),
('Bilal Bari', 'Douglas Ollerenshaw'),
('Paul Bays', 'Peter Dayan'),
('Peter Dayan', 'Peter Shizgal'),
('Greg Field', 'EJ Chichilnisky'),
('Eran Mukamel', 'Joseph Madsen'),
('Daniel Huber', 'Loren Looger'),
('Andrew Leifer', 'Matthieu Wyart'),
('Sean Kelly', 'Jose-Manuel Alonso'),
('Maria Vicente', 'Alexandre Pouget'),
('Xinyu Liu', 'Aravinthan Samuel'),
('Andrew Leifer', 'Victoria Butler'),
('Randall OReilly', 'Dean Wyatte'),
('Alireza Soltani', 'Behrad Noudoost'),
('Arkarup Bandyopadhyay', 'Matthew Koh'),
('Liam Paninski', 'Alexandro Ramirez'),
('Ioana Carcea', 'Alison Barker'),
('Sergey Stavisky', 'Krishna Shenoy'),
('Stephen Ryu', 'Matthew Kaufman'),
('Matthew Kaufman', 'Biljana Petreska'),
('Cahir O\xc3\xadKane', 'Shiming Tang'),
('Wolf Singer', 'Andreea Lazar'),
('Jeffrey Beck', 'Wei Ji Ma'),
('Victor Chan', 'Robert Froemke'),
('Yushi Wang', 'Michael Black'),
('Atbin Djamshidian', 'Nicholas Furl'),
('Keith Mathieson', 'Greg Field'),
('Christian Leibold', 'Franziska Hellmundt'),
('Aaron Seitz', 'Peggy Series'),
('Hiroki Taniguchi', 'Siyu Zhang'),
('Trevor Wardill', 'Shiming Tang'),
('Victor Chan', 'Corinne Teeter'),
('Manuel Berning', 'Andreas Schaefer'),
('Ha Hong', 'Najib Majaj'),
('Joshua Siegle', 'Stuart Layton'),
('Aljoscha Nern', 'Gerald Rubin'),
('Qi Wang', 'Jianzhong Jin'),
('Ioana Carcea', 'Michael Merzenich'),
('Joseph Madsen', 'Eran Mukamel'),
('Nicholas Priebe', 'Andrew Tan'),
('Ziqiang Wei', 'Tao Hu'),
('Victoria Butler', 'Dmitri Chklovskii'),
('Farhan Khawaja', 'Liu Liu'),
('Javier Movellan', 'Walter Talbott'),
('Liam Paninski', 'Frank Wood'),
('Srinimisha Morkonda', 'Nick Ketz'),
('Fanis Panagiotaropoulos', 'Michel Besserve'),
('Thomas Palmeri', 'Motonori Yamaguchi'),
('Santiago Jaramillo', 'Anthony Zador'),
('Kexin Yuan', 'Christoph Schreiner'),
('Leigh Hochberg', 'Jacob Donoghue'),
('Aljoscha Nern', 'John Tuthill'),
('Andrew Leifer', 'Aravinthan Samuel'),
('Kenneth Harris', 'Michael Okun'),
('Ruben Coen-Cagli', 'Michoel Snow'),
('Christoph Kirst', 'Marc Timme'),
('David Sussillo', 'William Newsome'),
('Marc Tittgemeyer', 'Abigail Morrison'),
('Yair Shemesh', 'Alon Chen'),
('Nathaniel Daw', 'Mattia Rigotti'),
('Jeffrey Magee', 'Daniel Huber'),
('David Kastner', 'Tatyana Sharpee'),
('Carlotta Martelli', 'Thierry Emonet'),
('Dietmar Plenz', 'Shan Yu'),
('Ian Meinertzhagen', 'Stephen Plaza'),
('Kent Conover', 'Peter Shizgal'),
('Fred Wolf', 'Matthias Kaschube'),
('Philipp Berens', 'Andreas Tolias'),
('Zachary Mayko', 'Graham Cummins'),
('Robert Froemke', 'Kexin Yuan'),
('Tatyana Sharpee', 'John Reynolds'),
('Byron Yu', 'William Bishop'),
('Dinu Albeanu', 'Arkarup Bandyopadhyay'),
('Roozbeh Kiani', 'Christopher Cueva'),
('Michael Merzenich', 'Robert Froemke'),
('Victoria Phoumthipphavong', 'John Flannery'),
('Atbin Djamshidian', 'Andrew Lees'),
('Anda Degeratu', 'Vladimir Itskov'),
('John Gale', 'Benjamin Greenberg'),
('Helen Shen', 'Philip Sabes'),
('Marie McCulloch', 'Roger Hardie'),
('Daniel Ben Dayan Rubin', 'Stefano Fusi'),
('Stephen Plaza', 'Shin-ya Takemura'),
('Noah Cowan', 'Dora Angelaki'),
('William Schafer', 'Victoria Butler'),
('Pietro Berkes', 'Jozsef Fiser'),
('Andrew Fagg', 'Aaron Suminski'),
('Ilya Rybak', 'Yaroslav Molkov'),
('Jude Mitchell', 'Tatyana Sharpee'),
('Patrick Purdon', 'Eran Mukamel'),
('Kristina Nielsen', 'Edward Callaway'),
('Zhiyuan Lu', 'Shiv Vitaladevuni'),
('Pedro Maldonado', 'Hachi Manzur'),
('Mattia Rigotti', 'Omri Barak'),
('Kexin Yuan', 'Daniel Polley'),
('Evan Schaffer', 'Larry Abbott'),
('Alaina Case', 'Daniel Leventhal'),
('Alexander Dimitrov', 'Christine Portfors'),
('Robert Froemke', 'Jason Hunzinger'),
('Charles Gray', 'Bruno Olshausen'),
('Yang Yang', 'Anthony Zador'),
('Alaina Case', 'Jeff Pettibone'),
('Jianzhong Jin', 'Stanley Jose Komban'),
('William Newsome', 'Krishna Shenoy'),
('Joshua Levy', 'Michael Berry'),
('Marja-Leena Linne', 'Keijo Ruohonen'),
('Sethu Vijayakumar', 'Luigi Acerbi'),
('Daniel McNamee', 'Antonio Rangel'),
('Patrick Purdon', 'Emery Brown'),
('Dean V. Buonomano', 'Rodrigo Laje'),
('Josh Huang', 'Edward Boyden'),
('Andrew Welchman', 'Hiroshi Ban'),
('Laurel Carney', 'Brian Flynn'),
('Paul Schrater', 'Anne Churchland'),
('Randall OReilly', 'Nick Ketz'),
('Alison Barker', 'Hannah Bernstein'),
('James Trousdale', 'Kresimir Josic'),
('Matt Mian', 'Benjamin Greenberg'),
('Hania Kover', 'Michael DeWeese'),
('Leslie Osborne', 'Patrick Stinson'),
('Eric Shea-Brown', 'Kevin Lin'),
('Eric Shea-Brown', 'Guillaume Lajoie'),
('Jeff Pettibone', 'Alaina Case'),
('Markus Meister', 'Hiroki Asari'),
('Alex Gomez-Marin', 'Parvez Ahammad'),
('Leigh Hochberg', 'Veronica Weiner'),
('Paul Bays', 'Loic Matthey'),
('DJ Strouse', 'Xundong Wu'),
('John Cunningham', 'Krishna Shenoy'),
('Kris Chaisanguanthum', 'Helen Shen'),
('John Murray', 'Xiao-Jing Wang'),
('William Newsome', 'Christopher Cueva'),
('KiJung Yoon', 'Neil Burgess'),
('Daniel Bullock', 'Earl Miller'),
('Matthias Kaschube', 'Michael Schnabel'),
('Timothy Buschman', 'Earl Miller'),
('Robert Froemke', 'Daniel Polley'),
('Parvez Ahammad', 'Chris Werner'),
('Kenneth Harris', 'Aman Saleem'),
('Fred Rieke', 'Andrea Barreiro'),
('Dmitri Chklovskii', 'Quan Wen'),
('Ziv Williams', 'Robert Haslinger'),
('Thilo Womelsdorf', 'Martin Vinck'),
('Michael H\xe2\x80\xb0usser', 'Matteo Carandini'),
('Francis Willett', 'Nicholas Hatsopoulos'),
('Matthieu Louis', 'Alex Gomez-Marin'),
('John Gale', 'Shaun Patel'),
('Jan Drugowitsch', 'Etienne Koechlin'),
('Loic Matthey', 'Paul Bays'),
('Wei Ji Ma', 'Ronald Van Den Berg'),
('Seung-Hee Lee', 'Victoria Phoumthipphavong'),
('Ethan Meyers', 'Christos Constantinidis'),
('Benjamin Hayden', 'Michael Platt'),
('Ila Fiete', 'KiJung Yoon'),
('Jozsef Fiser', 'Ralf Haefner'),
('Tim P. Vogels', 'Wulfram Gerstner'),
('Thiago Gouvea', 'Zachary Mainen'),
('Ethan Bromberg-Martin', 'Okihide Hikosaka'),
('Loren Looger', 'Diego Gutnisky'),
('Nachum Ulanovsky', 'Dori Derdikman'),
('Thiago Gouvea', 'Eric DeWitt'),
('Gregory Schwartz', 'Michael Berry'),
('Vikash Gilja', 'Cynthia A Chestek'),
('William Anderson', 'Laura Lewis'),
('Greg Horwitz', 'Mijung Park'),
('Britni Crocker', 'Michel Besserve'),
('Gyorgy Buzsaki', 'Gautam Agarwal'),
('Nathaniel Daw', 'Stefano Fusi'),
('Vincent Valton', 'Francoise Dellu-Hagedorn'),
('Arash Fassihi', 'Mathew E. Diamond'),
('Melchi Michel', 'Yuzhi Chen'),
('Daniel Butts', 'Yanbin V. Wang'),
('Matteo Carandini', 'Pierre Yger'),
('Stephen Ryu', 'William Bishop'),
('Xiao-Jing Wang', 'John Murray'),
('Peter Li', 'Greg Field'),
('Alexander Huth', 'Shinji Nishimoto'),
('John Gale', 'Darin Dougherty'),
('John Tuthill', 'Michael Reiser'),
('Carina Curto', 'Judy Walker'),
('Nachum Ulanovsky', 'Jakob Foerster'),
('Mattia Rigotti', 'Stefano Fusi'),
('Alan Veliz-Cuba', 'Carina Curto'),
('Lauren Jepson', 'EJ Chichilnisky'),
('Bilal Bari', 'Qi Wang'),
('Biljana Petreska', 'Maneesh Sahani'),
('Karim Oweiss', 'Ali Mohebi'),
('Laurence Maloney', 'Hang Zhang'),
('Richard Fetter', 'Ian Meinertzhagen'),
('Georgia Gregoriou', 'Steve Gotts'),
('Joseph Madsen', 'Hanlin Tang'),
('Nathaniel Daw', 'Bijan Pesaran'),
('Mate Lengyel', 'DJ Strouse'),
('Emad Eskandar', 'Shaun Patel'),
('Joseph Madsen', 'Laura Lewis'),
('Alan Veliz-Cuba', 'Vladimir Itskov'),
('Ethan Meyers', 'Xue-Lian Qi'),
('Merav Stern', 'Yosef Yarom'),
('Bilal Bari', 'He Zheng'),
('Roger Hardie', 'Marie McCulloch'),
('Konrad Kording', 'Hugo Fernandes'),
('Marc Gershow', 'Matthieu Wyart'),
('Jason Hunzinger', 'Robert Froemke'),
('Guy Isely', 'Fritz Sommer'),
('Emily Anderson', 'Jude Mitchell'),
('Vishal Kapoor', 'Stefano Panzeri'),
('Christopher Moore', 'Jakob Voigts'),
('Patrick Jasinski', 'Natalia Shevtsova'),
('Mehrdad Jazayeri', 'Greg Horwitz'),
('Omri Barak', 'Larry Abbott'),
('Stanley Jose Komban', 'Jianzhong Jin'),
('Akinori Ebihara', 'Winrich Freiwald'),
('Andreea Lazar', 'Danko Nikolic'),
('Melchi Michel', 'Wilson Geisler'),
('William Bishop', 'Cynthia A Chestek'),
('Bartlett Mel', 'DJ Strouse'),
('Chris Rozell', 'Mengchen Zhu'),
('Emad Eskandar', 'Leigh Hochberg'),
('SueYeon Chung', 'Yoram Burak'),
('Garrett Stanley', 'Jose-Manuel Alonso'),
('Matt Mian', 'Sameer Sheth'),
('Paul Schrater', 'C Shawn Green'),
('Jonathan Winawer', 'Brian Wandell'),
('Brice Bathellier', 'Lyubov Ushakova'),
('Asli Ayaz', 'Matteo Carandini'),
('Parvez Ahammad', 'Vani Rajendran'),
('Jeffrey Seely', 'Krishna Shenoy'),
('Arash Fassihi', 'Vahid Esmaeili'),
('Jeffrey Magee', 'Ning-long Xu'),
('Fred Marbach', 'Dinu Albeanu'),
('Ian Stevenson', 'Konrad Kording'),
('Kathryn Hedrick', 'Steve Cox'),
('Bernardo Sabatini', 'Kevin Beier'),
('Liu Liu', 'Daniel Butts'),
('Peter Dayan', 'Kent Conover'),
('Natalya Zaika', 'Hannah Bernstein'),
('Veronica Weiner', 'Jacob Donoghue'),
('Andrew Zaharia', 'Tony Movshon'),
('Joline Fan', 'Jonathan Kao'),
('Marc Gershow', 'William Schafer'),
('Klaus Pawelzik', 'Felix Patzelt'),
('Chris Fang-Yen', 'Aravinthan Samuel'),
('Stephen Ryu', 'Joline Fan'),
('Rebecca Solomon', 'Kent Conover'),
('Lung-Hao Tai', 'Linda Wilbrecht'),
('Chunyu Duan', 'Carlos Brody'),
('Natalya Zaika', 'Ioana Carcea'),
('Mathew E. Diamond', 'Arash Fassihi'),
('Carina Curto', 'Alan Veliz-Cuba'),
('Trevor Wardill', 'Roger Hardie'),
('Martin Vinck', 'Daniel Kaping'),
('Jacob Donoghue', 'William Anderson'),
('Hideaki Shimazaki', 'Kolia Sadeghi'),
('Daniel Butts', 'Farhan Khawaja'),
('Dominique Pritchett', 'Christopher Moore'),
('Anne Churchland', 'John Sheppard'),
('Byron Yu', 'Steven Chase'),
('Anandamohan Ghosh', 'Ronen Segev'),
('John Reynolds', 'Anirvan Nandy'),
('Hiroki Taniguchi', 'Alex Kwan'),
('Ulf Ziemann', 'Jochen Triesch'),
('Stephen Plaza', 'Zhiyuan Lu'),
('George Whitesides', 'William Schafer'),
('Ronen Segev', 'Michael Gedalin'),
('Emad Eskandar', 'Darin Dougherty'),
('John Widloski', 'Ila Fiete'),
('Hania Kover', 'Michele Insanally'),
('Greg Field', 'Keith Mathieson'),
('David Barack', 'Benjamin Hayden'),
('Karl Deisseroth', 'Yang Dan'),
('Yushi Wang', 'Qi Wang'),
('Walter German', 'Shantanu Jadhav'),
('Frederic Theunissen', 'R Channing Moore'),
('Wei Ji Ma', 'Helga Mazyar'),
('Aman Saleem', 'Matteo Carandini'),
('Hannah Bernstein', 'Natalya Zaika'),
('Brittany Burrows', 'Alireza Soltani'),
('Kyle Lepage', 'Uri Eden'),
('Francoise Dellu-Hagedorn', 'Alain Marchand'),
('Ning-long Xu', 'Daniel OConnor'),
('Shan Yu', 'Dietmar Plenz'),
('Nima Mesgarani', 'Keith Johnson'),
('Yu-Chi Huang', 'Yen-Nan Lin'),
('Daniel OConnor', 'Ning-long Xu'),
('Daniel Polley', 'Bryan Seybold'),
('Alison Barker', 'Natalya Zaika'),
('Jeffrey Beck', 'Vikranth Bejjanki'),
('Ad Aertsen', 'Arvind Kumar'),
('John Sheppard', 'David Raposo'),
('Jianzhong Jin', 'Jens Kremkow'),
('Brian Flynn', 'Laurel Carney'),
('Motonori Yamaguchi', 'Gordon Logan'),
('Ning-long Xu', 'Stephen Williams'),
('Arjun Bharioke', 'Richard Fetter'),
('Arjun Bharioke', 'Lou Scheffer'),
('Garrett Stanley', 'Bilal Bari'),
('Lin Tian', 'Diego Gutnisky'),
('Stuart Layton', 'Jakob Voigts'),
('Aravinthan Samuel', 'Sway Chen'),
('Andre Longtin', 'William Nesse'),
('Frederick Soo', 'Nikhil Deshmukh'),
('Stefan Everling', 'Thilo Womelsdorf'),
('Michele Insanally', 'Heesoo Kim'),
('Ruben Coen-Cagli', 'Odelia Schwartz'),
('Lin Tian', 'Karel Svoboda'),
('Caleb Kemere', 'Loren Frank'),
('Robert Froemke', 'Natalya Zaika'),
('Stefano Panzeri', 'Andreas Tolias'),
('Stan Floresco', 'Eldon Emberly'),
('Vani Rajendran', 'Aljoscha Schulze'),
('Robert Desimone', 'Steve Gotts'),
('John Reppas', 'Christopher Cueva'),
('Il Memming Park', 'Evan Archer'),
('Laura Lewis', 'Leigh Hochberg'),
('Garrett Stanley', 'Douglas Ollerenshaw'),
('Florentin W\xcb\x86rg\xcb\x86tter', 'Christian Tetzlaff'),
('Patrick Purdon', 'Laura Lewis'),
('Dori Derdikman', 'Arseny Finkelstein'),
('Omri Barak', 'Stefano Fusi'),
('Hugo Fernandes', 'Ian Stevenson'),
('Gabriel Kreiman', 'Joseph Madsen'),
('Kyle Lepage', 'Georgia Gregoriou'),
('Aljoscha Schulze', 'Matthieu Louis'),
('Dmitri Chklovskii', 'Chris Fang-Yen'),
('Ryan Natan', 'Maria Geffen'),
('Odelia Schwartz', 'Michoel Snow'),
('Quan Wen', 'Chris Fang-Yen'),
('Nikhil Deshmukh', 'Michael Berry'),
('Chris Fang-Yen', 'Dmitri Chklovskii'),
('Matthew Wilson', 'Christopher Moore'),
('Liu Liu', 'Yuwei Cui'),
('Brent Doiron', 'Robert Rosenbaum'),
('Elizabeth Hulme', 'William Schafer'),
('Jacob Yates', 'Alex Huk'),
('Angela Radulescu', 'Jonathan Cohen'),
('Martin Greschner', 'Peter Li'),
('Hania Kover', 'Badr Albanna'),
('Kentaroh Takagaki', 'Nikos K. Logothetis'),
('Victoria Phoumthipphavong', 'Seung-Hee Lee'),
('Joshua Siegle', 'Christopher Moore'),
('Aaron Bornstein', 'Nathaniel Daw'),
('Sean Kelly', 'Garrett Stanley'),
('Uwe Friederich', 'Mikko Juusola'),
('Joshua Siegle', 'Dominique Pritchett'),
('Yuwei Cui', 'Liu Liu'),
('Eddie Chang', 'Keith Johnson'),
('Rebecca Solomon', 'Peter Dayan'),
('David Sussillo', 'Omri Barak'),
('Brittany Burrows', 'Bob Schafer'),
('Salva Ardid', 'Martin Vinck'),
('Andre Longtin', 'Gary Marsat'),
('Tuomo M\xe2\x80\xb0ki-Marttunen', 'Keijo Ruohonen'),
('Gil Costa', 'Thiago Gouvea'),
('Mark Harnett', 'Daniel OConnor'),
('Andrew Leifer', 'William Schafer'),
('Rava da Silveira', 'Joshua Levy'),
('Cynthia A Chestek', 'Stephen Ryu'),
('Sway Chen', 'Dmitri Chklovskii'),
('Florentin W\xcb\x86rg\xcb\x86tter', 'Marc Timme'),
('Michael Okun', 'Pierre Yger'),
('Santiago Jaramillo', 'Petr Znamenskiy'),
('Eddie Chang', 'Miranda Babiak'),
('William Anderson', 'Emery Brown'),
('Maryam Vaziri-Pashkam', 'Edith Reshef'),
('Sven Jahnke', 'Tatjana Tchumatchenko'),
('Jonathan Rubin', 'Robert Rosenbaum'),
('Jonathan Cohen', 'Eran Eldar'),
('Cinira Diogo', 'Eric Denovellis'),
('Vladimir Itskov', 'Katherine Morrison'),
('Emily Anderson', 'John Reynolds'),
('Chris Werner', 'Vani Rajendran'),
('Gerald Rubin', 'Michael Reiser'),
('Sergey Stavisky', 'Joline Fan'),
('Alberto Bernacchia', 'Xiao-Jing Wang'),
('Bryan Seybold', 'Michael Merzenich'),
('Greg Horwitz', 'Mehrdad Jazayeri'),
('Christoph Kirst', 'Demian Battaglia'),
('Christoph Kayser', 'Frank W. Ohl'),
('Adam Charles', 'Chris Rozell'),
('Beth Lopour', 'Dario Ringach'),
('Quan Wen', 'Marc Gershow'),
('Jeffrey Magee', 'Stephen Williams'),
('Kenneth Harris', 'Florian Gerard-Mercier'),
('Joseph Madsen', 'Calin Buia'),
('Michael Gedalin', 'Ronen Segev'),
('Martin Stemmler', 'Richard Kempter'),
('Tyler Lee', 'An Vu'),
('Christof Koch', 'R. Blythe Towal'),
('Bingni Brunton', 'Chunyu Duan'),
('Dimitry Fisher', 'Melanie Lee'),
('Vivek Jayaraman', 'Eric Trautman'),
('Heesoo Kim', 'Michele Insanally'),
('Veronica Weiner', 'Eran Mukamel'),
('Keith Johnson', 'Eddie Chang'),
('Christopher Pack', 'Yuwei Cui'),
('Shin-ya Takemura', 'Stephen Plaza'),
('Karel Svoboda', 'Ning-long Xu'),
('I\xc3\x92igo Romero Arandia', 'Ruben Moreno'),
('Joseph Bergan', 'Yoram Ben-Shaul'),
('Frederick Soo', 'Gregory Schwartz'),
('Emery Brown', 'Joseph Madsen'),
('Alexander Ecker', 'Matthias Bethge'),
('Pat Shoemaker', 'Jessica Fox'),
('Bosco Tjan', 'Anirvan Nandy'),
('Seung-Hee Lee', 'Edward Boyden'),
('John Reynolds', 'Tatyana Sharpee'),
('Christopher Hillar', 'Bruno Olshausen'),
('William Bialek', 'Kanaka Rajan'),
('Karl Deisseroth', 'Edward Boyden'),
('Jeremy K. Seamans', 'Eldon Emberly'),
('William Bishop', 'Vikash Gilja'),
('Lawrence Sincich', 'Ryan Rowekamp'),
('Hang Zhang', 'Laurence Maloney'),
('Athena Akrami', 'Mathew E. Diamond'),
('Yoram Burak', 'Haim Sompolinsky'),
('Emad Eskandar', 'Veronica Weiner'),
('Petr Znamenskiy', 'Santiago Jaramillo'),
('Joline Fan', 'Krishna Shenoy'),
('Shantanu Jadhav', 'Loren Frank'),
('Sway Chen', 'Xinyu Liu'),
('Alex Kwan', 'Seung-Hee Lee'),
('Xiaofeng Li', 'Olivier List'),
('Stan Floresco', 'Jeremy K. Seamans'),
('Xue-Lian Qi', 'Christos Constantinidis'),
('Vitaly Klyachko', 'Amy Peng'),
('James DiCarlo', 'Arash Afraz'),
('Greg Horwitz', 'Zachary Lindbloom-Brown'),
('Jan Drugowitsch', 'Adam Kohn'),
('Joline Fan', 'Stephen Ryu'),
('Michael Platt', 'David Barack'),
('Andreas Tolias', 'Vishal Kapoor'),
('Catherine Dulac', 'Joseph Bergan'),
('John Cunningham', 'Matthew Kaufman'),
('Ran Rubin', 'Raoul-Martin Memmesheimer'),
('Ali Neishabouri', 'Aldo Faisal'),
('Douglas Ollerenshaw', 'Qi Wang'),
('Victoria Butler', 'George Whitesides'),
('Brett Vintch', 'Eero Simoncelli'),
('Diego Gutnisky', 'Lin Tian'),
('Alexandar Kozarev', 'Jason Fleischer'),
('Jason Gerrard', 'Shaun Patel'),
('Arpiar Saunders', 'Kevin Beier'),
('Susanne Schreiber', 'Eric Reifenstein'),
('Richard Kempter', 'Andreas V.M. Herz'),
('Cahir O\xc3\xadKane', 'Chi-Hon Lee'),
('Richard Kempter', 'Martin Stemmler'),
('Guillaume Lajoie', 'Kevin Lin'),
('Rollin Hu', 'Gregory W Wornell'),
('Ruben Moreno', 'Jan Drugowitsch'),
('Jonathan Cohen', 'Angela Radulescu'),
('Kendrick Kay', 'Aviv Mezer'),
('Zhiyuan Lu', 'Stephen Plaza'),
('Tim P. Vogels', 'Henning Sprekeler'),
('Arjun Bharioke', 'Shin-ya Takemura'),
('Jeffrey Magee', 'Daniel OConnor'),
('Ronald Van Den Berg', 'Wei Ji Ma'),
('Florian Rau', 'R. Matthias Hennig'),
('Joel Alvarez', 'Cecilia Babul'),
('Urs Koster', 'Bruno Olshausen'),
('Ana Raquel Martins', 'Ioana Carcea'),
('Michael DeWeese', 'Badr Albanna'),
('Motonori Yamaguchi', 'Jeffrey Schall'),
('Yuwei Cui', 'Farhan Khawaja'),
('Eran Eldar', 'Angela Radulescu'),
('Darin Dougherty', 'John Gale'),
('Arash Fassihi', 'Athena Akrami'),
('David Schulz', 'Matteo Carandini'),
('Olivier List', 'Xiaofeng Li'),
('Natalia Shevtsova', 'Patrick Jasinski'),
('Joshua Berke', 'Daniel Leventhal'),
('Peter Shizgal', 'Yannick-Andre Breton'),
('Jens Kremkow', 'Jianzhong Jin'),
('Alex Kwan', 'John Flannery'),
('William Schafer', 'Xinyu Liu'),
('Christopher Hillar', 'Guy Isely'),
('Wolfgang Keil', 'Dmitry Tsigankov'),
('Friedemann Zenke', 'Tim P. Vogels'),
('Sameer Sheth', 'Emad Eskandar'),
('William Bishop', 'Stephen Ryu'),
('Valerio Mante', 'David Sussillo'),
('Edward Boyden', 'Sotiris Masmanidis'),
('Eugenio Culurciello', 'Vincent Pieribone'),
('Julijana Gjorgjieva', 'Andrea Barreiro'),
('Aviv Mezer', 'Brian Wandell'),
('Sidhartha Dongre', 'Shiming Tang'),
('Larry Abbott', 'Evan Schaffer'),
('Christine Portfors', 'Graham Cummins'),
('Richard Fetter', 'Shin-ya Takemura'),
('Deborah Gunning', 'Alan Litke'),
('Nicholas Hatsopoulos', 'Francis Willett'),
('Bruno Averbeck', 'Nicholas Furl'),
('Fritz Sommer', 'Guy Isely'),
('Martin Stemmler', 'Felix Felmy'),
('Veronica Weiner', 'William Anderson'),
('Gregory W Wornell', 'Marissa Powers'),
('Anita Disney', 'Ian Nauhaus'),
('Pavel Itskov', 'Ekaterina Vinnik'),
('Itzhak Fried', 'Abtine Tavassoli'),
('Aaron Koralek', 'Jose Carmena'),
('Andreas Tolias', 'Fanis Panagiotaropoulos'),
('Saskia de Vries', 'Thomas Clandinin'),
('Jeffrey Seely', 'Mark Churchland'),
('Michele Insanally', 'Badr Albanna'),
('James M. Hyman', 'Jeremy K. Seamans'),
('Panyue Deng', 'Ziv Rotman'),
('Mark Churchland', 'Jeffrey Seely'),
('Liam Paninski', 'Eftychios Pnevmatikakis'),
('Jason Gerrard', 'Matt Mian'),
('Pierre Yger', 'Michael Okun'),
('Dora Angelaki', 'Noah Cowan'),
('Chun-Yuan Ting', 'Marie McCulloch'),
('Thilo Womelsdorf', 'Salva Ardid'),
('Shaul Druckmann', 'Dmitri Chklovskii'),
('Matthew Cook', 'Yann LeCun'),
('Johannes Burge', 'Wilson Geisler'),
('Earl Miller', 'Daniel Bullock'),
('Junya Hirokawa', 'Adam Kepecs'),
('Najib Majaj', 'Ha Hong'),
('Antonio Rangel', 'Daniel McNamee'),
('Stephanie Gleiss', 'Christoph Kayser'),
('C Shawn Green', 'Jacqueline Fulvio'),
('Matthew Bodenhamer', 'Andrew Fagg'),
('Christos Constantinidis', 'Ethan Meyers'),
('Jonathan Winawer', 'Kendrick Kay'),
('Stephen Ryu', 'Byron Yu'),
('Hannah Bernstein', 'Kexin Yuan'),
('Ila Fiete', 'Michael Buice'),
('Vladimir Itskov', 'Alan Veliz-Cuba'),
('Asli Ayaz', 'Kenneth Harris'),
('Eric Trautman', 'Parvez Ahammad'),
('Jacob Donoghue', 'Joseph Madsen'),
('Laurence Hunt', 'Jamie Near'),
('Dmitri Chklovskii', 'Ziqiang Wei'),
('Bart Larsen', 'Dirk Walther'),
('Xiaofeng Li', 'Mikko Juusola'),
('Daniel OConnor', 'Stephen Williams'),
('George Whitesides', 'Andrew Leifer'),
('Daniel Huber', 'Diego Gutnisky'),
('Krishna Shenoy', 'Biljana Petreska'),
('Christian Leibold', 'Kay Thurley'),
('Matthias Kaschube', 'Juan Florez Weidinger'),
('Peggy Series', 'Vincent Valton'),
('Ayse Yarali', 'Johannes Nehrkorn'),
('Alon Rubin', 'Itai Pinkoviezsky'),
('Yehezkel Sztainberg', 'Alon Chen'),
('Michael H\xe2\x80\xb0usser', 'Bilal Haider'),
('Shinji Nishimoto', 'Alexander Huth'),
('Loren Looger', 'Daniel Huber'),
('Eyal Seidemann', 'Wilson Geisler'),
('Sidhartha Dongre', 'Marie McCulloch'),
('Elad Schneidman', 'Alon Chen'),
('Darin Dougherty', 'Matt Mian'),
('Marc Gershow', 'Andrew Leifer'),
('Krishna Shenoy', 'Byron Yu'),
('Loren Frank', 'Christopher Moore'),
('Chi-Hon Lee', 'Sidhartha Dongre'),
('Yang Dan', 'Victoria Phoumthipphavong'),
('Jose-Manuel Alonso', 'Sean Kelly'),
('Dmitri Chklovskii', 'Victoria Butler'),
('Sway Chen', 'Aravinthan Samuel'),
('John ODoherty', 'Antonio Rangel'),
('Hugo Fernandes', 'Konrad Kording'),
('Garrett Kenyon', 'Michael Ham'),
('Michael Gastpar', 'Jose Carmena'),
('Daniel Polley', 'Hannah Bernstein'),
('Sydney Cash', 'William Anderson'),
('Javier Movellan', 'He Huang'),
('Marc Gershow', 'Quan Wen'),
('Helga Mazyar', 'Ronald Van Den Berg'),
('Heesoo Kim', 'Badr Albanna'),
('Joon Hyuk Park', 'Eugenio Culurciello'),
('Zhai Fangwen', 'Li Zhaoping'),
('Matthieu Wyart', 'Victoria Butler'),
('Kevin Beier', 'Arpiar Saunders'),
('I\xc3\x92igo Romero Arandia', 'Adam Kohn'),
('Ali Mohebi', 'Jessica A. Cardin'),
('Ryan Rowekamp', 'Tatyana Sharpee'),
('Roger Hardie', 'Sidhartha Dongre'),
('Yanbin V. Wang', 'Daniel Butts'),
('Friedemann Zenke', 'Wulfram Gerstner'),
('Bruno Olshausen', 'Chris Rozell'),
('Shiming Tang', 'Olivier List'),
('Robert Schmidt', 'Jeff Pettibone'),
('Dmitri Chklovskii', 'Lou Scheffer'),
('Xinyu Liu', 'Chris Fang-Yen'),
('James DiCarlo', 'Edith Reshef'),
('Ranulfo Romo', 'David Sussillo'),
('John Cunningham', 'Jeffrey Seely'),
('Kevin Shi', 'Alan Stocker'),
('Marissa Powers', 'Emery Brown'),
('James H Marshel', 'Edward Callaway'),
('Sway Chen', 'Victoria Butler'),
('Xinyu Liu', 'William Schafer'),
('Maneesh Sahani', 'Krishna Shenoy'),
('Joseph Madsen', 'Sydney Cash'),
('Vivek Jayaraman', 'Gus Lott'),
('Rava da Silveira', 'Michael Berry'),
('Daniel Ben Dayan Rubin', 'Nathaniel Daw'),
('Peter Shizgal', 'Peter Dayan'),
('Dietmar Plenz', 'Hongdian Yang'),
('A. Moses Lee', 'Cristopher Niell'),
('John Tuthill', 'Gerald Rubin'),
('Chi-Hon Lee', 'Chun-Yuan Ting'),
('Henning Sprekeler', 'Tim P. Vogels'),
('Carina Curto', 'Anda Degeratu'),
('Patrick Stinson', 'Leslie Osborne'),
('Karel Svoboda', 'Daniel OConnor'),
('Martin Stemmler', 'Eric Reifenstein'),
('Geoffrey Goodhill', 'Peter Dayan'),
('Laura Lewis', 'Sydney Cash'),
('Daniel Kaping', 'Salva Ardid'),
('Diego Gutnisky', 'Loren Looger'),
('Ziv Williams', 'Marissa Powers'),
('Hachi Manzur', 'Cecilia Babul'),
('Zachary Lindbloom-Brown', 'Greg Horwitz'),
('Chris Fang-Yen', 'Matthieu Wyart'),
('Seung-Hee Lee', 'Josh Huang'),
('Ziv Williams', 'Emery Brown'),
('Maria Geffen', 'Isaac Carruthers'),
('Kevin Lin', 'Guillaume Lajoie'),
('Nikhil Deshmukh', 'Frederick Soo'),
('James Tee', 'Hang Zhang'),
('Christopher Hillar', 'Charles Gray'),
('Shinji Nishimoto', 'Jack Gallant'),
('Martin Greschner', 'Lauren Jepson'),
('Marie McCulloch', 'Shiming Tang'),
('Michael Buice', 'Caswell Barry'),
('Ian Stevenson', 'Hugo Fernandes'),
('Alexandre Pouget', 'Ruben Moreno'),
('Guillaume Hennequin', 'Wulfram Gerstner'),
('Calin Buia', 'Randall OReilly'),
('Bruno Averbeck', 'Andrew Lees'),
('Yanbin V. Wang', 'Jonathan B. Demb'),
('Victoria Butler', 'Elizabeth Hulme'),
('Byron Yu', 'Stephen Ryu'),
('Victoria Phoumthipphavong', 'Yang Dan'),
('Konrad Kording', 'Ian Stevenson'),
('Jose-Manuel Alonso', 'Garrett Stanley'),
('Vikash Gilja', 'Byron Yu'),
('Michael Merzenich', 'Alison Barker'),
('Emad Eskandar', 'Eran Mukamel'),
('Dinu Albeanu', 'Gonzalo Otazu'),
('Dori Derdikman', 'Jakob Foerster'),
('Natalya Zaika', 'Daniel Polley'),
('Bruno Olshausen', 'Urs Koster'),
('Uri Eden', 'Robert Desimone'),
('Timothy Hanks', 'Bingni Brunton'),
('Jude Mitchell', 'John Reynolds'),
('Georgia Gregoriou', 'Robert Desimone'),
('Arjun Bharioke', 'Stephen Plaza'),
('Vishal Kapoor', 'Michel Besserve'),
('Gregory W Wornell', 'Ziv Williams'),
('Ning Qian', 'Li Zhaoping'),
('Andreas V.M. Herz', 'Eric Reifenstein'),
('Jeffrey Beck', 'Alexandre Pouget'),
('Linda Wilbrecht', 'Michael Stryker'),
('Jessica A. Cardin', 'Karim Oweiss'),
('Karl Deisseroth', 'Sotiris Masmanidis'),
('Nina C. Di Pietro', 'Jeremy K. Seamans'),
('Stephen Ryu', 'Vikash Gilja'),
('Garrett Stanley', 'Sean Kelly'),
('Paul Nuyujukian', 'Krishna Shenoy'),
('Alexander Dimitrov', 'Graham Cummins'),
('Stephen Plaza', 'Shiv Vitaladevuni'),
('Li Zhaoping', 'Ning Qian'),
('Krishna Shenoy', 'Vikash Gilja'),
('Ning-long Xu', 'Daniel Huber'),
('Robert Haslinger', 'Ziv Williams'),
('Andreas V.M. Herz', 'Ayse Yarali'),
('Shaowen Bao', 'Michele Insanally'),
('Xinyu Liu', 'Andrew Leifer'),
('Yuji Ikegaya', 'Kolia Sadeghi'),
('Judy Walker', 'Vladimir Itskov'),
('Michael Buice', 'KiJung Yoon'),
('Kentaroh Takagaki', 'Frank W. Ohl'),
('Stuart Layton', 'Loren Frank'),
('Kedarnath Vilankar', 'Damon Chandler'),
('Gus Lott', 'Aljoscha Schulze'),
('Julian Ammer', 'Andreas V.M. Herz'),
('Melanie Lee', 'Dimitry Fisher'),
('William Anderson', 'Eran Mukamel'),
('Ian Meinertzhagen', 'Dmitri Chklovskii'),
('Simon Barthelm\xc3\x88', 'Ralf Engbert'),
('Josh Huang', 'Sotiris Masmanidis'),
('Jeffrey Schall', 'Gordon Logan'),
('Christoph Kirst', 'Martin Stemmler'),
('Badr Albanna', 'Heesoo Kim'),
('Garrett Kenyon', 'Steven Brumby'),
('Eran Mukamel', 'Emad Eskandar'),
('Oren Forkosh', 'Alon Chen'),
('Keijo Ruohonen', 'Tuomo M\xe2\x80\xb0ki-Marttunen'),
('Vincent Valton', 'Alain Marchand'),
('Laurence Aitchison', 'Gergo Orb\xc2\xb7n'),
('Stanley Jose Komban', 'Reza Lashgari'),
('Shin-ya Takemura', 'Ian Meinertzhagen'),
('Chun-Yuan Ting', 'Roger Hardie'),
('W. Martin Usrey', 'Farran Briggs'),
('Loren Frank', 'Joshua Siegle'),
('Alex Gomez-Marin', 'Gus Lott'),
('EJ Chichilnisky', 'Peter Li'),
('Elad Schneidman', 'Anandamohan Ghosh'),
('Ioana Carcea', 'Hannah Bernstein'),
('Andreas V.M. Herz', 'Martin Stemmler'),
('Tatyana Sharpee', 'Jeffrey Fitzgerald'),
('Guillaume Lajoie', 'Eric Shea-Brown'),
('Emery Brown', 'Eran Mukamel'),
('Michael Berry', 'Frederick Soo'),
('Martin Vinck', 'Stefan Everling'),
('Eric Denovellis', 'Cinira Diogo'),
('Gasper Tkacik', 'Olivier Marre'),
('Benjamin Hayden', 'David Barack'),
('Ziv Rotman', 'Amy Peng'),
('Kazuo Imaizumi', 'Hamilton Farris'),
('Krishna Shenoy', 'Paul Nuyujukian'),
('He Zheng', 'Garrett Stanley'),
('Wulfram Gerstner', 'Friedemann Zenke'),
('Alla Karpova', 'Mayank Kabra'),
('Wei Ji Ma', 'Hongsup Shin'),
('Andrea Barreiro', 'Eric Shea-Brown'),
('Linda Wilbrecht', 'A. Moses Lee'),
('Vitaly Klyachko', 'Ziv Rotman'),
('Joshua Gold', 'Matthew Nassar'),
('Deborah Gunning', 'Greg Field'),
('Stephen Ryu', 'Mark Churchland'),
('Daniel OConnor', 'Simon Peron'),
('Karel Svoboda', 'Jeffrey Magee'),
('Yi-Hsuan Lee', 'Yu-Chi Huang'),
('Anirvan Nandy', 'Tatyana Sharpee'),
('Maryam Shanechi', 'Emery Brown'),
('Sotiris Masmanidis', 'Yang Dan'),
('Olivier List', 'Roger Hardie'),
('Mark Harnett', 'Ning-long Xu'),
('James H Marshel', 'Alfred Kaye'),
('Guy Isely', 'Christopher Hillar'),
('Joline Fan', 'Sergey Stavisky'),
('Jonathan Pillow', 'Il Memming Park'),
('Ingmar Kanitscheider', 'Jeffrey Beck'),
('Maryam Vaziri-Pashkam', 'Patrick Cavanagh'),
('Jack Gallant', 'An Vu'),
('Hiroki Asari', 'Markus Meister'),
('Natalya Zaika', 'Robert Froemke'),
('John Pearson', 'David Barack'),
('Katherine Morrison', 'Judy Walker'),
('Andrew Zaharia', 'Brett Vintch'),
('Quan Wen', 'Elizabeth Hulme'),
('Emre Aksay', 'Melanie Lee'),
('Emad Eskandar', 'Jacob Donoghue'),
('Marie McCulloch', 'Mikko Juusola'),
('Jonathan Pillow', 'Mijung Park'),
('Tirin Moore', 'Bob Schafer'),
('Einat Granot-Atedgi', 'Gasper Tkacik'),
('James DiCarlo', 'Patrick Cavanagh'),
('Kevin Shi', 'Zhuo Wang'),
('Martin Stemmler', 'Andreas V.M. Herz'),
('Keith Mathieson', 'Martin Greschner'),
('Tao Hu', 'Alexander Genkin'),
('Fukunaga Izumi', 'Manuel Berning'),
('John Gale', 'Matt Mian'),
('Sameer Sheth', 'John Gale'),
('Friedemann Zenke', 'Henning Sprekeler'),
('Alan Stocker', 'Kevin Shi'),
('Peter Latham', 'David Barrett'),
('Vivek Jayaraman', 'Alex Gomez-Marin'),
('Chris Werner', 'Alex Gomez-Marin'),
('Deborah Gunning', 'Peter Li'),
('William Schafer', 'Quan Wen'),
('Shiv Vitaladevuni', 'Richard Fetter'),
('Ian Meinertzhagen', 'Shin-ya Takemura'),
('Ritwik Niyogi', 'Peter Shizgal'),
('Alison Barker', 'Daniel Polley'),
('Krishna Shenoy', 'Joline Fan'),
('Priyanka Gupta', 'Upinder S. Bhalla'),
('Leonard Maler', 'Gary Marsat'),
('Jason Rolfe', 'Matthew Cook'),
('Eddie Chang', 'Kristofer Bouchard'),
('Stephen Ryu', 'Katherine Ames'),
('Francoise Dellu-Hagedorn', 'Peggy Series'),
('Eugenio Culurciello', 'Jelena Platisa'),
('Jaldert Rombouts', 'Sander Bohte'),
('Nicole Carlson', 'Vivienne Ming'),
('Jakob Macke', 'Felix Wichmann'),
('Loren Looger', 'Karel Svoboda'),
('Michael Reiser', 'Gerald Rubin'),
('Britni Crocker', 'Nikos K. Logothetis'),
('Urs Koster', 'Christopher Hillar'),
('Shiming Tang', 'Mikko Juusola'),
('Jeffrey Seely', 'Stephen Ryu'),
('Lou Scheffer', 'Shiv Vitaladevuni'),
('Dougal Tervo', 'Mayank Kabra'),
('Chris Rozell', 'Adam Charles'),
('Chun-Yuan Ting', 'Trevor Wardill'),
('Gregory W Wornell', 'Maryam Shanechi'),
('Edward Callaway', 'Kristina Nielsen'),
('Robert Rosenbaum', 'Jonathan Rubin'),
('Darin Dougherty', 'Benjamin Greenberg'),
('Greg Field', 'Lauren Jepson'),
('Paul Schrater', 'Vasileios Christopoulos'),
('Sherika Sylvester', 'Emre Aksay'),
('Timothy Hanks', 'Chunyu Duan'),
('Sidhartha Dongre', 'Mikko Juusola'),
('Stefano Panzeri', 'Britni Crocker'),
('Eric Reifenstein', 'Martin Stemmler'),
('Jianzhong Jin', 'Sean Kelly'),
('Emad Eskandar', 'Matt Mian'),
('Stephen Plaza', 'Dmitri Chklovskii'),
('Gautam Agarwal', 'Gyorgy Buzsaki'),
('Michael Ham', 'Garrett Kenyon'),
('Ronen Segev', 'Anandamohan Ghosh'),
('Han Lun Yap', 'Adam Charles'),
('Nikos K. Logothetis', 'Michael T. Lippert'),
('Matthew Nassar', 'Joshua Gold'),
('Daniel Polley', 'Natalya Zaika'),
('Michael Black', 'Qi Wang'),
('Danko Nikolic', 'Wolf Singer'),
('Clark Fisher', 'Michael Berry'),
('Daniel Leventhal', 'Alaina Case'),
('Vincent Valton', 'Peggy Series'),
('Mili Milosavljevic', 'R. Blythe Towal'),
('Ritwik Niyogi', 'Yannick-Andre Breton'),
('Sandro Romani', 'Itai Pinkoviezsky'),
('Emad Eskandar', 'Sydney Cash'),
('Jamie Near', 'Gerhard Jocham'),
('Ralf Engbert', 'Hans Trukenbrod'),
('Mate Lengyel', 'Laurence Aitchison'),
('George Whitesides', 'Victoria Butler'),
('Sydney Cash', 'Patrick Purdon'),
('Sotiris Masmanidis', 'Josh Huang'),
('Edith Reshef', 'James DiCarlo'),
('Ahmad Osman', 'Jelena Platisa'),
('Mark Churchland', 'Krishna Shenoy'),
('Siyu Zhang', 'Alex Kwan'),
('John Reppas', 'William Newsome'),
('Caleb Kemere', 'Walter German'),
('William Newsome', 'David Sussillo'),
('Alison Barker', 'Kexin Yuan'),
('Franziska Hellmundt', 'Christian Leibold'),
('Calin Buia', 'Gabriel Kreiman'),
('Felix Felmy', 'Julian Ammer'),
('Anita Disney', 'Edward Callaway'),
('Frank Wood', 'Liam Paninski'),
('Kexin Yuan', 'Robert Froemke'),
('Laura Lewis', 'Patrick Purdon'),
('Alison Barker', 'Bryan Seybold'),
('Ronen Segev', 'Elad Ganmor'),
('Cahir O\xc3\xadKane', 'Mikko Juusola'),
('William Schafer', 'Dmitri Chklovskii'),
('Alla Karpova', 'Dougal Tervo'),
('Hiromu Tanimoto', 'Ayse Yarali'),
('Andreas Tolias', 'Alexander Ecker'),
('Badr Albanna', 'Michele Insanally'),
('Hannah Bernstein', 'Daniel Polley'),
('Sameer Sheth', 'Jason Gerrard'),
('Irina Yonit Segal', 'Ronen Segev'),
('Victoria Phoumthipphavong', 'Siyu Zhang'),
('Cristina Savin', 'Mate Lengyel'),
('Vivek Jayaraman', 'Matthieu Louis'),
('Yehezkel Sztainberg', 'Yair Shemesh'),
('Jeffrey Beck', 'Peter Latham'),
('Wulfram Gerstner', 'Lorric Ziegler'),
('Matthieu Louis', 'Parvez Ahammad'),
('Uri Eden', 'Kyle Lepage'),
('Matthieu Wyart', 'Quan Wen'),
('Shiming Tang', 'Marie McCulloch'),
('Alexandre Pouget', 'Jan Drugowitsch'),
('Yuzhi Chen', 'Wilson Geisler'),
('Robert Froemke', 'Ioana Carcea'),
('Henning Sprekeler', 'Friedemann Zenke'),
('Nicholas Furl', 'Atbin Djamshidian'),
('Fred Wolf', 'Wolfgang Keil'),
('Thilo Womelsdorf', 'Stefan Everling'),
('Tony Movshon', 'Corey Ziemba'),
('Ruben Moreno', 'Adam Kohn'),
('Jason Gerrard', 'Darin Dougherty'),
('Larry Abbott', 'Merav Stern'),
('Joon Hyuk Park', 'Vincent Pieribone'),
('Reza Lashgari', 'Jose-Manuel Alonso'),
('Michael Platt', 'Benjamin Hayden'),
('Karl Deisseroth', 'Siyu Zhang'),
('Alexandre Pouget', 'Andre Mendonca'),
('Richard Andersen', 'Arnulf Graf'),
('Mark Churchland', 'John Cunningham'),
('Haim Sompolinsky', 'Julijana Gjorgjieva'),
('Eric Chen', 'Rava da Silveira'),
('Fritz Sommer', 'Gyorgy Buzsaki'),
('Jakob Macke', 'Ingo Fr\xc2\xb8nd'),
('Alex Kwan', 'Sotiris Masmanidis'),
('Matteo Carandini', 'Michael Okun'),
('Sway Chen', 'Andrew Leifer'),
('Fred Wolf', 'Juan Florez Weidinger'),
('Cinira Diogo', 'Daniel Bullock'),
('Hannah Bernstein', 'Christoph Schreiner'),
('Michael Berry', 'Rava da Silveira'),
('Tao Hu', 'Dmitri Chklovskii'),
('Josh Huang', 'Siyu Zhang'),
('Marie McCulloch', 'Xiaofeng Li'),
('Mark Churchland', 'Biljana Petreska'),
('Kris Chaisanguanthum', 'Philip Sabes'),
('Aaron Seitz', 'Grigorios Sotiropoulos'),
('Hiroki Terashima', 'Masato Okada'),
('Jeremy Freeman', 'Corey Ziemba'),
('Peter Dayan', 'Rebecca Solomon'),
('Rebecca Solomon', 'Ritwik Niyogi'),
('Chi-Hon Lee', 'Marie McCulloch'),
('Trevor Wardill', 'Olivier List'),
('Felix Felmy', 'Christoph Kirst'),
('Jamie Near', 'Tim Behrens'),
('Byron Yu', 'Cynthia A Chestek'),
('Ian Nauhaus', 'Anita Disney'),
('Jonathan Huggins', 'Ari Pakman'),
('Andreas V.M. Herz', 'Susanne Schreiber'),
('Georgia Gregoriou', 'Mark Kramer'),
('Antonio Lara', 'Jonathan Wallis'),
('Elizabeth Hulme', 'Andrew Leifer'),
('Nathaniel Daw', 'Seth Madlon-Kay'),
('Stuart Layton', 'Caleb Kemere'),
('Stan Floresco', 'Shirin Hadizadeh'),
('Nicholas Furl', 'Bruno Averbeck'),
('Mark Goldman', 'Sherika Sylvester'),
('Michoel Snow', 'Ruben Coen-Cagli'),
('Matteo Carandini', 'Michael H\xe2\x80\xb0usser'),
('Ian Meinertzhagen', 'Richard Fetter'),
('Emre Aksay', 'Mark Goldman'),
('Yang Dan', 'John Flannery'),
('Aljoscha Schulze', 'Eric Trautman'),
('Josh Huang', 'Hiroki Taniguchi'),
('Haim Sompolinsky', 'Cengiz Pehlevan'),
('Krishna Shenoy', 'Stephen Ryu'),
('Zachary Roth', 'Vladimir Itskov'),
('Caswell Barry', 'KiJung Yoon'),
('Eero Simoncelli', 'Deep Ganguli'),
('Stephen Ryu', 'Jeffrey Seely'),
('Sean Kelly', 'Jianzhong Jin'),
('Maneesh Sahani', 'Lars Buesing'),
('Xiao-Jing Wang', 'Warasinee Chaisangmongkon'),
('Chun-Yuan Ting', 'Olivier List'),
('Jianzhong Jin', 'Michael Black'),
('Daniel OConnor', 'Lin Tian'),
('Walter German', 'Caleb Kemere'),
('Jakob Foerster', 'Nachum Ulanovsky'),
('Seung-Hee Lee', 'Karl Deisseroth'),
('Stephen Williams', 'Karel Svoboda'),
('Simon Peron', 'Daniel OConnor'),
('Ilya Rybak', 'Jeffrey Smith'),
('Yushi Wang', 'Garrett Stanley'),
('Bartlett Mel', 'Rishabh Jain'),
('Mark Kramer', 'Uri Eden'),
('Eric DeWitt', 'Zachary Mainen'),
('Zhuo Wang', 'Daniel Lee'),
('Vivienne Ming', 'Nicole Carlson'),
('Britni Crocker', 'Andreas Tolias'),
('Garrett Stanley', 'Michael Black'),
('Alison Barker', 'Robert Froemke'),
('Nicole Carlson', 'Michael DeWeese'),
('Ana Raquel Martins', 'Daniel Polley'),
('Farhan Khawaja', 'Yuwei Cui'),
('Aldo Faisal', 'Andreas Thomik'),
('Anita Disney', 'Kristina Nielsen'),
('Yushi Wang', 'Jianzhong Jin'),
('Karel Svoboda', 'Mark Harnett'),
('Rachel Wilson', 'Mehmet Fisek'),
('Alan Stocker', 'Zhuo Wang'),
('Shiv Vitaladevuni', 'Arjun Bharioke'),
('Christoph Schreiner', 'Robert Froemke'),
('Eran Mukamel', 'Leigh Hochberg'),
('Patr\xc3\x8ccia Correia', 'Zachary Mainen'),
('Earl Miller', 'Eric Denovellis'),
('Ronald Van Den Berg', 'Jeffrey Beck'),
('Timothy Buschman', 'Daniel Bullock'),
('Vikash Gilja', 'Krishna Shenoy'),
('Michael T. Lippert', 'Kentaroh Takagaki'),
('Shiming Tang', 'Chi-Hon Lee'),
('Ethan Solomon', 'James DiCarlo'),
('Seth Madlon-Kay', 'Nathaniel Daw'),
('Leigh Hochberg', 'Emery Brown'),
('Mayank Kabra', 'Alla Karpova'),
('Edward Boyden', 'Victoria Phoumthipphavong'),
('Demian Battaglia', 'Christoph Kirst'),
('Chun-Yuan Ting', 'Xiaofeng Li'),
('Chris Fang-Yen', 'George Whitesides'),
('Andrew Leifer', 'Quan Wen'),
('Jason Gerrard', 'Benjamin Greenberg'),
('Emery Brown', 'Jacob Donoghue'),
('Quan Wen', 'Victoria Butler'),
('Yushi Wang', 'Stanley Jose Komban'),
('Krishna Shenoy', 'Mark Churchland'),
('Frank W. Ohl', 'Michael T. Lippert'),
('Christoph Kirst', 'Julian Ammer'),
('Matt Mian', 'Shaun Patel'),
('Randall OReilly', 'Calin Buia'),
('Sidhartha Dongre', 'Chi-Hon Lee'),
('Dmitri Chklovskii', 'Matthieu Wyart'),
('Edward Callaway', 'Ian Nauhaus'),
('Eran Lottem', 'Patr\xc3\x8ccia Correia'),
('Kenneth Harris', 'Pierre Yger'),
('Cengiz Pehlevan', 'Haim Sompolinsky'),
('Eric Chen', 'Clark Fisher'),
('Bard Ermentrout', 'Zachary Kilpatrick'),
('Aravinthan Samuel', 'William Schafer'),
('Tony Movshon', 'Brett Vintch'),
('Tatjana Tchumatchenko', 'Sven Jahnke'),
('Adam Kohn', 'Ruben Coen-Cagli'),
('Peter Shizgal', 'Ritwik Niyogi'),
('Brian Wandell', 'Kendrick Kay'),
('Lyubov Ushakova', 'Brice Bathellier'),
('Darin Dougherty', 'Jason Gerrard'),
('Michael Platt', 'John Pearson'),
('Aurel Lazar', 'Yevgeniy Slutskiy'),
('Ulf Ziemann', 'Catalin Rusu'),
('Aaron Suminski', 'Francis Willett'),
('Stephen Plaza', 'Ian Meinertzhagen'),
('Victoria Butler', 'Aravinthan Samuel'),
('Helen Shen', 'Kris Chaisanguanthum'),
('Eric Reifenstein', 'Susanne Schreiber'),
('Francis Willett', 'Matthew Bodenhamer'),
('Victoria Butler', 'Sway Chen'),
('Emery Brown', 'Ziv Williams'),
('Alaina Case', 'Joshua Berke'),
('Karl Deisseroth', 'Victoria Phoumthipphavong'),
('S.A. Billings', 'Mikko Juusola'),
('Daniel Lee', 'Kevin Shi'),
('Benjamin Hayden', 'John Pearson'),
('Tim Behrens', 'Gerhard Jocham'),
('Deborah Gunning', 'Lauren Jepson'),
('Hachi Manzur', 'Joel Alvarez'),
('Xundong Wu', 'Bartlett Mel'),
('Quan Wen', 'Aravinthan Samuel'),
('Alexandre Pouget', 'Maria Vicente'),
('Tyler Lee', 'R Channing Moore'),
('Alan Litke', 'Lauren Jepson'),
('Tatyana Sharpee', 'James H Marshel'),
('Daniel Wolpert', 'Luigi Acerbi'),
('Anda Degeratu', 'Carina Curto'),
('Michael Gastpar', 'Kelvin So'),
('Dario Ringach', 'Beth Lopour'),
('Daniel OConnor', 'Diego Gutnisky'),
('Josh Huang', 'Victoria Phoumthipphavong'),
('Chris Fang-Yen', 'Andrew Leifer'),
('Najib Majaj', 'Ethan Solomon'),
('Simon Peron', 'Karel Svoboda'),
('Judy Walker', 'Carina Curto'),
('Richard Kempter', 'Eric Reifenstein'),
('Ritwik Niyogi', 'Peter Dayan'),
('Melanie Lee', 'Emre Aksay'),
('Eric Chen', 'Michael Berry'),
('Ian Meinertzhagen', 'Arjun Bharioke'),
('John R Carlson', 'Carlotta Martelli'),
('Eran Mukamel', 'Sydney Cash'),
('Calin Buia', 'Dean Wyatte'),
('Michael Hasselmo', 'Jason Climer'),
('Elad Ganmor', 'Ronen Segev'),
('Matteo Carandini', 'Kenneth Harris'),
('Angela Yu', 'Tomoki Tsuchida'),
('Byron Yu', 'Krishna Shenoy'),
('Lauren Jepson', 'Greg Field'),
('Sidhartha Dongre', 'Xiaofeng Li'),
('Alex Gomez-Marin', 'Matthieu Louis'),
('Andreea Lazar', 'Wolf Singer'),
('Hanlin Tang', 'Randall OReilly'),
('Andrew Fagg', 'Nicholas Hatsopoulos'),
('Stephen Ryu', 'Cynthia A Chestek'),
('Nachum Ulanovsky', 'Arseny Finkelstein'),
('Ning-long Xu', 'Jeffrey Magee'),
('Kevin Shi', 'Daniel Lee'),
('Christoph Schreiner', 'Daniel Polley'),
('Shirin Hadizadeh', 'Stan Floresco'),
('Joseph Madsen', 'Patrick Purdon'),
('James M. Hyman', 'Shirin Hadizadeh'),
('Stan Floresco', 'Nina C. Di Pietro'),
('Trevor Wardill', 'Xiaofeng Li'),
('Jonathan Victor', 'Eyal Nitzany'),
('Matthew Kaufman', 'Mark Churchland'),
('Aljoscha Schulze', 'Parvez Ahammad'),
('John Cunningham', 'Mark Churchland'),
('Zachary Roth', 'Katherine Morrison'),
('Kelvin So', 'Michael Gastpar'),
('Emre Aksay', 'Dimitry Fisher'),
('Ioana Carcea', 'Ana Raquel Martins'),
('Mark Frye', 'Jacob Aptekar'),
('Yuwei Cui', 'Daniel Butts'),
('Matthieu Louis', 'Chris Werner'),
('Stan Floresco', 'James M. Hyman'),
('William Nesse', 'Andre Longtin'),
('Chris Fang-Yen', 'Marc Gershow'),
('Vishal Kapoor', 'Britni Crocker'),
('Seth Madlon-Kay', 'Bijan Pesaran'),
('Badr Albanna', 'Hania Kover'),
('Lung-Hao Tai', 'Antonello Bonci'),
('William Anderson', 'Joseph Madsen'),
('Matteo Carandini', 'Florian Gerard-Mercier'),
('Christopher Cueva', 'Roozbeh Kiani'),
('Bingni Brunton', 'Carlos Brody'),
('Hiroki Taniguchi', 'Yang Dan'),
('Yannick-Andre Breton', 'Ritwik Niyogi'),
('Alon Rubin', 'Sandro Romani'),
('Andrew Tan', 'Nicholas Priebe'),
('Yannick-Andre Breton', 'Peter Dayan'),
('Arjun Bharioke', 'Shiv Vitaladevuni'),
('Ekaterina Vinnik', 'Pavel Itskov'),
('James H Marshel', 'Tatyana Sharpee'),
('Michele Insanally', 'Shaowen Bao'),
('Marja-Leena Linne', 'Jugoslava Acimovic'),
('Veronica Weiner', 'Joseph Madsen'),
('Sethu Vijayakumar', 'Daniel Wolpert'),
('Christoph Schreiner', 'Hannah Bernstein'),
('Michael Okun', 'Matteo Carandini'),
('Emery Brown', 'Leigh Hochberg'),
('Taro Toyoizumi', 'Yuji Ikegaya'),
('Victoria Phoumthipphavong', 'Hiroki Taniguchi'),
('Michael Buice', 'Neil Burgess'),
('Eric Trautman', 'Gus Lott'),
('Farhan Khawaja', 'Christopher Pack'),
('Yael Niv', 'Angela Radulescu'),
('Timothy Buschman', 'Cinira Diogo'),
('Tomoki Tsuchida', 'Angela Yu'),
('Gregory Schwartz', 'Frederick Soo'),
('Seth Madlon-Kay', 'Anya Skatova'),
('William Bishop', 'Paul Nuyujukian'),
('Peggy Series', 'Aaron Seitz'),
('Hongsup Shin', 'Wei Ji Ma'),
('Haim Sompolinsky', 'Baktash Babadi'),
('Francis Willett', 'Aaron Suminski'),
('Stephen Plaza', 'Lou Scheffer'),
('Rebecca Solomon', 'Yannick-Andre Breton'),
('Patrick Purdon', 'Sydney Cash'),
('Matthias Kaschube', 'Wolfgang Keil'),
('Krishna Shenoy', 'Jonathan Kao'),
('Misha Tsodyks', 'Sandro Romani'),
('Dmitri Chklovskii', 'Alexander Genkin'),
('Aaron Suminski', 'Andrew Fagg'),
('Paul Schrater', 'Adam Johnson'),
('Abram Friesen', 'Yanping Huang'),
('Lin Tian', 'Loren Looger'),
('Aravinthan Samuel', 'Xinyu Liu'),
('Wei Ji Ma', 'Jeffrey Beck'),
('William Schafer', 'Marc Gershow'),
('Steve Gotts', 'Mark Kramer'),
('Sean Trettel', 'Ila Fiete'),
('Wilson Geisler', 'Eyal Seidemann'),
('Michael Schnabel', 'Juan Florez Weidinger'),
('Christopher Pack', 'Liu Liu'),
('Jacqueline Fulvio', 'Paul Schrater'),
('Shiv Vitaladevuni', 'Ian Meinertzhagen'),
('Lou Scheffer', 'Arjun Bharioke'),
('Christoph Schreiner', 'Kexin Yuan'),
('Haim Sompolinsky', 'Ran Rubin'),
('Marie McCulloch', 'Chi-Hon Lee'),
('Anthony Zador', 'Petr Znamenskiy'),
('Ioana Carcea', 'Kexin Yuan'),
('John Pearson', 'Michael Platt'),
('David Barack', 'Michael Platt'),
('Alan Litke', 'Greg Field'),
('Yanping Huang', 'Abram Friesen'),
('Benjamin Greenberg', 'Emad Eskandar'),
('Laurence Maloney', 'James Tee'),
('An Vu', 'Shinji Nishimoto'),
('Jeffrey Fitzgerald', 'Tatyana Sharpee'),
('Shaowen Bao', 'Hania Kover'),
('Lorric Ziegler', 'Wulfram Gerstner'),
('Corey Ziemba', 'Jeremy Freeman'),
('Omri Barak', 'Misha Tsodyks'),
('Yang Dan', 'Sotiris Masmanidis'),
('John Flannery', 'Hiroki Taniguchi'),
('Matthew Bodenhamer', 'Nicholas Hatsopoulos'),
('Rollin Hu', 'Robert Haslinger'),
('Maryam Vaziri-Pashkam', 'Arash Afraz'),
('Quan Wen', 'Matthieu Wyart'),
('Aaron Suminski', 'Nicholas Hatsopoulos'),
('Karel Svoboda', 'Stephen Williams'),
('Jelena Platisa', 'Ahmad Osman'),
('Misha Tsodyks', 'Alon Rubin'),
('Neil Burgess', 'Ila Fiete'),
('Krishna Shenoy', 'William Bishop'),
('Andreas Thomik', 'Aldo Faisal'),
('Arjun Bharioke', 'Ian Meinertzhagen'),
('Dmitri Chklovskii', 'Tao Hu'),
('Nima Mesgarani', 'Eddie Chang'),
('Sydney Cash', 'Eran Mukamel'),
('Arkarup Bandyopadhyay', 'Dinu Albeanu'),
('Yaroslav Molkov', 'Ilya Rybak'),
('Thomas Palmeri', 'Gordon Logan'),
('Laura Lewis', 'Emad Eskandar'),
('Markus Meister', 'Haim Sompolinsky'),
('Kresimir Josic', 'Robert Rosenbaum'),
('Robert Froemke', 'Alison Barker'),
('Lauren Jepson', 'Peter Li'),
('Justin Ales', 'Anthony Norcia'),
('Daniel OConnor', 'Karel Svoboda'),
('Paul Schrater', 'Constantin Rothkopf'),
('Eric Trautman', 'Matthieu Louis'),
('Ruben Moreno', 'I\xc3\x92igo Romero Arandia'),
('O. Ozan Koyluoglu', 'Ila Fiete'),
('Kristofer Bouchard', 'Miranda Babiak'),
('John Flannery', 'Sotiris Masmanidis'),
('Joshua Siegle', 'Matthew Wilson'),
('Xue-Lian Qi', 'Ethan Meyers'),
('David Field', 'Kedarnath Vilankar'),
('Omar Ahmed', 'Sydney Cash'),
('Rollin Hu', 'Ziv Williams'),
('Brian Wandell', 'Aviv Mezer'),
('Matthew Koh', 'Fred Marbach'),
('Carina Curto', 'Katherine Morrison'),
('Matthias Bethge', 'Philipp Berens'),
('Elad Schneidman', 'Yair Shemesh'),
('Peter Latham', 'Alexandre Pouget'),
('Ana Raquel Martins', 'Hannah Bernstein'),
('Mark Churchland', 'Stephen Ryu'),
('John Reppas', 'Roozbeh Kiani'),
('Clark Fisher', 'Joshua Levy'),
('Kayvon Daie', 'Mark Goldman'),
('Kristin Branson', 'Alla Karpova'),
('Josh Huang', 'Seung-Hee Lee'),
('Dmitri Chklovskii', 'Marc Gershow'),
('Nathaniel Daw', 'Daniel Ben Dayan Rubin'),
('Pedro Maldonado', 'Cecilia Babul'),
('He Huang', 'Javier Movellan'),
('Yen-Nan Lin', 'Chung-Chuan Lo'),
('Anne Churchland', 'Paul Schrater'),
('Keith Johnson', 'Nima Mesgarani'),
('Quan Wen', 'Andrew Leifer'),
('Damon Chandler', 'David Field'),
('Andrea Barreiro', 'Fred Rieke'),
('Andreas V.M. Herz', 'Julian Ammer'),
('Tony Movshon', 'Jeremy Freeman'),
('Graham Cummins', 'Alexander Dimitrov'),
('Dario Ringach', 'Itzhak Fried'),
('Jeffrey Seely', 'John Cunningham'),
('Shantanu Jadhav', 'Caleb Kemere'),
('Han Lun Yap', 'Chris Rozell'),
('Stephanie Gleiss', 'Michael T. Lippert'),
('Georgia Gregoriou', 'Uri Eden'),
('Elizabeth Hulme', 'Sway Chen'),
('Matthew Wilson', 'Loren Frank'),
('Kentaroh Takagaki', 'Christoph Kayser'),
('Kay Thurley', 'Christian Leibold'),
('Elizabeth Hulme', 'Aravinthan Samuel'),
('Matthias Kaschube', 'Fred Wolf'),
('An Vu', 'Alexander Huth'),
('Maryam Shanechi', 'Rollin Hu'),
('Jakob Voigts', 'Matthew Wilson'),
('Britni Crocker', 'Vishal Kapoor'),
('Alejandro Fernandez Bujan', 'Arvind Kumar'),
('Dmitry Tsigankov', 'Fred Wolf'),
('Karl Deisseroth', 'Josh Huang'),
('Seung-Hee Lee', 'Yang Dan'),
('Nikos K. Logothetis', 'Frank W. Ohl'),
('Shirin Hadizadeh', 'Jeremy K. Seamans'),
('Dmitri Chklovskii', 'Shaul Druckmann'),
('Tony Movshon', 'Andrew Zaharia'),
('Kayvon Daie', 'Emre Aksay'),
('Ronen Segev', 'Gasper Tkacik'),
('David Morton', 'Jeff Pobst'),
('Peter Shizgal', 'Kent Conover'),
('Jonathan Kao', 'Krishna Shenoy'),
('Ingmar Kanitscheider', 'Alexandre Pouget'),
('Shaun Patel', 'John Gale'),
('Roger Hardie', 'Xiaofeng Li'),
('Carlos Brody', 'Jeffrey Erlich'),
('Jessica Fox', 'Jacob Aptekar'),
('Matthieu Louis', 'Gus Lott'),
('John Sheppard', 'Paul Schrater'),
('Lou Scheffer', 'Shin-ya Takemura'),
('Roozbeh Kiani', 'John Reppas'),
('Patrick Cavanagh', 'Maryam Vaziri-Pashkam'),
('Yannick-Andre Breton', 'Peter Shizgal'),
('Sandro Romani', 'Alon Rubin'),
('Lin Tian', 'Daniel OConnor'),
('Stephen Ryu', 'Krishna Shenoy'),
('Xiaofeng Li', 'Marie McCulloch'),
('Jacob Donoghue', 'Laura Lewis'),
('Adrienne Fairhall', 'Tom Daniel'),
('Daniel Little', 'Fritz Sommer'),
('Paul Nuyujukian', 'Sergey Stavisky'),
('Matthieu Wyart', 'Aravinthan Samuel'),
('Jaldert Rombouts', 'Pieter Roelfsema'),
('Daniel Knudsen', 'Timothy Gentner'),
('Simon Peron', 'Lin Tian'),
('Warasinee Chaisangmongkon', 'David Freedman'),
('Chun-Yuan Ting', 'Chi-Hon Lee'),
('Ali Mohebi', 'Karim Oweiss'),
('Hania Kover', 'Shaowen Bao'),
('Neil Burgess', 'KiJung Yoon'),
('William Newsome', 'Roozbeh Kiani'),
('R. Matthias Hennig', 'Jan Clemens'),
('Misha Tsodyks', 'Omri Barak'),
('Arjun Bharioke', 'Zhiyuan Lu'),
('Larry Abbott', 'Wayne Greg'),
('Tyler Lee', 'Frederic Theunissen'),
('Cecilia Babul', 'Hachi Manzur'),
('Hiroshi Ban', 'Andrew Welchman'),
('Edith Reshef', 'Arash Afraz'),
('Benjamin Greenberg', 'Darin Dougherty'),
('Jonathan Pillow', 'Alex Huk'),
('Jason Gerrard', 'Emad Eskandar'),
('Cristopher Niell', 'Linda Wilbrecht'),
('Paul Schrater', 'Nisheeth Srivastava'),
('Yael Niv', 'Eran Eldar'),
('Alireza Soltani', 'Bob Schafer'),
('Bryan Seybold', 'Alison Barker'),
('Ran Rubin', 'Haim Sompolinsky'),
('Fred Rieke', 'Julijana Gjorgjieva'),
('Qi Wang', 'Yushi Wang'),
('Siyu Zhang', 'Josh Huang'),
('Deborah Gunning', 'Keith Mathieson'),
('Henning Sprekeler', 'Claudia Clopath'),
('Eero Simoncelli', 'Josh McDermott'),
('Fanis Panagiotaropoulos', 'Stefano Panzeri'),
('Caleb Kemere', 'Matthew Wilson'),
('Kerstin Preuschoff', 'Peter Bossaerts'),
('Keijo Ruohonen', 'Marja-Leena Linne'),
('Tom Daniel', 'Simon Sponberg'),
('Sergey Stavisky', 'Stephen Ryu'),
('Trevor Wardill', 'Chi-Hon Lee'),
('Anirvan Nandy', 'Jude Mitchell'),
('Zachary Roth', 'Judy Walker'),
('Sotiris Masmanidis', 'Siyu Zhang'),
('Leigh Hochberg', 'Joseph Madsen'),
('Xiaofeng Li', 'Cahir O\xc3\xadKane'),
('James Golden', 'Kedarnath Vilankar'),
('Andrew Fagg', 'Francis Willett'),
('Garrett Stanley', 'Qi Wang'),
('Julian Ammer', 'Martin Stemmler'),
('Olivier List', 'Cahir O\xc3\xadKane'),
('Edward Boyden', 'Siyu Zhang'),
('Xiaofeng Li', 'Trevor Wardill'),
('David Schneider', 'Sarah Woolley'),
('Matthieu Wyart', 'Andrew Leifer'),
('Nisheeth Srivastava', 'Paul Schrater'),
('K. Jannis Hildebrandt', 'R. Matthias Hennig'),
('Graham Cummins', 'Zachary Mayko'),
('Shiming Tang', 'Roger Hardie'),
('Miranda Babiak', 'Nima Mesgarani'),
('Alexandre Pouget', 'Peter Latham'),
('Alex Kwan', 'Karl Deisseroth'),
('Joline Fan', 'Paul Nuyujukian'),
('Martin Stemmler', 'Christoph Kirst'),
('Matthew Wilson', 'Jakob Voigts'),
('Patrick Jasinski', 'Ilya Rybak'),
('William Bishop', 'Krishna Shenoy'),
('Krishna Shenoy', 'Jeffrey Seely'),
('Shaun Patel', 'Matt Mian'),
('Alexander Ecker', 'Andreas Tolias'),
('Roger Hardie', 'Chun-Yuan Ting'),
('Seung-Hee Lee', 'Alex Kwan'),
('Thierry Emonet', 'John R Carlson'),
('Krishna Shenoy', 'Cynthia A Chestek'),
('Francis Willett', 'Andrew Fagg'),
('Zachary Mayko', 'Christine Portfors'),
('Mayank Kabra', 'Dougal Tervo'),
('Carlos Brody', 'Timothy Hanks'),
('Dean Wyatte', 'Calin Buia'),
('Adam Kohn', 'Ruben Moreno'),
('Kristina Nielsen', 'Ian Nauhaus'),
('Carina Curto', 'Vladimir Itskov'),
('Jacob Donoghue', 'Eran Mukamel'),
('Victoria Phoumthipphavong', 'Alex Kwan'),
('Bilal Haider', 'Michael H\xe2\x80\xb0usser'),
('Andre Mendonca', 'Alexandre Pouget'),
('Daniel Polley', 'Ioana Carcea'),
('Darin Dougherty', 'Emad Eskandar'),
('Peter Dayan', 'Geoffrey Goodhill'),
('Joon Hyuk Park', 'Jelena Platisa'),
('Sameer Sheth', 'Matt Mian'),
('Bruno Olshausen', 'Mengchen Zhu'),
('Holly Gerhard', 'Matthias Bethge'),
('Matt Mian', 'John Gale'),
('Kevin Beier', 'Bernardo Sabatini'),
('Rodrigo Laje', 'Dean V. Buonomano'),
('Mikko Juusola', 'Xiaofeng Li'),
('Mili Milosavljevic', 'Christof Koch'),
('Andreas Tolias', 'Michel Besserve'),
('Alain Marchand', 'Vincent Valton'),
('Mandy Turner', 'Dora Angelaki'),
('Mikko Juusola', 'Daniel Coca'),
('Adam Zaidel', 'Mandy Turner'),
('William Anderson', 'Emad Eskandar'),
('Fritz Sommer', 'Daniel Little'),
('Xinyu Liu', 'Matthieu Wyart'),
('Gary Marsat', 'Leonard Maler'),
('Shaun Patel', 'Benjamin Greenberg'),
('Clark Fisher', 'Eric Chen'),
('Carl Smith', 'Frank Wood'),
('Stanley Jose Komban', 'Jose-Manuel Alonso'),
('Edward Callaway', 'Anita Disney'),
('Kentaroh Takagaki', 'Michael T. Lippert'),
('Sway Chen', 'George Whitesides'),
('Yan Karklin', 'Eero Simoncelli'),
('Gasper Tkacik', 'Anandamohan Ghosh'),
('Ziv Rotman', 'Panyue Deng'),
('Jakob Macke', 'Maneesh Sahani'),
('Luigi Acerbi', 'Daniel Wolpert'),
('Aljoscha Schulze', 'Vivek Jayaraman'),
('Daniel Kaping', 'Martin Vinck'),
('Damon Chandler', 'James Golden'),
('Yuzhi Chen', 'Melchi Michel'),
('Aravinthan Samuel', 'Marc Gershow'),
('Chris Rozell', 'Bruno Olshausen'),
('Vani Rajendran', 'Chris Werner'),
('Feryal Mehraban Pour Behbahani', 'Aldo Faisal'),
('Aldo Faisal', 'Scott Taylor'),
('Stephen Williams', 'Mark Harnett'),
('Marie McCulloch', 'Cahir O\xc3\xadKane'),
('Matthew Kaufman', 'Jeffrey Seely'),
('Yanping Huang', 'Rajesh Rao'),
('Qi Wang', 'Jose-Manuel Alonso'),
('Laurence Hunt', 'Tim Behrens'),
('Ian Meinertzhagen', 'Lou Scheffer'),
('Jochen Triesch', 'Ulf Ziemann'),
('John Flannery', 'Siyu Zhang'),
('Matthias Bethge', 'Holly Gerhard'),
('Jacob Donoghue', 'Sydney Cash'),
('Kexin Yuan', 'Michael Merzenich'),
('Jessica A. Cardin', 'Ali Mohebi'),
('Daniel Bullock', 'Timothy Buschman'),
('Chi-Hon Lee', 'Cahir O\xc3\xadKane'),
('Larry Abbott', 'Omri Barak'),
('Olivier List', 'Sidhartha Dongre'),
('Anthony Zador', 'Santiago Jaramillo'),
('Arash Afraz', 'Edith Reshef'),
('Loren Frank', 'Walter German'),
('John Flannery', 'Edward Boyden'),
('Bruno Averbeck', 'Atbin Djamshidian'),
('Matthew Bodenhamer', 'Francis Willett'),
('R. Matthias Hennig', 'K. Jannis Hildebrandt'),
('Clark Fisher', 'Rava da Silveira'),
('Marc Sommer', 'Matt Smith'),
('Rollin Hu', 'Maryam Shanechi'),
('Richard Fetter', 'Shiv Vitaladevuni'),
('Michele Insanally', 'Michael DeWeese'),
('Zhiyuan Lu', 'Richard Fetter'),
('Robert Schmidt', 'Daniel Leventhal'),
('Jonathan Kao', 'Paul Nuyujukian'),
('John R Carlson', 'Thierry Emonet'),
('Brent Doiron', 'Ashok Litwin-Kumar'),
('Daniel Polley', 'Robert Froemke'),
('Ryan Natan', 'Isaac Carruthers'),
('Eero Simoncelli', 'Tony Movshon'),
('Badr Albanna', 'Shaowen Bao'),
('Alex Gomez-Marin', 'Chris Werner'),
('Ian Meinertzhagen', 'Zhiyuan Lu'),
('Paul Nuyujukian', 'Vikash Gilja'),
('Sydney Cash', 'Laura Lewis'),
('Christoph Kolodziejski', 'Marc Timme'),
('Yang Dan', 'Edward Boyden'),
('Stuart Layton', 'Matthew Wilson'),
('Gil Costa', 'Zachary Mainen'),
('Alex Kwan', 'Edward Boyden'),
('Peggy Series', 'Stuart Yarrow'),
('Yushi Wang', 'Reza Lashgari'),
('Danko Nikolic', 'Andreea Lazar'),
('Thomas Wiecki', 'Michael J Frank'),
('Aman Saleem', 'Asli Ayaz'),
('Nikos K. Logothetis', 'Fanis Panagiotaropoulos'),
('Yang Dan', 'Alex Kwan'),
('Eric Reifenstein', 'Richard Kempter'),
('Patrick Jasinski', 'Jeffrey Smith'),
('Ioana Carcea', 'Daniel Polley'),
('Krishna Shenoy', 'Sergey Stavisky'),
('Michael Black', 'Garrett Stanley'),
('Robbe Goris', 'Tony Movshon'),
('Uwe Friederich', 'S.A. Billings'),
('Alison Barker', 'Ana Raquel Martins'),
('Michael Black', 'Jose-Manuel Alonso'),
('Dmitri Chklovskii', 'Arjun Bharioke'),
('Cynthia A Chestek', 'Vikash Gilja'),
('Hideaki Shimazaki', 'Taro Toyoizumi'),
('Bernardo Sabatini', 'Arpiar Saunders'),
('Gus Lott', 'Chris Werner'),
('Ziv Williams', 'Maryam Shanechi'),
('Gary Marsat', 'Andre Longtin'),
('Jose-Manuel Alonso', 'Michael Black'),
('Dora Angelaki', 'Adam Zaidel'),
('Aaron Suminski', 'Matthew Bodenhamer'),
('Salva Ardid', 'Daniel Kaping'),
('Wilson Geisler', 'Yuzhi Chen'),
('Jelena Platisa', 'Vincent Pieribone'),
('Cristopher Niell', 'Antonello Bonci'),
('Pierre Yger', 'Matteo Carandini'),
('R Channing Moore', 'Frederic Theunissen'),
('Mark Harnett', 'Stephen Williams'),
('Steven Chase', 'Matthew Golub'),
('Yang Dan', 'Hiroki Taniguchi'),
('Zachary Mainen', 'Magor Lorincz'),
('Tyler Lee', 'Jack Gallant'),
('Misha Tsodyks', 'David Sussillo'),
('Stefan Everling', 'Martin Vinck'),
('William Newsome', 'Valerio Mante'),
('Bryan Seybold', 'Kexin Yuan'),
('Mark Goldman', 'Melanie Lee'),
('Olivier Marre', 'Michael Berry'),
('Paul Nuyujukian', 'Cynthia A Chestek'),
('Zachary Mainen', 'Thiago Gouvea'),
('Ari Pakman', 'Jonathan Huggins'),
('Simon Peron', 'Loren Looger'),
('Misha Tsodyks', 'Itai Pinkoviezsky'),
('Kexin Yuan', 'Ana Raquel Martins'),
('Maneesh Sahani', 'Stephen Ryu'),
('Christian Tetzlaff', 'Marc Timme'),
('Joshua Berke', 'Robert Schmidt'),
('Abigail Morrison', 'Marc Tittgemeyer'),
('Hania Kover', 'Heesoo Kim'),
('Vani Rajendran', 'Parvez Ahammad'),
('Juan Florez Weidinger', 'Fred Wolf'),
('Nicole Rust', 'Marino Pagan'),
('R. Blythe Towal', 'Christof Koch'),
('Patr\xc3\x8ccia Correia', 'Eran Lottem'),
('A. Moses Lee', 'Michael Stryker'),
('Trevor Wardill', 'Mikko Juusola'),
('Michael Schnabel', 'Fred Wolf'),
('Stefano Fusi', 'Nathaniel Daw'),
('Eldon Emberly', 'Shirin Hadizadeh'),
('Olivier List', 'Chun-Yuan Ting'),
('Hongdian Yang', 'Dietmar Plenz'),
('Cristina Savin', 'Peter Dayan'),
('Liam Paninski', 'Jonathan Huggins'),
('Laura Lewis', 'Jacob Donoghue'),
('Gus Lott', 'Eric Trautman'),
('Arkarup Bandyopadhyay', 'Fred Marbach'),
('Ziv Williams', 'Rollin Hu'),
('Michael Schnabel', 'Matthias Kaschube'),
('Juan Florez Weidinger', 'Matthias Kaschube'),
('Michel Besserve', 'Britni Crocker'),
('Mehrdad Jazayeri', 'Zachary Lindbloom-Brown'),
('Eric DeWitt', 'Thiago Gouvea'),
('Shan Yu', 'Hongdian Yang'),
('Manuel Berning', 'Mihaly Kollo'),
('Ziv Williams', 'Gregory W Wornell'),
('Michael DeWeese', 'Shaowen Bao'),
('Daniel Polley', 'Kexin Yuan'),
('Pamela Reinagel', 'Balaji Sriram'),
('Kenneth Harris', 'Asli Ayaz'),
('Nina C. Di Pietro', 'James M. Hyman'),
('Jakob Voigts', 'Stuart Layton'),
('Shaun Patel', 'Emad Eskandar'),
('Eran Eldar', 'Jonathan Cohen'),
('Jeffrey Magee', 'Karel Svoboda'),
('Gary Marsat', 'William Nesse'),
('Byron Yu', 'Paul Nuyujukian'),
('Marc Timme', 'Christian Tetzlaff'),
('Lars Buesing', 'Jakob Macke'),
('Marissa Powers', 'Gregory W Wornell'),
('Arseny Finkelstein', 'Dori Derdikman'),
('Dori Derdikman', 'Nachum Ulanovsky'),
('Julian Ammer', 'Christoph Kirst'),
('Sidhartha Dongre', 'Cahir O\xc3\xadKane'),
('Jakob Voigts', 'Joshua Siegle'),
('Jan Drugowitsch', 'Ruben Moreno'),
('Gus Lott', 'Parvez Ahammad'),
('Daniel OConnor', 'Loren Looger'),
('Mikko Juusola', 'Sidhartha Dongre'),
('Andreas V.M. Herz', 'Richard Kempter'),
('Anandamohan Ghosh', 'Elad Schneidman'),
('Gus Lott', 'Vivek Jayaraman'),
('Michael Merzenich', 'Hannah Bernstein'),
('Daniel OConnor', 'Daniel Huber'),
('Kendrick Kay', 'Brian Wandell'),
('Dmitri Chklovskii', 'Elizabeth Hulme'),
('Francoise Dellu-Hagedorn', 'Vincent Valton'),
('Frederic Theunissen', 'Tyler Lee'),
('Zhiyuan Lu', 'Ian Meinertzhagen'),
('Biljana Petreska', 'Krishna Shenoy'),
('Ad Aertsen', 'Alejandro Fernandez Bujan'),
('Walter Talbott', 'He Huang'),
('Juan Florez Weidinger', 'Wolfgang Keil'),
('Cahir O\xc3\xadKane', 'Marie McCulloch'),
('R. Matthias Hennig', 'Florian Rau'),
('Dora Angelaki', 'Mandy Turner'),
('Vivienne Ming', 'Engin Bumbacher'),
('Daniel Leventhal', 'Jeff Pettibone'),
('Patrick Cavanagh', 'Edith Reshef'),
('Stephanie Gleiss', 'Kentaroh Takagaki'),
('Gordon Logan', 'Motonori Yamaguchi'),
('Michael Merzenich', 'Ioana Carcea'),
('An Vu', 'Tyler Lee'),
('Tim Behrens', 'Laurence Hunt'),
('Christoph Kayser', 'Michael T. Lippert'),
('Cinira Diogo', 'Timothy Buschman'),
('Robert Froemke', 'Christoph Schreiner'),
('Jakob Macke', 'Lars Buesing'),
('Guillaume Dugu\xc3\x88', 'Eran Lottem'),
('Luke Urban', 'Nicole Rust'),
('Maryam Shanechi', 'Gregory W Wornell'),
('Biljana Petreska', 'Matthew Kaufman'),
('Natalia Shevtsova', 'Jeffrey Smith'),
('Tom Daniel', 'Adrienne Fairhall'),
('Nick Ketz', 'Srinimisha Morkonda'),
('Ronald Van Den Berg', 'Shaiyan Keshvari'),
('Edward Boyden', 'Josh Huang'),
('Yoram Ben-Shaul', 'Catherine Dulac'),
('Dean Wyatte', 'Hanlin Tang'),
('James DiCarlo', 'Maryam Vaziri-Pashkam'),
('Ana Raquel Martins', 'Robert Froemke'),
('Cynthia A Chestek', 'Paul Nuyujukian'),
('Mikko Juusola', 'Chi-Hon Lee'),
('Mikko Juusola', 'Marie McCulloch'),
('Stefano Fusi', 'Mattia Rigotti'),
('Li Zhaoping', 'Zhai Fangwen'),
('Matthieu Wyart', 'Chris Fang-Yen'),
('Mikko Juusola', 'Uwe Friederich'),
('Josh Huang', 'John Flannery'),
('Jonathan Winawer', 'Aviv Mezer'),
('Jeremy K. Seamans', 'Nina C. Di Pietro'),
('Vishal Kapoor', 'Fanis Panagiotaropoulos'),
('Byron Yu', 'Vikash Gilja'),
('Garrison Cottrell', 'Christopher Kanan'),
('Brent Doiron', 'Jonathan Rubin'),
('Jessica Fox', 'Pat Shoemaker'),
('Christoph Schreiner', 'Ioana Carcea'),
('Dimitry Fisher', 'Emre Aksay'),
('Aljoscha Schulze', 'Gus Lott'),
('KiJung Yoon', 'Ila Fiete'),
('Jude Mitchell', 'Anirvan Nandy'),
('Timothy Gardner', 'Jeffrey Markowitz'),
('Odelia Schwartz', 'Adam Kohn'),
('Mark Frye', 'Pat Shoemaker'),
('Jose-Manuel Alonso', 'Jianzhong Jin'),
('Ronen Segev', 'Elad Schneidman'),
('Ari Pakman', 'Liam Paninski'),
('Rollin Hu', 'Marissa Powers'),
('Karl Deisseroth', 'John Flannery'),
('Beth Lopour', 'Itzhak Fried'),
('Aljoscha Schulze', 'Alex Gomez-Marin'),
('Matthew Kaufman', 'Krishna Shenoy'),
('Nicholas Hatsopoulos', 'Aaron Suminski'),
('Cahir O\xc3\xadKane', 'Trevor Wardill'),
('Joshua Berke', 'Alaina Case'),
('Laura Lewis', 'William Anderson'),
('Elad Ganmor', 'Elad Schneidman'),
('Daniel Coca', 'S.A. Billings'),
('Luigi Acerbi', 'Sethu Vijayakumar'),
('Jugoslava Acimovic', 'Tuomo M\xe2\x80\xb0ki-Marttunen'),
('Jozsef Fiser', 'Pietro Berkes'),
('Peter Li', 'Deborah Gunning'),
('James DiCarlo', 'Ethan Solomon'),
('Nikos K. Logothetis', 'Britni Crocker'),
('William Newsome', 'John Reppas'),
('James M. Hyman', 'Eldon Emberly'),
('Jason Rolfe', 'Yann LeCun'),
('Sotiris Masmanidis', 'Victoria Phoumthipphavong'),
('Jason Gerrard', 'John Gale'),
('Larry Abbott', 'Ranulfo Romo'),
('George Whitesides', 'Aravinthan Samuel'),
('Guillaume Dugu\xc3\x88', 'Zachary Mainen'),
('Michel Besserve', 'Stefano Panzeri'),
('Guillaume Dugu\xc3\x88', 'Patr\xc3\x8ccia Correia'),
('Sean Kelly', 'Yushi Wang'),
('Ahmad Osman', 'Joon Hyuk Park'),
('Alejandro Fernandez Bujan', 'Ad Aertsen'),
('Arvind Kumar', 'Alejandro Fernandez Bujan'),
('Ila Fiete', 'O. Ozan Koyluoglu'),
('Johannes Nehrkorn', 'Andreas V.M. Herz'),
('Tatyana Sharpee', 'David Kastner'),
('Tyler Lee', 'Alexander Huth'),
('Nikos K. Logothetis', 'Andreas Tolias'),
('Shiv Vitaladevuni', 'Stephen Plaza'),
('Maneesh Sahani', 'Jakob Macke'),
('Daniel Huber', 'Stephen Williams'),
('Dmitri Chklovskii', 'Shiv Vitaladevuni'),
('Zhiyuan Lu', 'Arjun Bharioke'),
('Susanne Schreiber', 'Richard Kempter'),
('Tirin Moore', 'Alireza Soltani'),
('He Zheng', 'Qi Wang'),
('Edith Reshef', 'Maryam Vaziri-Pashkam'),
('Christoph Schreiner', 'Natalya Zaika'),
('Gus Lott', 'Vani Rajendran'),
('George Whitesides', 'Marc Gershow'),
('Daniel Huber', 'Lin Tian'),
('Athena Akrami', 'Arash Fassihi'),
('Patrick Jasinski', 'Yaroslav Molkov'),
('Masato Okada', 'Hiroki Terashima'),
('Yang Dan', 'Siyu Zhang'),
('Martin Greschner', 'Alan Litke'),
('Margot Wohl', 'Nicole Rust'),
('Victoria Phoumthipphavong', 'Sotiris Masmanidis'),
('Taro Toyoizumi', 'Hideaki Shimazaki'),
('Yang Dan', 'Seung-Hee Lee'),
('Loren Frank', 'Caleb Kemere'),
('Jacob Yates', 'Jonathan Pillow'),
('Fritz Sommer', 'Christopher Hillar'),
('Alex D. Reyes', 'Michael Graupner'),
('Dimitry Fisher', 'Kayvon Daie'),
('Timothy Gentner', 'Justin Kiggins'),
('Antonello Bonci', 'Lung-Hao Tai'),
('Stephen Ryu', 'Biljana Petreska'),
('Calin Buia', 'Hanlin Tang'),
('Alex Kwan', 'Victoria Phoumthipphavong'),
('Chris Fang-Yen', 'Elizabeth Hulme'),
('Katherine Morrison', 'Zachary Roth'),
('Alan Litke', 'Deborah Gunning'),
('KiJung Yoon', 'Caswell Barry'),
('Zhuo Wang', 'Alan Stocker'),
('Ranulfo Romo', 'Omri Barak'),
('K. Jannis Hildebrandt', 'Jan Clemens'),
('Cahir O\xc3\xadKane', 'Chun-Yuan Ting'),
('Daniel Polley', 'Ana Raquel Martins'),
('Alexandre Pouget', 'Ingmar Kanitscheider'),
('Ralf Engbert', 'Felix Wichmann'),
('Qi Wang', 'Garrett Stanley'),
('Robert Froemke', 'Ana Raquel Martins'),
('Jeffrey Fitzgerald', 'Lawrence Sincich'),
('Josh Huang', 'Alex Kwan'),
('Sway Chen', 'Matthieu Wyart'),
('Mengchen Zhu', 'Chris Rozell'),
('Carina Curto', 'Zachary Roth'),
('David Raposo', 'Anne Churchland'),
('John Flannery', 'Seung-Hee Lee'),
('Haim Sompolinsky', 'Yoram Burak'),
('Aljoscha Nern', 'Michael Reiser'),
('Pierre Yger', 'Kenneth Harris'),
('Emery Brown', 'Sydney Cash'),
('Edward Callaway', 'James H Marshel'),
('Jose Carmena', 'Michael Gastpar'),
('Deborah Gunning', 'Martin Greschner'),
('K. Jannis Hildebrandt', 'Florian Rau'),
('Michael Schnabel', 'Wolfgang Keil'),
('Vincent Pieribone', 'Ahmad Osman'),
('Ranulfo Romo', 'Misha Tsodyks'),
('Manuel Berning', 'Fukunaga Izumi'),
('Jacob Donoghue', 'Leigh Hochberg'),
('Matteo Carandini', 'Kate Jeffery'),
('Lou Scheffer', 'Stephen Plaza'),
('Karl Deisseroth', 'Alex Kwan'),
('Wulfram Gerstner', 'Richard Naud'),
('Luke Urban', 'Marino Pagan'),
('Vikash Gilja', 'Stephen Ryu'),
('Linda Wilbrecht', 'Cristopher Niell'),
('Tony Movshon', 'Robbe Goris'),
('Sotiris Masmanidis', 'Alex Kwan'),
('Michael T. Lippert', 'Christoph Kayser'),
('Edward Callaway', 'Tatyana Sharpee'),
('Tyler Lee', 'Shinji Nishimoto'),
('Fred Rieke', 'Eric Shea-Brown'),
('Alex Kwan', 'Siyu Zhang'),
('Philip Sabes', 'Kris Chaisanguanthum'),
('Ana Raquel Martins', 'Bryan Seybold'),
('Krishna Shenoy', 'William Newsome'),
('Elizabeth Hulme', 'Dmitri Chklovskii'),
('Kent Conover', 'Peter Dayan'),
('Aravinthan Samuel', 'Victoria Butler'),
('John Flannery', 'Victoria Phoumthipphavong'),
('Jonathan B. Demb', 'Yanbin V. Wang'),
('Edward Boyden', 'Karl Deisseroth'),
('Ana Raquel Martins', 'Kexin Yuan'),
('Jochen Triesch', 'Catalin Rusu'),
('Siyu Zhang', 'Karl Deisseroth'),
('Christine Portfors', 'Alexander Dimitrov'),
('Joseph Bergan', 'Catherine Dulac'),
('DJ Strouse', 'Bartlett Mel'),
('Stefan Everling', 'Daniel Kaping'),
('Mark Kramer', 'Robert Desimone'),
('Jan Clemens', 'Florian Rau'),
('Hannah Bernstein', 'Robert Froemke'),
('Richard Fetter', 'Arjun Bharioke'),
('Lauren Jepson', 'Keith Mathieson'),
('Hanlin Tang', 'Gabriel Kreiman'),
('Eftychios Pnevmatikakis', 'Liam Paninski'),
('Yushi Wang', 'Jose-Manuel Alonso'),
('Michoel Snow', 'Odelia Schwartz'),
('Keith Mathieson', 'EJ Chichilnisky'),
('Alex Gomez-Marin', 'Vivek Jayaraman'),
('Matthieu Wyart', 'Dmitri Chklovskii'),
('Marissa Powers', 'Ziv Williams'),
('Cahir O\xc3\xadKane', 'Xiaofeng Li'),
('Mark Kramer', 'Kyle Lepage'),
('Vishal Kapoor', 'Nikos K. Logothetis'),
('Krishna Shenoy', 'Matthew Kaufman'),
('Johannes Nehrkorn', 'Ayse Yarali'),
('Sherika Sylvester', 'Kayvon Daie'),
('Angela Radulescu', 'Eran Eldar'),
('Jacob Aptekar', 'Pat Shoemaker'),
('Leigh Hochberg', 'Emad Eskandar'),
('Fanis Panagiotaropoulos', 'Nikos K. Logothetis'),
('Caswell Barry', 'Ila Fiete'),
('Thomas Geib', 'Nathaniel Daw'),
('Ashok Litwin-Kumar', 'Brent Doiron'),
('Mijung Park', 'Greg Horwitz'),
('Emery Brown', 'Marissa Powers'),
('Diego Gutnisky', 'Daniel OConnor'),
('Christopher Moore', 'Matthew Wilson'),
('George Whitesides', 'Chris Fang-Yen'),
('Michael Stryker', 'Antonello Bonci'),
('George Whitesides', 'Xinyu Liu'),
('Dean Wyatte', 'Joseph Madsen'),
('Steve Gotts', 'Robert Desimone'),
('Karel Svoboda', 'Loren Looger'),
('Siyu Zhang', 'Sotiris Masmanidis'),
('Aman Saleem', 'Kenneth Harris'),
('Claudia Clopath', 'Tim P. Vogels'),
('Florian Rau', 'K. Jannis Hildebrandt'),
('Sydney Cash', 'Omar Ahmed'),
('Mark Churchland', 'Matthew Kaufman'),
('Douglas Ollerenshaw', 'He Zheng'),
('Victoria Phoumthipphavong', 'Edward Boyden'),
('Shaun Patel', 'Sameer Sheth'),
('Chung-Chuan Lo', 'Yen-Nan Lin'),
('Ralf Engbert', 'Simon Barthelm\xc3\x88'),
('Tao Hu', 'Ziqiang Wei'),
('Jeremy K. Seamans', 'James M. Hyman'),
('Dean Wyatte', 'Randall OReilly'),
('Kent Conover', 'Ritwik Niyogi'),
('Kerstin Preuschoff', 'Chaohui Guo'),
('Kolia Sadeghi', 'Taro Toyoizumi'),
('Fritz Sommer', 'Gautam Agarwal'),
('Vani Rajendran', 'Matthieu Louis'),
('Mark Goldman', 'Dimitry Fisher'),
('Stuart Layton', 'Christopher Moore'),
('Daniel OConnor', 'Jeffrey Magee'),
('Veronica Weiner', 'Sydney Cash'),
('Hanlin Tang', 'Calin Buia'),
('Alon Chen', 'Elad Schneidman'),
('John Reynolds', 'Jude Mitchell'),
('Stephen Ryu', 'John Cunningham'),
('Tatyana Sharpee', 'Anirvan Nandy'),
('Krishna Shenoy', 'Katherine Ames'),
('Felix Wichmann', 'Hans Trukenbrod'),
('Victoria Butler', 'Andrew Leifer'),
('Jakob Voigts', 'Loren Frank'),
('Tatyana Sharpee', 'Alfred Kaye'),
('Edward Boyden', 'John Flannery'),
('Uri Eden', 'Mark Kramer'),
('Kay Thurley', 'Franziska Hellmundt'),
('Larry Abbott', 'Misha Tsodyks'),
('Mihaly Kollo', 'Fukunaga Izumi'),
('Florian Gerard-Mercier', 'Michael Okun'),
('Steve Gotts', 'Uri Eden'),
('Alison Barker', 'Ioana Carcea'),
('Gregory W Wornell', 'Rollin Hu'),
('Kate Jeffery', 'Asli Ayaz'),
('Elizabeth Hulme', 'Xinyu Liu'),
('Christian Tetzlaff', 'Florentin W\xcb\x86rg\xcb\x86tter'),
('Mikko Juusola', 'Olivier List'),
('Bijan Pesaran', 'Seth Madlon-Kay'),
('EJ Chichilnisky', 'Greg Field'),
('Bryan Seybold', 'Robert Froemke'),
('Gerald Rubin', 'John Tuthill'),
('Peter Li', 'Martin Greschner'),
('Dominique Pritchett', 'Joshua Siegle'),
('Jose Carmena', 'Kelvin So'),
('William Schafer', 'George Whitesides'),
('Daniel Butts', 'Jonathan B. Demb'),
('Karel Svoboda', 'Simon Peron'),
('Yannick-Andre Breton', 'Kent Conover'),
('Reza Lashgari', 'Jens Kremkow'),
('Matthieu Wyart', 'Marc Gershow'),
('Raoul-Martin Memmesheimer', 'Ran Rubin'),
('Chi-Hon Lee', 'Roger Hardie'),
('Stefano Panzeri', 'Vishal Kapoor'),
('Andre Mendonca', 'Maria Vicente'),
('Matthieu Wyart', 'William Schafer'),
('Michael Merzenich', 'Natalya Zaika'),
('Natalya Zaika', 'Christoph Schreiner'),
('Joshua Levy', 'Eric Chen'),
('Julijana Gjorgjieva', 'Fred Rieke'),
('Arash Afraz', 'Patrick Cavanagh'),
('George Whitesides', 'Elizabeth Hulme'),
('Zhiyuan Lu', 'Dmitri Chklovskii'),
('Peter Li', 'Lauren Jepson'),
('Geoffrey Goodhill', 'Jonathan Hunt'),
('Kristina Nielsen', 'Anita Disney'),
('Andrew Fagg', 'Matthew Bodenhamer'),
('Philipp Berens', 'Alexander Ecker'),
('Frank W. Ohl', 'Stephanie Gleiss'),
('Ralf Haefner', 'Pietro Berkes'),
('Lou Scheffer', 'Richard Fetter'),
('Behrad Noudoost', 'Alireza Soltani'),
('Christoph Schreiner', 'Bryan Seybold'),
('Shirin Hadizadeh', 'Eldon Emberly'),
('Victoria Butler', 'Chris Fang-Yen'),
('Helga Mazyar', 'Wei Ji Ma'),
('Aaron Bornstein', 'Thomas Geib'),
('Ian Meinertzhagen', 'Shiv Vitaladevuni'),
('Bruno Olshausen', 'Christopher Hillar'),
('Hanlin Tang', 'Dean Wyatte'),
('Alex Huk', 'Jacob Yates'),
('Gregory Schwartz', 'Nikhil Deshmukh'),
('Martin Greschner', 'Greg Field'),
('Eyal Seidemann', 'Melchi Michel'),
('Sydney Cash', 'Jacob Donoghue'),
('Stephanie Gleiss', 'Frank W. Ohl'),
('Michel Besserve', 'Nikos K. Logothetis'),
('Xinyu Liu', 'Sway Chen'),
('Shaun Patel', 'Darin Dougherty'),
('Sway Chen', 'Chris Fang-Yen'),
('Reza Lashgari', 'Yushi Wang'),
('Beth Lopour', 'Abtine Tavassoli'),
('Michael T. Lippert', 'Stephanie Gleiss'),
('Rava da Silveira', 'Clark Fisher'),
('Vahid Esmaeili', 'Athena Akrami'),
('Maneesh Sahani', 'David Schulz'),
('Michael Reiser', 'John Tuthill'),
('Felix Felmy', 'Andreas V.M. Herz'),
('Charles Gray', 'Urs Koster'),
('Chris Fang-Yen', 'Xinyu Liu'),
('Oren Forkosh', 'Yair Shemesh'),
('Trevor Wardill', 'Marie McCulloch'),
('Elad Schneidman', 'Ronen Segev'),
('Tirin Moore', 'Nicholas Steinmetz'),
('Pat Shoemaker', 'Mark Frye'),
('David Sussillo', 'Ranulfo Romo'),
('Rishabh Jain', 'Bartlett Mel'),
('Michael Okun', 'Florian Gerard-Mercier'),
('Siyu Zhang', 'Victoria Phoumthipphavong'),
('Earl Miller', 'Timothy Buschman'),
('Zachary Mainen', 'Andre Mendonca'),
('Mark Churchland', 'Maneesh Sahani'),
('Daniel McNamee', 'John ODoherty'),
('Martin Greschner', 'Deborah Gunning'),
('Pedro Maldonado', 'Joel Alvarez'),
('Mark Zarella', 'Tatiana Pasternak'),
('Jan Clemens', 'R. Matthias Hennig'),
('Paul Schrater', 'Jacqueline Fulvio'),
('Gordon Logan', 'Jeffrey Schall'),
('Julijana Gjorgjieva', 'Eric Shea-Brown'),
('Patrick Purdon', 'Leigh Hochberg'),
('Elizabeth Hulme', 'Victoria Butler'),
('Zachary Mainen', 'Alexandre Pouget'),
('Karel Svoboda', 'Diego Gutnisky'),
('Sydney Cash', 'Emery Brown'),
('Daniel Wolpert', 'Sethu Vijayakumar'),
('Gonzalo Otazu', 'Dinu Albeanu'),
('Timothy Buschman', 'Eric Denovellis'),
('Jamie Near', 'Laurence Hunt'),
('Joseph Madsen', 'Jacob Donoghue'),
('Eran Mukamel', 'Jacob Donoghue'),
('Asli Ayaz', 'Kate Jeffery'),
('Richard Fetter', 'Dmitri Chklovskii'),
('James Golden', 'David Field'),
('John Tuthill', 'Aljoscha Nern'),
('Jonathan Huggins', 'Liam Paninski'),
('Carlos Brody', 'Chunyu Duan'),
('Olivier Marre', 'Gasper Tkacik'),
('Dinu Albeanu', 'Fred Marbach'),
('Eero Simoncelli', 'Yan Karklin'),
('Yehezkel Sztainberg', 'Elad Schneidman'),
('Kexin Yuan', 'Alison Barker'),
('Merav Stern', 'Larry Abbott'),
('Reza Lashgari', 'Jianzhong Jin'),
('Jeff Pettibone', 'Daniel Leventhal'),
('David Freedman', 'Xiao-Jing Wang'),
('He Zheng', 'Bilal Bari'),
('Rhodri Cusack', 'Annika Linke'),
('Nathaniel Daw', 'Anya Skatova'),
('Alon Rubin', 'Misha Tsodyks'),
('Natalya Zaika', 'Kexin Yuan'),
('Caleb Kemere', 'Joshua Siegle'),
('Eran Mukamel', 'Veronica Weiner'),
('Christopher Moore', 'Dominique Pritchett'),
('Alex Gomez-Marin', 'Vani Rajendran'),
('Bob Schafer', 'Brittany Burrows'),
('Haim Sompolinsky', 'Raoul-Martin Memmesheimer'),
('Matthew Kaufman', 'John Cunningham'),
('Stanley Jose Komban', 'Yushi Wang'),
('Florentin W\xcb\x86rg\xcb\x86tter', 'Christoph Kolodziejski'),
('Brian Wandell', 'Jonathan Winawer'),
('Paul Nuyujukian', 'Joline Fan'),
('An Vu', 'Jack Gallant'),
('David Raposo', 'Paul Schrater'),
('Linda Wilbrecht', 'Antonello Bonci'),
('David Raposo', 'John Sheppard'),
('Kent Conover', 'Yannick-Andre Breton'),
('Ana Raquel Martins', 'Natalya Zaika'),
('Eyal Seidemann', 'Yuzhi Chen'),
('Dmitri Chklovskii', 'Xinyu Liu'),
('Christopher Moore', 'Stuart Layton'),
('Yaroslav Molkov', 'Jeffrey Smith'),
('Kristofer Bouchard', 'Eddie Chang'),
('Daniel Lee', 'Zhuo Wang'),
('Najib Majaj', 'James DiCarlo'),
('Omri Barak', 'Ranulfo Romo'),
('Christopher Pack', 'Farhan Khawaja'),
('Bryan Seybold', 'Ioana Carcea'),
('Mikko Juusola', 'Chun-Yuan Ting'),
('William Bishop', 'Byron Yu'),
('Matthieu Wyart', 'Sway Chen'),
('DJ Strouse', 'Mate Lengyel'),
('Wolfgang Keil', 'Matthias Kaschube'),
('Marc Timme', 'Florentin W\xcb\x86rg\xcb\x86tter'),
('Ila Fiete', 'Neil Burgess'),
('Joshua Levy', 'Rava da Silveira'),
('Mikko Juusola', 'Trevor Wardill'),
('Sukbin Lim', 'Mark Goldman'),
('Tatyana Sharpee', 'Lawrence Sincich'),
('Mattias Karlsson', 'Dougal Tervo'),
('Jeffrey Erlich', 'Timothy Hanks'),
('Jeff Pettibone', 'Joshua Berke'),
('Wilson Geisler', 'Johannes Burge'),
('Robert Froemke', 'Hannah Bernstein'),
('Fanis Panagiotaropoulos', 'Vishal Kapoor'),
('Panyue Deng', 'Vitaly Klyachko'),
('Kelvin So', 'Jose Carmena'),
('Eric Chen', 'Joshua Levy'),
('Jonathan Rubin', 'Brent Doiron'),
('Chung-Chuan Lo', 'Yi-Hsuan Lee'),
('Jeffrey Smith', 'Ilya Rybak'),
('Brice Bathellier', 'Simon Rumpel'),
('Vani Rajendran', 'Alex Gomez-Marin'),
('Chaohui Guo', 'Kerstin Preuschoff'),
('Rebecca Solomon', 'Peter Shizgal'),
('Patrick Cavanagh', 'Arash Afraz'),
('Jonathan Kao', 'Joline Fan'),
('Hanlin Tang', 'Joseph Madsen'),
('Ha Hong', 'James DiCarlo'),
('A. Moses Lee', 'Lung-Hao Tai'),
('Baktash Babadi', 'Haim Sompolinsky'),
('Fred Wolf', 'Michael Schnabel'),
('Shin-ya Takemura', 'Zhiyuan Lu'),
('Salva Ardid', 'Thilo Womelsdorf'),
('Anthony Zador', 'Yang Yang'),
('Peter Dayan', 'Loic Matthey'),
('Athena Akrami', 'Vahid Esmaeili'),
('Alan Stocker', 'Daniel Lee'),
('Ralf Haefner', 'Jozsef Fiser'),
('Jugoslava Acimovic', 'Keijo Ruohonen'),
('Gergo Orb\xc2\xb7n', 'Laurence Aitchison'),
('Alexander Genkin', 'Tao Hu'),
('Dongsung Huh', 'Terrence Sejnowski'),
('Greg Field', 'Martin Greschner'),
('Biljana Petreska', 'Mark Churchland'),
('Bryan Seybold', 'Natalya Zaika'),
('Elad Schneidman', 'Gasper Tkacik'),
('Jeffrey Schall', 'Motonori Yamaguchi'),
('Chris Fang-Yen', 'Sway Chen'),
('Marc Timme', 'Demian Battaglia'),
('Stanley Jose Komban', 'Jens Kremkow'),
('Gabriel Kreiman', 'Calin Buia'),
('Alla Karpova', 'Mattias Karlsson'),
('Steve Gotts', 'Georgia Gregoriou'),
('Uri Eden', 'Georgia Gregoriou'),
('Jacob Donoghue', 'Emery Brown'),
('Dmitri Chklovskii', 'George Whitesides'),
('Elizabeth Hulme', 'Quan Wen'),
('Kexin Yuan', 'Hannah Bernstein'),
('Jonathan Hunt', 'Peter Dayan'),
('Yair Shemesh', 'Oren Forkosh'),
('Nicole Rust', 'Margot Wohl'),
('Mate Lengyel', 'Gergo Orb\xc2\xb7n'),
('Philipp Berens', 'Matthias Bethge'),
('Andreas Tolias', 'Matthias Bethge'),
('Sway Chen', 'Quan Wen'),
('Eric DeWitt', 'Gil Costa'),
('Randall OReilly', 'Joseph Madsen'),
('William Nesse', 'Gary Marsat'),
('Warasinee Chaisangmongkon', 'Xiao-Jing Wang'),
('Hiromu Tanimoto', 'Andreas V.M. Herz'),
('Alon Chen', 'Yair Shemesh'),
('Lauren Jepson', 'Alan Litke'),
('Mark Kramer', 'Georgia Gregoriou'),
('Shin-ya Takemura', 'Richard Fetter'),
('Florian Gerard-Mercier', 'Pierre Yger'),
('Parvez Ahammad', 'Vivek Jayaraman'),
('Mate Lengyel', 'Cristina Savin'),
('Greg Field', 'Peter Li'),
('Jonathan Hunt', 'Geoffrey Goodhill'),
('Jonathan Cohen', 'Yael Niv'),
('Felix Wichmann', 'Ralf Engbert'),
('Sotiris Masmanidis', 'John Flannery'),
('Andrew Leifer', 'Elizabeth Hulme'),
('Daniel Leventhal', 'Robert Schmidt'),
('Martin Vinck', 'Thilo Womelsdorf'),
('Matt Mian', 'Jason Gerrard'),
('Arash Afraz', 'Maryam Vaziri-Pashkam'),
('Olivier List', 'Marie McCulloch'),
('Jeremy Freeman', 'Tony Movshon'),
('Kayvon Daie', 'Sherika Sylvester'),
('Pieter Roelfsema', 'Sander Bohte'),
('Christoph Schreiner', 'Alison Barker'),
('Marissa Powers', 'Rollin Hu'),
('William Anderson', 'Sydney Cash'),
('Daniel OConnor', 'Mark Harnett'),
('Chris Rozell', 'Han Lun Yap'),
('Zachary Mainen', 'Patr\xc3\x8ccia Correia'),
('Lawrence Sincich', 'Tatyana Sharpee'),
('Jeff Pobst', 'David Morton'),
('Jan Drugowitsch', 'Alexandre Pouget'),
('Krishna Shenoy', 'David Sussillo'),
('Miranda Babiak', 'Kristofer Bouchard'),
('George R. Mangun', 'W. Martin Usrey'),
('Felix Patzelt', 'Klaus Pawelzik'),
('Abram Friesen', 'Rajesh Rao'),
('Masud Husain', 'Paul Bays'),
('Andrea Barreiro', 'Julijana Gjorgjieva'),
('Kristin Branson', 'Dougal Tervo'),
('David Barrett', 'Peter Latham'),
('Dimitry Fisher', 'Sherika Sylvester'),
('Magor Lorincz', 'Guillaume Dugu\xc3\x88'),
('Itai Pinkoviezsky', 'Alon Rubin'),
('Georgia Gregoriou', 'Kyle Lepage'),
('Yosef Yarom', 'Merav Stern'),
('Kayvon Daie', 'Melanie Lee'),
('EJ Chichilnisky', 'Alan Litke'),
('Elad Schneidman', 'Elad Ganmor'),
('Elad Schneidman', 'Oren Forkosh'),
('Ari Rosenberg', 'Noah Cowan'),
('Emre Aksay', 'Kayvon Daie'),
('Shantanu Jadhav', 'Walter German'),
('Jose-Manuel Alonso', 'Yushi Wang'),
('Omri Barak', 'David Sussillo'),
('Adam Johnson', 'Jedidiah Carlson'),
('Xinyu Liu', 'Dmitri Chklovskii'),
('Luke Urban', 'Margot Wohl'),
('John Pearson', 'Benjamin Hayden'),
('Qi Wang', 'Douglas Ollerenshaw'),
('Michael J Frank', 'Anne Collins'),
('Jeffrey Smith', 'Patrick Jasinski'),
('Emery Brown', 'Veronica Weiner'),
('Karim Oweiss', 'Jessica A. Cardin'),
('Juan Florez Weidinger', 'Dmitry Tsigankov'),
('W. Martin Usrey', 'George R. Mangun'),
('Maneesh Sahani', 'Mark Churchland'),
('Veronica Weiner', 'Patrick Purdon'),
('Stuart Yarrow', 'Peggy Series'),
('Siyu Zhang', 'Hiroki Taniguchi'),
('Lou Scheffer', 'Ian Meinertzhagen'),
('Keith Johnson', 'Miranda Babiak'),
('Qi Wang', 'Sean Kelly'),
('Salva Ardid', 'Stefan Everling'),
('Stephen Baccus', 'Tatyana Sharpee'),
('Vincent Pieribone', 'Joon Hyuk Park'),
('Eran Lottem', 'Guillaume Dugu\xc3\x88'),
('Aravinthan Samuel', 'Quan Wen'),
('Itai Pinkoviezsky', 'Misha Tsodyks'),
('Mattia Rigotti', 'Daniel Ben Dayan Rubin'),
('Christoph Schreiner', 'Ana Raquel Martins'),
('Victoria Butler', 'Xinyu Liu'),
('Loren Frank', 'Jakob Voigts'),
('Christine Portfors', 'Zachary Mayko'),
('Thiago Gouvea', 'Gil Costa'),
('Marc Timme', 'Christoph Kolodziejski'),
('Maryam Vaziri-Pashkam', 'James DiCarlo'),
('Michael Berry', 'Nikhil Deshmukh'),
('Judy Walker', 'Zachary Roth'),
('Asli Ayaz', 'Aman Saleem'),
('Matteo Carandini', 'David Schulz'),
('Shiv Vitaladevuni', 'Shin-ya Takemura'),
('Chi-Hon Lee', 'Shiming Tang'),
('Joshua Siegle', 'Jakob Voigts'),
('Aravinthan Samuel', 'Elizabeth Hulme'),
('Wulfram Gerstner', 'Henning Sprekeler'),
('Peter Bossaerts', 'Kerstin Preuschoff'),
('Michael DeWeese', 'Michele Insanally'),
('Alison Barker', 'Michael Merzenich'),
('Quan Wen', 'Xinyu Liu'),
('Nina C. Di Pietro', 'Shirin Hadizadeh'),
('Gordon Logan', 'Thomas Palmeri'),
('Tatyana Sharpee', 'Jude Mitchell'),
('Britni Crocker', 'Stefano Panzeri'),
('Kyle Lepage', 'Steve Gotts'),
('Eric Denovellis', 'Daniel Bullock'),
('Gerhard Jocham', 'Laurence Hunt'),
('Corey Ziemba', 'Eero Simoncelli'),
('Tatiana Pasternak', 'Mark Zarella'),
('Marc Gershow', 'Victoria Butler'),
('Dmitri Chklovskii', 'Stephen Plaza'),
('Isaac Carruthers', 'Ryan Natan'),
('Alireza Soltani', 'Tirin Moore'),
('Eero Simoncelli', 'Andrew Zaharia'),
('Andre Longtin', 'Leonard Maler'),
('Lou Scheffer', 'Dmitri Chklovskii'),
('Michael Berry', 'Clark Fisher'),
('Zachary Mainen', 'Eric DeWitt'),
('William Schafer', 'Chris Fang-Yen'),
('Michael Platt', 'R Ebitz'),
('Shiming Tang', 'Chun-Yuan Ting'),
('Etienne Koechlin', 'Jan Drugowitsch'),
('Cahir O\xc3\xadKane', 'Roger Hardie'),
('Joshua Berke', 'Jeff Pettibone'),
('Roozbeh Kiani', 'William Newsome'),
('Peter Bossaerts', 'Chaohui Guo'),
('Ioana Carcea', 'Natalya Zaika'),
('Elad Schneidman', 'Einat Granot-Atedgi'),
('Siyu Zhang', 'Yang Dan'),
('Yair Shemesh', 'Elad Schneidman'),
('Simon Barthelm\xc3\x88', 'Hans Trukenbrod'),
('Robert Rosenbaum', 'Kresimir Josic'),
('Nikos K. Logothetis', 'Stephanie Gleiss'),
('Ryan Rowekamp', 'Jeffrey Fitzgerald'),
('Sidhartha Dongre', 'Chun-Yuan Ting'),
('Nina C. Di Pietro', 'Stan Floresco'),
('Bryan Seybold', 'Daniel Polley'),
('C Shawn Green', 'Paul Schrater'),
('Keith Mathieson', 'Lauren Jepson'),
('Ioana Carcea', 'Robert Froemke'),
('Yael Niv', 'Jonathan Cohen'),
('Ian Nauhaus', 'Kristina Nielsen'),
('Caswell Barry', 'Neil Burgess'),
('Michael Berry', 'Eric Chen'),
('Jacob Donoghue', 'Emad Eskandar'),
('Deep Ganguli', 'Eero Simoncelli'),
('Roger Hardie', 'Trevor Wardill'),
('Matthieu Wyart', 'Elizabeth Hulme'),
('Gerhard Jocham', 'Jamie Near'),
('Loic Matthey', 'Peter Dayan'),
('Mathew E. Diamond', 'Vahid Esmaeili'),
('Michael Berry', 'Gregory Schwartz'),
('Fukunaga Izumi', 'Mihaly Kollo'),
('Peter Latham', 'Jeffrey Beck'),
('Matthew Kaufman', 'Maneesh Sahani'),
('Mark Kramer', 'Steve Gotts'),
('Xiaofeng Li', 'Chi-Hon Lee'),
('Zhuo Wang', 'Kevin Shi'),
('Jason Hunzinger', 'Victor Chan'),
('Yen-Nan Lin', 'Yi-Hsuan Lee'),
('Melanie Lee', 'Kayvon Daie'),
('Henning Sprekeler', 'Wulfram Gerstner'),
('Paul Bays', 'Masud Husain'),
('Elizabeth Hulme', 'Chris Fang-Yen'),
('Victoria Phoumthipphavong', 'Karl Deisseroth'),
('Karl Deisseroth', 'Seung-Hee Lee'),
('Eddie Chang', 'Nima Mesgarani'),
('Daniel Leventhal', 'Joshua Berke'),
('Alexander Dimitrov', 'Zachary Mayko'),
('Dmitri Chklovskii', 'William Schafer'),
('Gabriel Kreiman', 'Dean Wyatte'),
('Patrick Cavanagh', 'James DiCarlo'),
('Tatyana Sharpee', 'Edward Callaway'),
('Wolfgang Keil', 'Michael Schnabel'),
('Hannah Bernstein', 'Ana Raquel Martins'),
('Alexandre Pouget', 'I\xc3\x92igo Romero Arandia'),
('Gergo Orb\xc2\xb7n', 'Mate Lengyel'),
('Zachary Lindbloom-Brown', 'Mehrdad Jazayeri'),
('Evan Archer', 'Il Memming Park'),
('Adam Johnson', 'Paul Schrater'),
('Emad Eskandar', 'William Anderson'),
('Matthew Wilson', 'Caleb Kemere'),
('Yushi Wang', 'Sean Kelly'),
('Patrick Purdon', 'Joseph Madsen'),
('Nathaniel Daw', 'Thomas Geib'),
('Xiaofeng Li', 'Sidhartha Dongre'),
('Jan Clemens', 'K. Jannis Hildebrandt'),
('Taro Toyoizumi', 'Kolia Sadeghi'),
('Nikos K. Logothetis', 'Kentaroh Takagaki'),
('Aviv Mezer', 'Kendrick Kay'),
('Johannes Nehrkorn', 'Hiromu Tanimoto'),
('Jedidiah Carlson', 'Adam Johnson'),
('John Cunningham', 'Stephen Ryu'),
('Dmitry Tsigankov', 'Matthias Kaschube'),
('Jelena Platisa', 'Joon Hyuk Park'),
('Upinder S. Bhalla', 'Priyanka Gupta'),
('Neil Burgess', 'Caswell Barry'),
('Yuzhi Chen', 'Eyal Seidemann'),
('David Sussillo', 'Valerio Mante'),
('Chris Werner', 'Aljoscha Schulze'),
('A. Moses Lee', 'Antonello Bonci'),
('Eldon Emberly', 'Nina C. Di Pietro'),
('Kenneth Harris', 'Kate Jeffery'),
('Julijana Gjorgjieva', 'Markus Meister'),
('Heesoo Kim', 'Shaowen Bao'),
('Vincent Pieribone', 'Jelena Platisa'),
('Michel Besserve', 'Fanis Panagiotaropoulos'),
('Jose-Manuel Alonso', 'Stanley Jose Komban'),
('David Morton', 'Ralf Wessel'),
('Andreas Tolias', 'Britni Crocker'),
('Mark Harnett', 'Daniel Huber'),
('Darin Dougherty', 'Shaun Patel'),
('Dougal Tervo', 'Mattias Karlsson'),
('Aravinthan Samuel', 'George Whitesides'),
('Supriya Ray', 'Stephen Heinen'),
('Seung-Hee Lee', 'Sotiris Masmanidis'),
('Stephen Williams', 'Daniel OConnor'),
('Jonathan Wallis', 'Antonio Lara'),
('Bryan Seybold', 'Ana Raquel Martins'),
('Bardia Behabadi', 'Bartlett Mel'),
('Mark Bear', 'Jeff Gavornik'),
('Nicholas Hatsopoulos', 'Andrew Fagg'),
('Andrew Lees', 'Atbin Djamshidian'),
('Vikash Gilja', 'Paul Nuyujukian'),
('Sherika Sylvester', 'Dimitry Fisher'),
('Matthew Koh', 'Arkarup Bandyopadhyay'),
('Michael Okun', 'Kenneth Harris'),
('Alex Huk', 'Jonathan Pillow'),
('Vivek Jayaraman', 'Chris Werner'),
('Hannah Bernstein', 'Alison Barker'),
('Vikash Gilja', 'William Bishop'),
('Stefan Everling', 'Salva Ardid'),
('Quan Wen', 'Sway Chen'),
('Maneesh Sahani', 'Biljana Petreska'),
('Paul Nuyujukian', 'Byron Yu'),
('Miranda Babiak', 'Keith Johnson'),
('John ODoherty', 'Daniel McNamee'),
('Olivier List', 'Mikko Juusola'),
('Yaroslav Molkov', 'Patrick Jasinski'),
('Jeffrey Schall', 'Thomas Palmeri'),
('Balaji Sriram', 'Pamela Reinagel'),
('Parvez Ahammad', 'Matthieu Louis'),
('William Anderson', 'Veronica Weiner'),
('Nicholas Steinmetz', 'Tirin Moore'),
('Jan Drugowitsch', 'I\xc3\x92igo Romero Arandia'),
('Ayse Yarali', 'Hiromu Tanimoto'),
('Jeffrey Erlich', 'Carlos Brody'),
('Zhiyuan Lu', 'Shin-ya Takemura'),
('Steve Cox', 'Kathryn Hedrick'),
('Dmitri Chklovskii', 'Andrew Leifer'),
('Evan Archer', 'Jonathan Pillow'),
('Joseph Madsen', 'Leigh Hochberg'),
('Leigh Hochberg', 'William Anderson'),
('John Flannery', 'Josh Huang'),
('Cinira Diogo', 'Earl Miller'),
('Marino Pagan', 'Nicole Rust'),
('Xiao-Jing Wang', 'David Freedman'),
('Josh Huang', 'Yang Dan'),
('Anirvan Nandy', 'John Reynolds'),
('Kexin Yuan', 'Natalya Zaika'),
('Jacqueline Fulvio', 'C Shawn Green'),
('Peter Dayan', 'Mate Lengyel'),
('Michael Berry', 'Gasper Tkacik'),
('Roger Hardie', 'Chi-Hon Lee'),
('Fred Marbach', 'Arkarup Bandyopadhyay'),
('Eero Simoncelli', 'Jeremy Freeman'),
('Jack Gallant', 'Alexander Huth'),
('Christopher Moore', 'Loren Frank'),
('R Channing Moore', 'Tyler Lee'),
('James DiCarlo', 'Ha Hong'),
('Natalia Shevtsova', 'Yaroslav Molkov'),
('Shirin Hadizadeh', 'Nina C. Di Pietro'),
('Wulfram Gerstner', 'Guillaume Hennequin'),
('Siyu Zhang', 'Seung-Hee Lee'),
('Lauren Jepson', 'Deborah Gunning'),
('Mengchen Zhu', 'Bruno Olshausen'),
('Alireza Soltani', 'Brittany Burrows'),
('Daniel Huber', 'Karel Svoboda'),
('Matthew Bodenhamer', 'Aaron Suminski'),
('Shiming Tang', 'Cahir O\xc3\xadKane'),
('Lou Scheffer', 'Zhiyuan Lu'),
('Abtine Tavassoli', 'Beth Lopour'),
('Keith Johnson', 'Kristofer Bouchard'),
('Christopher Moore', 'Joshua Siegle'),
('Xiaofeng Li', 'Chun-Yuan Ting'),
('David Field', 'Damon Chandler'),
('Sean Kelly', 'Michael Black'),
('Marino Pagan', 'Luke Urban'),
('Bingni Brunton', 'Timothy Hanks'),
('Ha Hong', 'Ethan Solomon'),
('Jack Gallant', 'Shinji Nishimoto'),
('Marie McCulloch', 'Chun-Yuan Ting'),
('Jose-Manuel Alonso', 'Qi Wang'),
('Daniel Huber', 'Ning-long Xu'),
('Darin Dougherty', 'Sameer Sheth'),
('Haim Sompolinsky', 'Markus Meister'),
('Christoph Schreiner', 'Michael Merzenich'),
('Franziska Hellmundt', 'Kay Thurley'),
('William Anderson', 'Patrick Purdon'),
('Paul Schrater', 'David Raposo'),
('Mark Harnett', 'Jeffrey Magee'),
('Alexandro Ramirez', 'Liam Paninski'),
('Tatyana Sharpee', 'Ryan Rowekamp'),
('Andreas V.M. Herz', 'Christoph Kirst'),
('Emad Eskandar', 'Jason Gerrard'),
('Matthieu Louis', 'Aljoscha Schulze'),
('Adam Charles', 'Han Lun Yap'),
('Michael Black', 'Jianzhong Jin'),
('Roger Hardie', 'Olivier List'),
('Timothy Hanks', 'Carlos Brody'),
('Gregory W Wornell', 'Emery Brown'),
('Loren Frank', 'Stuart Layton'),
('Edward Boyden', 'Yang Dan'),
('Martin Greschner', 'Keith Mathieson'),
('Nicholas Price', 'Richard Born'),
('Farhan Khawaja', 'Daniel Butts'),
('Gautam Agarwal', 'Fritz Sommer'),
('Jens Kremkow', 'Reza Lashgari'),
('Robert Schmidt', 'Alaina Case'),
('Bruno Olshausen', 'Charles Gray'),
('Eric Shea-Brown', 'Fred Rieke'),
('Andrew Leifer', 'Chris Fang-Yen'),
('Yann LeCun', 'Matthew Cook'),
('Felix Felmy', 'Martin Stemmler'),
('David Field', 'James Golden'),
('Nathaniel Daw', 'Aaron Bornstein'),
('Liam Paninski', 'Ari Pakman'),
('Robert Desimone', 'Georgia Gregoriou'),
('Yannick-Andre Breton', 'Rebecca Solomon'),
('Mayank Kabra', 'Kristin Branson'),
('Dmitri Chklovskii', 'Ian Meinertzhagen'),
('Chi-Hon Lee', 'Olivier List'),
('Stephen Plaza', 'Richard Fetter'),
('Shin-ya Takemura', 'Lou Scheffer'),
('Leigh Hochberg', 'Eran Mukamel'),
('Emery Brown', 'Emad Eskandar'),
('Jeffrey Magee', 'Mark Harnett'),
('Yang Dan', 'Karl Deisseroth'),
('Nicholas Furl', 'Andrew Lees'),
('Stephen Williams', 'Jeffrey Magee'),
('S.A. Billings', 'Daniel Coca'),
('Benjamin Greenberg', 'Jason Gerrard'),
('Sydney Cash', 'Joseph Madsen'),
('Florian Rau', 'Jan Clemens'),
('Steven Brumby', 'Michael Ham'),
('Paul Nuyujukian', 'Jonathan Kao'),
('Alexander Ecker', 'Philipp Berens'),
('Matthieu Wyart', 'George Whitesides'),
('Ana Raquel Martins', 'Alison Barker'),
('Jedidiah Carlson', 'Paul Schrater'),
('Stephen Williams', 'Ning-long Xu'),
('Jeffrey Fitzgerald', 'Ryan Rowekamp'),
('Peter Dayan', 'Ritwik Niyogi'),
('Emery Brown', 'Laura Lewis'),
('Daniel Butts', 'Yuwei Cui'),
('Antonio Rangel', 'John ODoherty'),
('John Gale', 'Jason Gerrard'),
('Ila Fiete', 'John Widloski'),
('Alan Litke', 'Keith Mathieson'),
('Laurence Hunt', 'Gerhard Jocham'),
('Fanis Panagiotaropoulos', 'Andreas Tolias'),
('Ryan Rowekamp', 'Lawrence Sincich'),
('Matthieu Wyart', 'Xinyu Liu'),
('Eldon Emberly', 'James M. Hyman'),
('Parvez Ahammad', 'Gus Lott'),
('Felix Wichmann', 'Jakob Macke'),
('Mattias Karlsson', 'Alla Karpova'),
('Sherika Sylvester', 'Melanie Lee'),
('Tony Movshon', 'Eero Simoncelli'),
('Grigorios Sotiropoulos', 'Aaron Seitz'),
('Matthew Golub', 'Steven Chase'),
('Christof Koch', 'Mili Milosavljevic'),
('Zachary Mainen', 'Eran Lottem'),
('Eero Simoncelli', 'Brett Vintch'),
('Ahmad Osman', 'Vincent Pieribone'),
('Andreas V.M. Herz', 'Felix Felmy'),
('Farran Briggs', 'George R. Mangun'),
('Ralf Wessel', 'Jeff Pobst'),
('Chris Werner', 'Matthieu Louis'),
('Stephen Ryu', 'Sergey Stavisky'),
('Peter Dayan', 'Cristina Savin'),
('Scott Taylor', 'Aldo Faisal'),
('Daniel Huber', 'Daniel OConnor'),
('Jeremy K. Seamans', 'Shirin Hadizadeh'),
('Yushi Wang', 'Jens Kremkow'),
('Jose-Manuel Alonso', 'Jens Kremkow'),
('Jonathan Pillow', 'Greg Horwitz'),
('Aravinthan Samuel', 'Matthieu Wyart'),
('Jeffrey Beck', 'Ingmar Kanitscheider'),
('Rollin Hu', 'Emery Brown'),
('Richard Born', 'Nicholas Price'),
('Cynthia A Chestek', 'Byron Yu'),
('Yi-Hsuan Lee', 'Chung-Chuan Lo'),
('Sotiris Masmanidis', 'Seung-Hee Lee'),
('Christoph Kolodziejski', 'Florentin W\xcb\x86rg\xcb\x86tter'),
('Markus Meister', 'Julijana Gjorgjieva'),
('Tirin Moore', 'Behrad Noudoost'),
('Loren Looger', 'Daniel OConnor'),
('Sameer Sheth', 'Darin Dougherty'),
('Simon Barthelm\xc3\x88', 'Felix Wichmann'),
('Jeffrey Beck', 'Ronald Van Den Berg'),
('Vikranth Bejjanki', 'Alexandre Pouget'),
('Matt Mian', 'Darin Dougherty'),
('Veronica Weiner', 'Leigh Hochberg'),
('Leigh Hochberg', 'Sydney Cash'),
('Veronica Weiner', 'Emad Eskandar'),
('Richard Fetter', 'Stephen Plaza'),
('Atbin Djamshidian', 'Bruno Averbeck'),
('Walter German', 'Loren Frank'),
('Simon Peron', 'Diego Gutnisky'),
('Mehmet Fisek', 'Rachel Wilson'),
('Alexandre Pouget', 'Adam Kohn'),
('Christoph Kirst', 'Andreas V.M. Herz'),
('Uri Eden', 'Steve Gotts'),
('Steven Brumby', 'Garrett Kenyon'),
('Fukunaga Izumi', 'Andreas Schaefer'),
('Michel Besserve', 'Andreas Tolias'),
('Vivek Jayaraman', 'Vani Rajendran'),
('Hiroki Taniguchi', 'Sotiris Masmanidis'),
('Eyal Nitzany', 'Jonathan Victor'),
('Eero Simoncelli', 'Robbe Goris'),
('Marie McCulloch', 'Olivier List'),
('Matt Mian', 'Emad Eskandar'),
('Eldon Emberly', 'Stan Floresco'),
('Douglas Ollerenshaw', 'Bilal Bari'),
('Xinyu Liu', 'George Whitesides'),
('Sander Bohte', 'Pieter Roelfsema'),
('Byron Yu', 'Matthew Golub'),
('Christoph Kayser', 'Kentaroh Takagaki'),
('Hannah Bernstein', 'Michael Merzenich'),
('Jonathan Pillow', 'Jacob Yates'),
('Hongdian Yang', 'Shan Yu'),
('Dmitri Chklovskii', 'Richard Fetter'),
('Joseph Madsen', 'William Anderson'),
('Ila Fiete', 'Caswell Barry'),
('Marissa Powers', 'Maryam Shanechi'),
('Natalya Zaika', 'Bryan Seybold'),
('Keith Mathieson', 'Peter Li'),
('Florian Gerard-Mercier', 'Kenneth Harris'),
('Qi Wang', 'He Zheng'),
('Qi Wang', 'Bilal Bari'),
('Martin Stemmler', 'Susanne Schreiber'),
('Chun-Yuan Ting', 'Sidhartha Dongre'),
('Larry Abbott', 'David Sussillo'),
('Kate Jeffery', 'Matteo Carandini'),
('Hiroki Taniguchi', 'Seung-Hee Lee'),
('Paul Schrater', 'John Sheppard'),
('Ronald Van Den Berg', 'Helga Mazyar'),
('Simon Rumpel', 'Brice Bathellier'),
('Paul Schrater', 'Jedidiah Carlson'),
('Joshua Levy', 'Clark Fisher'),
('Heesoo Kim', 'Michael DeWeese'),
('Chunyu Duan', 'Timothy Hanks'),
('Joon Hyuk Park', 'Ahmad Osman'),
('Zhai Fangwen', 'Ning Qian'),
('Victoria Butler', 'Quan Wen'),
('Chun-Yuan Ting', 'Cahir O\xc3\xadKane'),
('Yehezkel Sztainberg', 'Oren Forkosh'),
('Frederick Soo', 'Michael Berry'),
('Caleb Kemere', 'Jakob Voigts'),
('Chris Werner', 'Parvez Ahammad'),
('Hans Trukenbrod', 'Felix Wichmann'),
('Ziqiang Wei', 'Dmitri Chklovskii'),
('Roger Hardie', 'Mikko Juusola'),
('Caleb Kemere', 'Shantanu Jadhav'),
('Abtine Tavassoli', 'Itzhak Fried'),
('Kyle Lepage', 'Mark Kramer'),
('Michael Merzenich', 'Christoph Schreiner'),
('Sydney Cash', 'Leigh Hochberg'),
('Aljoscha Schulze', 'Chris Werner'),
('Mihaly Kollo', 'Andreas Schaefer'),
('Sandro Romani', 'Misha Tsodyks'),
('Melanie Lee', 'Mark Goldman'),
('Joseph Madsen', 'Dean Wyatte'),
('Jacob Donoghue', 'Patrick Purdon'),
('Zachary Mainen', 'Gil Costa'),
('Tim P. Vogels', 'Claudia Clopath'),
('David Kastner', 'Stephen Baccus'),
('Alex Gomez-Marin', 'Aljoscha Schulze'),
('Melchi Michel', 'Eyal Seidemann'),
('Stefano Panzeri', 'Fanis Panagiotaropoulos'),
('James Golden', 'Damon Chandler'),
('Sean Kelly', 'Qi Wang'),
('Cecilia Babul', 'Pedro Maldonado'),
('Carl Smith', 'Liam Paninski'),
('Jeffrey Erlich', 'Chunyu Duan'),
('EJ Chichilnisky', 'Martin Greschner'),
('Anandamohan Ghosh', 'Gasper Tkacik'),
('David Schulz', 'Maneesh Sahani'),
('Elizabeth Hulme', 'George Whitesides'),
('Farran Briggs', 'W. Martin Usrey'),
('Vikranth Bejjanki', 'Jeffrey Beck'),
('Yair Shemesh', 'Yehezkel Sztainberg'),
('James M. Hyman', 'Nina C. Di Pietro'),
('Britni Crocker', 'Fanis Panagiotaropoulos'),
('Christopher Hillar', 'Urs Koster'),
('James M. Hyman', 'Stan Floresco'),
('Ruben Moreno', 'Alexandre Pouget'),
('Christopher Kanan', 'Garrison Cottrell'),
('Michael Reiser', 'Aljoscha Nern'),
('Arnulf Graf', 'Richard Andersen'),
('Alfred Kaye', 'Edward Callaway'),
('Joseph Madsen', 'Gabriel Kreiman'),
('Maneesh Sahani', 'Matthew Kaufman'),
('Catalin Rusu', 'Jochen Triesch'),
('Abigail Morrison', 'Jenia Jitsev'),
('Andrew Leifer', 'George Whitesides'),
('Olivier List', 'Chi-Hon Lee'),
('Shin-ya Takemura', 'Arjun Bharioke'),
('Neil Burgess', 'Michael Buice'),
('Annika Linke', 'Rhodri Cusack'),
('Noah Cowan', 'Ari Rosenberg'),
('Eugenio Culurciello', 'Ahmad Osman'),
('Krishna Shenoy', 'Maneesh Sahani'),
('Kexin Yuan', 'Ioana Carcea'),
('Xinyu Liu', 'Elizabeth Hulme'),
('Peter Dayan', 'Paul Bays'),
('Adam Zaidel', 'Dora Angelaki'),
('Daniel Bullock', 'Eric Denovellis'),
('Olivier List', 'Trevor Wardill'),
('William Nesse', 'Leonard Maler'),
('Anya Skatova', 'Seth Madlon-Kay'),
('Parvez Ahammad', 'Eric Trautman'),
('Peter Li', 'Keith Mathieson'),
('Itzhak Fried', 'Beth Lopour'),
('Daniel Bullock', 'Cinira Diogo'),
('SueYeon Chung', 'Haim Sompolinsky'),
('Kedarnath Vilankar', 'James Golden'),
('Aviv Mezer', 'Jonathan Winawer'),
('Elizabeth Hulme', 'Marc Gershow'),
('Emery Brown', 'Patrick Purdon'),
('Seung-Hee Lee', 'John Flannery'),
('Alison Barker', 'Christoph Schreiner'),
('Marc Gershow', 'George Whitesides'),
('Hiroki Taniguchi', 'John Flannery'),
('William Schafer', 'Aravinthan Samuel'),
('Matthieu Louis', 'Vivek Jayaraman'),
('Sydney Cash', 'Veronica Weiner'),
('Quan Wen', 'George Whitesides'),
('Mandy Turner', 'Adam Zaidel'),
('Gil Costa', 'Eric DeWitt'),
('Nikos K. Logothetis', 'Michel Besserve'),
('Michael Graupner', 'Alex D. Reyes'),
('Patr\xc3\x8ccia Correia', 'Magor Lorincz'),
('I\xc3\x92igo Romero Arandia', 'Jan Drugowitsch'),
('Robert Froemke', 'Bryan Seybold'),
('Andre Mendonca', 'Zachary Mainen'),
('Badr Albanna', 'Michael DeWeese'),
('Nicole Rust', 'Luke Urban'),
('Christopher Pack', 'Daniel Butts'),
('Steve Gotts', 'Kyle Lepage'),
('Corinne Teeter', 'Victor Chan'),
('Pietro Berkes', 'Ralf Haefner'),
('Jessica Fox', 'Mark Frye'),
('Maryam Shanechi', 'Ziv Williams'),
('Eero Simoncelli', 'Corey Ziemba'),
('Laura Lewis', 'Emery Brown'),
('Edward Callaway', 'Alfred Kaye'),
('Stephen Ryu', 'Jonathan Kao'),
('Thomas Geib', 'Aaron Bornstein'),
('Andrew Leifer', 'Sway Chen'),
('Isaac Carruthers', 'Maria Geffen'),
('Randall OReilly', 'Srinimisha Morkonda'),
('Ritwik Niyogi', 'Kent Conover'),
('Philip Sabes', 'Helen Shen'),
('Stefano Panzeri', 'Nikos K. Logothetis'),
('Todd Coleman', 'Sanggyun Kim'),
('Christian Tetzlaff', 'Christoph Kolodziejski'),
('Maryam Shanechi', 'Marissa Powers'),
('Aravinthan Samuel', 'Dmitri Chklovskii'),
('Christopher Cueva', 'William Newsome'),
('Stephen Williams', 'Daniel Huber'),
('Vivek Jayaraman', 'Aljoscha Schulze'),
('Arvind Kumar', 'Ad Aertsen'),
('I\xc3\x92igo Romero Arandia', 'Alexandre Pouget'),
('Keijo Ruohonen', 'Jugoslava Acimovic'),
('Winrich Freiwald', 'Akinori Ebihara'),
('Paul Nuyujukian', 'Stephen Ryu'),
('Kenneth Harris', 'Matteo Carandini'),
('Petr Znamenskiy', 'Anthony Zador'),
('Gabriel Kreiman', 'Randall OReilly'),
('S.A. Billings', 'Uwe Friederich'),
('Dirk Walther', 'Bart Larsen'),
('Matthias Bethge', 'Alexander Ecker'),
('Anne Churchland', 'David Raposo'),
('Corey Ziemba', 'Tony Movshon'),
('Kristofer Bouchard', 'Keith Johnson'),
('Bilal Haider', 'Matteo Carandini'),
('Daniel Huber', 'Simon Peron'),
('Il Memming Park', 'Jonathan Pillow'),
('EJ Chichilnisky', 'Deborah Gunning'),
('Sway Chen', 'William Schafer'),
('Garrett Stanley', 'He Zheng'),
('Biljana Petreska', 'Stephen Ryu'),
('Emad Eskandar', 'Joseph Madsen'),
('Stephen Plaza', 'Arjun Bharioke'),
('Yaroslav Molkov', 'Natalia Shevtsova'),
('David Freedman', 'Warasinee Chaisangmongkon'),
('Nikos K. Logothetis', 'Stefano Panzeri'),
('Larry Abbott', 'Yosef Yarom'),
('Patrick Purdon', 'Emad Eskandar'),
('Daniel Polley', 'Michael Merzenich'),
('Emad Eskandar', 'Emery Brown'),
('Anya Skatova', 'Nathaniel Daw'),
('Frank W. Ohl', 'Christoph Kayser'),
('Eran Eldar', 'Yael Niv'),
('Leonard Maler', 'Andre Longtin'),
('Alfred Kaye', 'James H Marshel'),
('Maria Vicente', 'Zachary Mainen'),
('Nicholas Hatsopoulos', 'Matthew Bodenhamer'),
('Chris Fang-Yen', 'Quan Wen'),
('George Whitesides', 'Quan Wen'),
('John Flannery', 'Karl Deisseroth'),
('Peggy Series', 'Alain Marchand'),
('Jeff Pettibone', 'Robert Schmidt'),
('Sway Chen', 'Elizabeth Hulme'),
('Oren Forkosh', 'Elad Schneidman'),
('Leonard Maler', 'William Nesse'),
('Pieter Roelfsema', 'Jaldert Rombouts'),
('Zachary Mainen', 'Guillaume Dugu\xc3\x88'),
('He Zheng', 'Douglas Ollerenshaw'),
('Alexander Huth', 'An Vu'),
('Christoph Kayser', 'Stephanie Gleiss'),
('Bartlett Mel', 'Xundong Wu'),
('Bijan Pesaran', 'Nathaniel Daw'),
('Eric Reifenstein', 'Andreas V.M. Herz'),
('Marie McCulloch', 'Sidhartha Dongre'),
('Arjun Bharioke', 'Dmitri Chklovskii'),
('Gus Lott', 'Alex Gomez-Marin'),
('Dmitri Chklovskii', 'Zhiyuan Lu'),
('Marc Timme', 'Christoph Kirst'),
('Guillaume Hennequin', 'Tim P. Vogels'),
('Cristopher Niell', 'A. Moses Lee'),
('George Whitesides', 'Sway Chen'),
('Brett Vintch', 'Tony Movshon'),
('Stuart Layton', 'Joshua Siegle'),
('R Ebitz', 'Michael Platt'),
('Jeffrey Markowitz', 'Timothy Gardner'),
('Sander Bohte', 'Jaldert Rombouts'),
('Robert Froemke', 'Victor Chan'),
('Zachary Kilpatrick', 'Bard Ermentrout'),
('Jugoslava Acimovic', 'Marja-Leena Linne'),
('Jose Carmena', 'Aaron Koralek'),
('Chi-Hon Lee', 'Mikko Juusola'),
('Stephanie Gleiss', 'Nikos K. Logothetis'),
('Vani Rajendran', 'Eric Trautman'),
('Vladimir Itskov', 'Zachary Roth'),
('Lauren Jepson', 'Martin Greschner'),
('Larry Abbott', 'Baktash Babadi'),
('Michael Merzenich', 'Ana Raquel Martins'),
('Emery Brown', 'Rollin Hu'),
('Joseph Madsen', 'Randall OReilly'),
('Ning-long Xu', 'Mark Harnett'),
('Michael Schnabel', 'Dmitry Tsigankov'),
('Adam Kohn', 'Alexandre Pouget'),
('Laurence Aitchison', 'Mate Lengyel'),
('Benjamin Greenberg', 'John Gale'),
('Xundong Wu', 'DJ Strouse'),
('Stefano Panzeri', 'Michel Besserve'),
('Alan Litke', 'Peter Li'),
('Kate Jeffery', 'Aman Saleem'),
('John Gale', 'Emad Eskandar'),
('Josh McDermott', 'Eero Simoncelli'),
('Einat Granot-Atedgi', 'Elad Schneidman'),
('Matthias Kaschube', 'Dmitry Tsigankov'),
('Shinji Nishimoto', 'An Vu'),
('Sidhartha Dongre', 'Olivier List'),
('Jeffrey Seely', 'Matthew Kaufman'),
('Shaiyan Keshvari', 'Ronald Van Den Berg'),
('Aman Saleem', 'Kate Jeffery'),
('Trevor Wardill', 'Cahir O\xc3\xadKane'),
('EJ Chichilnisky', 'Keith Mathieson'),
('Alexander Huth', 'Tyler Lee'),
('Adam Kepecs', 'Junya Hirokawa'),
('Kendrick Kay', 'Jonathan Winawer'),
('Sergey Stavisky', 'Jonathan Kao'),
('Alex Kwan', 'Hiroki Taniguchi'),
('Randall OReilly', 'Gabriel Kreiman'),
('Jose-Manuel Alonso', 'Reza Lashgari'),
('Kristofer Bouchard', 'Nima Mesgarani'),
('Peter Shizgal', 'Rebecca Solomon'),
('Shaowen Bao', 'Michael DeWeese'),
('Thomas Clandinin', 'Saskia de Vries'),
('Emre Aksay', 'Sherika Sylvester'),
('James Tee', 'Laurence Maloney'),
('Itai Pinkoviezsky', 'Sandro Romani'),
('Fred Wolf', 'Dmitry Tsigankov'),
('William Schafer', 'Matthieu Wyart'),
('Yarden Cohen', 'Elad Schneidman'),
('Stephen Ryu', 'Paul Nuyujukian'),
('Eran Lottem', 'Zachary Mainen'),
('Irina Yonit Segal', 'Michael Gedalin'),
('Shiming Tang', 'Trevor Wardill'),
('Catherine Dulac', 'Yoram Ben-Shaul'),
('William Schafer', 'Elizabeth Hulme'),
('Michael Stryker', 'Cristopher Niell'),
('Timothy Gentner', 'Daniel Knudsen'),
('Richard Fetter', 'Lou Scheffer'),
('Chaohui Guo', 'Peter Bossaerts'),
('Hans Trukenbrod', 'Simon Barthelm\xc3\x88'),
('Tim P. Vogels', 'Friedemann Zenke'),
('Mikko Juusola', 'S.A. Billings'),
('Tuomo M\xe2\x80\xb0ki-Marttunen', 'Marja-Leena Linne'),
('Vahid Esmaeili', 'Mathew E. Diamond'),
('Sotiris Masmanidis', 'Hiroki Taniguchi'),
('Bryan Seybold', 'Christoph Schreiner'),
('Sotiris Masmanidis', 'Karl Deisseroth'),
('Andreas Schaefer', 'Mihaly Kollo'),
('Haim Sompolinsky', 'SueYeon Chung'),
('Vivienne Ming', 'Michael DeWeese'),
('Brett Vintch', 'Andrew Zaharia'),
('Itzhak Fried', 'Dario Ringach'),
('Jason Fleischer', 'Alexandar Kozarev'),
('Andrew Leifer', 'Marc Gershow'),
('Florian Gerard-Mercier', 'Matteo Carandini'),
('Misha Tsodyks', 'Ranulfo Romo'),
('Lyubov Ushakova', 'Simon Rumpel'),
('Keith Mathieson', 'Alan Litke'),
('Trevor Wardill', 'Chun-Yuan Ting'),
('Constantin Rothkopf', 'Paul Schrater'),
('Andreas Tolias', 'Stefano Panzeri'),
('Vivek Jayaraman', 'Parvez Ahammad'),
('Edward Boyden', 'Alex Kwan'),
('Nikos K. Logothetis', 'Vishal Kapoor'),
('Maria Geffen', 'Ryan Natan'),
('Tirin Moore', 'Brittany Burrows'),
('Sherika Sylvester', 'Mark Goldman'),
('George Whitesides', 'Matthieu Wyart'),
('Alexandre Pouget', 'Zachary Mainen'),
('Wolfgang Keil', 'Fred Wolf'),
('Wei Ji Ma', 'Shaiyan Keshvari'),
('Alex Kwan', 'Yang Dan'),
('Michael Stryker', 'Linda Wilbrecht'),
('Ayse Yarali', 'Andreas V.M. Herz'),
('Shaowen Bao', 'Heesoo Kim'),
('Shirin Hadizadeh', 'James M. Hyman'),
('Eric Trautman', 'Alex Gomez-Marin'),
('Odelia Schwartz', 'Ruben Coen-Cagli'),
('Edith Reshef', 'Patrick Cavanagh'),
('Hannah Bernstein', 'Ioana Carcea'),
('Chung-Chuan Lo', 'Yu-Chi Huang'),
('Marc Gershow', 'Elizabeth Hulme'),
('Alan Litke', 'Martin Greschner'),
('Nima Mesgarani', 'Miranda Babiak'),
('Natalya Zaika', 'Ana Raquel Martins'),
('Eric Denovellis', 'Timothy Buschman'),
('Veronica Weiner', 'Laura Lewis'),
('Emad Eskandar', 'Benjamin Greenberg'),
('Xiaofeng Li', 'Roger Hardie'),
('Antonello Bonci', 'Cristopher Niell'),
('Jeff Pobst', 'Ralf Wessel'),
('Mijung Park', 'Jonathan Pillow'),
('Ilya Rybak', 'Natalia Shevtsova'),
('Keith Mathieson', 'Deborah Gunning'),
('Eric Trautman', 'Aljoscha Schulze'),
('Jeffrey Smith', 'Natalia Shevtsova'),
('Chris Werner', 'Vivek Jayaraman'),
('Shin-ya Takemura', 'Shiv Vitaladevuni'),
('Emad Eskandar', 'Laura Lewis'),
('Leigh Hochberg', 'Laura Lewis'),
('Patr\xc3\x8ccia Correia', 'Guillaume Dugu\xc3\x88'),
('Bob Schafer', 'Tirin Moore'),
('Kexin Yuan', 'Bryan Seybold'),
('Martin Greschner', 'EJ Chichilnisky'),
('Ranulfo Romo', 'Larry Abbott'),
('Shaiyan Keshvari', 'Wei Ji Ma'),
('Srinimisha Morkonda', 'Randall OReilly'),
('Jakob Foerster', 'Arseny Finkelstein'),
('Ning Qian', 'Zhai Fangwen'),
('Siyu Zhang', 'Edward Boyden'),
('John Flannery', 'Yang Dan'),
('Lin Tian', 'Simon Peron'),
('Daniel Kaping', 'Thilo Womelsdorf'),
('Claudia Clopath', 'Henning Sprekeler'),
('Guillaume Dugu\xc3\x88', 'Magor Lorincz'),
('Ian Nauhaus', 'Edward Callaway'),
('Siyu Zhang', 'John Flannery'),
('Marja-Leena Linne', 'Tuomo M\xe2\x80\xb0ki-Marttunen'),
('Andreas Tolias', 'Nikos K. Logothetis'),
('Jeffrey Smith', 'Yaroslav Molkov'),
('Sydney Cash', 'Emad Eskandar'),
('Parvez Ahammad', 'Aljoscha Schulze'),
('Ingo Fr\xc2\xb8nd', 'Felix Wichmann'),
('Jelena Platisa', 'Eugenio Culurciello'),
('Eric Shea-Brown', 'Julijana Gjorgjieva'),
('Vladimir Itskov', 'Carina Curto'),
('Natalia Shevtsova', 'Ilya Rybak'),
('Cynthia A Chestek', 'Krishna Shenoy'),
('Jianzhong Jin', 'Qi Wang'),
('Kanaka Rajan', 'William Bialek'),
('Shinji Nishimoto', 'Tyler Lee'),
('Juan Florez Weidinger', 'Michael Schnabel'),
('Baktash Babadi', 'Larry Abbott'),
('Chunyu Duan', 'Jeffrey Erlich'),
('Lawrence Sincich', 'Jeffrey Fitzgerald'),
('Ziv Rotman', 'Vitaly Klyachko'),
('Wayne Greg', 'Larry Abbott'),
('Andrew Lees', 'Nicholas Furl'),
('Vahid Esmaeili', 'Arash Fassihi'),
('Matthias Bethge', 'Andreas Tolias'),
('Peggy Series', 'Francoise Dellu-Hagedorn'),
('Krishna Shenoy', 'John Cunningham'),
('Simon Peron', 'Daniel Huber'),
('Mattia Rigotti', 'Nathaniel Daw'),
('Katherine Ames', 'Krishna Shenoy'),
('Valerio Mante', 'William Newsome'),
('Catalin Rusu', 'Ulf Ziemann'),
('Michele Insanally', 'Hania Kover'),
('Seung-Hee Lee', 'Hiroki Taniguchi'),
('Hiromu Tanimoto', 'Johannes Nehrkorn'),
('Shiming Tang', 'Sidhartha Dongre'),
('He Huang', 'Walter Talbott'),
('Christoph Kirst', 'Felix Felmy'),
('Jeff Gavornik', 'Mark Bear'),
('David Sussillo', 'Krishna Shenoy'),
('Damon Chandler', 'Kedarnath Vilankar'),
('Cahir O\xc3\xadKane', 'Sidhartha Dongre'),
('Ahmad Osman', 'Eugenio Culurciello'),
('Antonello Bonci', 'A. Moses Lee'),
('Joseph Madsen', 'Veronica Weiner'),
('Chun-Yuan Ting', 'Mikko Juusola'),
('Shiv Vitaladevuni', 'Lou Scheffer'),
('Loren Frank', 'Shantanu Jadhav'),
('Marc Gershow', 'Aravinthan Samuel'),
('Hang Zhang', 'James Tee'),
('Jakob Voigts', 'Caleb Kemere'),
('Andreas Schaefer', 'Fukunaga Izumi'),
('Sidhartha Dongre', 'Trevor Wardill'),
('Aldo Faisal', 'Ali Neishabouri'),
('Ritwik Niyogi', 'Rebecca Solomon'),
('Elizabeth Hulme', 'Matthieu Wyart'),
('Carlotta Martelli', 'John R Carlson'),
('Hiroki Taniguchi', 'Josh Huang'),
('Peter Li', 'EJ Chichilnisky'),
('Alla Karpova', 'Kristin Branson'),
('Shaun Patel', 'Jason Gerrard'),
('Wulfram Gerstner', 'Tim P. Vogels'),
('Bartlett Mel', 'Bardia Behabadi'),
('Sway Chen', 'Marc Gershow'),
('Christoph Kolodziejski', 'Christian Tetzlaff'),
('Thilo Womelsdorf', 'Daniel Kaping'),
('Michael DeWeese', 'Nicole Carlson'),
('Aravinthan Samuel', 'Chris Fang-Yen'),
('Michael Merzenich', 'Bryan Seybold'),
('Shiv Vitaladevuni', 'Dmitri Chklovskii'),
('Alexander Huth', 'Jack Gallant'),
('Zhiyuan Lu', 'Lou Scheffer'),
('Michael J Frank', 'Thomas Wiecki'),
('Elad Schneidman', 'Yarden Cohen'),
('Natalya Zaika', 'Michael Merzenich'),
('Magor Lorincz', 'Eran Lottem'),
('Misha Tsodyks', 'Larry Abbott'),
('Mathew E. Diamond', 'Athena Akrami'),
('Eric Trautman', 'Vivek Jayaraman'),
('Michael Merzenich', 'Kexin Yuan'),
('Matthew Golub', 'Byron Yu'),
('Peter Dayan', 'Yannick-Andre Breton'),
('Pat Shoemaker', 'Jacob Aptekar'),
('Emad Eskandar', 'Sameer Sheth'),
('Matthew Koh', 'Dinu Albeanu'),
('Fanis Panagiotaropoulos', 'Britni Crocker'),
('Matthew Kaufman', 'Stephen Ryu'),
('Yi-Hsuan Lee', 'Yen-Nan Lin'),
('Marc Gershow', 'Chris Fang-Yen'),
('Ioana Carcea', 'Christoph Schreiner'),
('Kevin Lin', 'Eric Shea-Brown'),
('Jianzhong Jin', 'Jose-Manuel Alonso'),
('Antonello Bonci', 'Michael Stryker'),
('Dmitri Chklovskii', 'Shin-ya Takemura'),
('William Schafer', 'Andrew Leifer'),
('Ilya Rybak', 'Patrick Jasinski'),
('Arseny Finkelstein', 'Jakob Foerster'),
('Emad Eskandar', 'John Gale'),
('Sameer Sheth', 'Shaun Patel'),
('Grigorios Sotiropoulos', 'Peggy Series'),
('Jianzhong Jin', 'Garrett Stanley'),
('Richard Naud', 'Wulfram Gerstner'),
('Victoria Butler', 'Marc Gershow'),
('Bob Schafer', 'Alireza Soltani'),
('Bilal Bari', 'Garrett Stanley'),
('Lin Tian', 'Daniel Huber'),
('Robert Rosenbaum', 'Brent Doiron'),
('Joshua Siegle', 'Loren Frank'),
('Ning-long Xu', 'Karel Svoboda'),
('Jonathan Pillow', 'Evan Archer'),
('Daniel Polley', 'Alison Barker'),
('Andrew Lees', 'Bruno Averbeck'),
('Carlos Brody', 'Bingni Brunton'),
('Eugenio Culurciello', 'Joon Hyuk Park'),
('Mate Lengyel', 'Peter Dayan'),
('Vasileios Christopoulos', 'Paul Schrater'),
('Jianzhong Jin', 'Reza Lashgari'),
('Alan Litke', 'EJ Chichilnisky'),
('Jonathan Kao', 'Sergey Stavisky'),
('Abtine Tavassoli', 'Dario Ringach'),
('Andreas Schaefer', 'Manuel Berning'),
('Aldo Faisal', 'Feryal Mehraban Pour Behbahani'),
('Felix Wichmann', 'Ingo Fr\xc2\xb8nd'),
('Hongsup Shin', 'Ronald Van Den Berg'),
('Jenia Jitsev', 'Abigail Morrison'),
('Amy Peng', 'Ziv Rotman'),
('Garrett Stanley', 'Jianzhong Jin'),
('Laura Lewis', 'Joseph Madsen'),
('Chris Werner', 'Gus Lott'),
('James DiCarlo', 'Najib Majaj'),
('Calin Buia', 'Joseph Madsen'),
('Ioana Carcea', 'Bryan Seybold'),
('Michael Black', 'Sean Kelly'),
('Jeremy K. Seamans', 'Stan Floresco'),
('Robert Desimone', 'Kyle Lepage'),
('Vincent Pieribone', 'Eugenio Culurciello'),
('Kate Jeffery', 'Kenneth Harris'),
('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 [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: