forked from pnicompneurojc/pnicompneurojc.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1970 lines (1747 loc) · 68.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8" />
<title>Computational Neuroscience Journal Club at Princeton
</title>
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="stylesheet" type="text/css" media="all" href="twentytenstyle.css" />
<link rel='canonical' href='https://pnicompneurojc.github.io' />
<link rel='shortlink' href='http://pnicompneurojc.github.io' />
<style type="text/css" id="custom-theme-css">/* LAYOUT: One column, no sidebar
DESCRIPTION: One centered column with no sidebar */
.one-column #content { margin: 0px 0px 0px 0px; width: 900px; }
/* LAYOUT: Full width, no sidebar DESCRIPTION: Full width content with
no sidebar; used for attachment pages */
.single-attachment #content { margin: 0px 0px 0px -110px; width:
900px; }
#content table { }
#site-generator { display: none; }
</style>
</head>
<body class="home page page-id-10 page-template page-template-onecolumn-page page-template-onecolumn-page-php">
<div id="wrapper" class="hfeed">
<div id="header">
<div id="masthead">
<div id="branding" role="banner">
<h1 id="site-title">
<span>
<a href="http://pnicompneurojc.github.io"
title="Computational Neuroscience Journal Club at Princeton"
rel="home">Computational Neuroscience Journal Club at Princeton
</a>
</span>
</h1>
<div id="site-description">
</div>
<!--
<div id="access" role="navigation">
<div class="skip-link screen-reader-text">
<a href="#content" title="Skip to content">Skip to content </a>
</div>
<div class="menu-header">
<ul id="menu-main_menu" class="menu">
<li id="menu-item-13"
class="menu-item
menu-item-type-post_type
menu-item-object-page
current-menu-item
page_item
page-item-10
current_page_item
menu-item-13">
<a href="http://pnicompneurojc.github.io">Home</a>
</li>
<li id="menu-item-25" class="menu-item menu-item-type-post_type
menu-item-object-page
menu-item-25">
<a href="suggestedpapers.html">Suggested papers</a>
</li>
</ul>
</div>
</div>
-->
<!-- #access -->
</div>
<!-- #masthead -->
</div>
<!-- #header -->
<img src="./logo.png" height="100" width="644" alt="">
<div id="main">
<div id="container" class="one-column">
<div id="content" role="main">
<div id="post-10" class="post-10 page type-page status-publish hentry">
<div class="entry-content">
<p>We read and discuss the latest papers in computational neuroscience. The hope is to generate new ideas, foster new collaborations, and keep up-to-date with the literature.
<br><br>
For the spring 2021 semester, we will have four themes (3 weeks per theme). All meetings will be virtual (not recorded). The papers for each theme have been pre-selected
to match PNI's interests. The papers reflect authors from a diverse set of backgrounds and from outside of PNI in order to encourage a breadth of perspective.
<br><br>
We encourage participants to spend at least 20 minutes with each paper before coming to club.</p>
<h2 class="entry-title">Join </h2>
<div class="entry-content">
<p>If you’d like to be added to the email list, visit our <A HREF="https://groups.google.com/forum/#!forum/compneurojc" target="_blank">google group</A>, or contact Ben (bcowley [at] princeton.edu) or Iris (istone [at] princeton.edu). If you'd like to present, please also contact Ben and Iris.</p>
<h2 class="entry-title">Presentation tips </h2>
<div class="entry-content">
<p>Let’s make our journal club the envy of PNI! Please read the paper before choosing, plan for 35 minutes of presenting (expect plenty of questions!), and follow these tips: <A HREF="./papers/presentation_checklist.pdf" target="_blank">presentation_checklist.pdf</A> <br><br> </p>
<h2> <b>Current Meetings (Spring 2021)</b> </h2>
<h4> <b>Special club for PNI Recruitment</b> </h4>
<table>
<tbody>
<tr class="alt">
<th style="width: 12%;">Date </th>
<th style="width: 8%;">Time </th>
<th style="width: 20%;">Presenter </th>
<th style="width: 60%;">Reading </th>
<th style="width: 12%;">Zoom </th>
</tr>
<!-- end of table header-->
<!-- -------------------------------- -->
<tr>
<td> Feb 19 </td>
<td> 11:30am-12:30pm </td>
<td> David Zoltowski </td>
<td> <a href="./papers/Peixoto 2021.pdf" target="_blank">Decoding and perturbing decision states in real time. </a>
<br> Peixoto, Verhein, Kiani, ..., Ryu, Shenoy, Newsome (<i>Nature</i> 2021)
</td>
<td> <a href="https://princeton.zoom.us/j/96414281688" target="_blank">Link</a> </td>
</tbody>
</table>
<hrule>
<h4> <b>Theme 1: Understanding multi-area interactions</b> </h4>
<table>
<tbody>
<tr class="alt">
<th style="width: 12%;">Date </th>
<th style="width: 12%;">Time </th>
<th style="width: 17%;">Presenter </th>
<th style="width: 60%;">Reading </th>
<th style="width: 5%;">Zoom </th>
</tr>
<!-- end of table header-->
<!-- -------------------------------- -->
<tr>
<td> Mar 3 </td>
<td> 3-4pm </td> <!-- time -->
<td> Ben Cowley </td>
<td> <a href="./papers/Kohn 2020.pdf" target="_blank">Principles of Corticocortical Communication: Proposed Schemes and Design Considerations.</a><br> Kohn, Jasper, Semedo, Gokcen, Machens, Yu (<i>Trends in Neuro</i> 2020)
<br>
<a href="./papers/Semedo 2020.pdf" target="_blank">Statistical methods for dissecting interactions between brain areas.</a>
<br> Semedo, Gokcen, Machens, Kohn, Yu (<i>Current Op in Neuro</i> 2020)
</td>
<td> <a href="https://princeton.zoom.us/j/97103288846" target="_blank">Link</a> </td>
<!-- -------------------------------- -->
<tr>
<td> Mar 10 </td>
<td> 3-4pm </td> <!-- time -->
<td> Rich Pang </td> <!-- presenter -->
<td> <a href="./papers/Perich 2020.pdf" target="_blank">Inferring brain-wide interactions using data-constrained recurrent neural network models. </a>
<br> Perich, Arlt, Soares, ..., Rudebeck, Harvey, Rajan (<i>bioRxiv</i> 2020)
</td>
<td> <a href="https://princeton.zoom.us/j/99186462029" target="_blank">Link</a></td>
<!-- -------------------------------- -->
<tr>
<td> Mar 17 </td>
<td> 3-4pm </td> <!-- time -->
<td> Orren Karniol-Tambour </td> <!-- presenter -->
<td> <a href="./papers/Hultman 2018.pdf" target="_blank">Brain-wide electrical spatiotemporal dynamics encode depression vulnerability.</a>
<br> Hultman, Ulrich, Sachs, ..., Nestler, Carin, Dzirasa (<i>Cell</i> 2018)
</td>
<td> ??? </td>
</tbody>
</table>
<hrule>
<h4> <b>Theme 2: Neuroethology: Understanding computation through behavior</b> </h4>
<table>
<tbody>
<tr class="alt">
<th style="width: 12%;">Date </th>
<th style="width: 8%;">Time </th>
<th style="width: 20%;">Presenter </th>
<th style="width: 60%;">Reading </th>
<th style="width: 12%;">Zoom </th>
</tr>
<!-- end of table header-->
<!-- -------------------------------- -->
<tr>
<td> Apr 7 </td>
<td> ??? </td> <!-- time -->
<td> Jess Breda </td> <!-- presenter -->
<td> <a href="./papers/Datta 2019.pdf" target="_blank">Computational neuroethology: a call to action.</a>
<br>Datta, Anderson, Branson, Perona, Leifer (<i>Neuron</i> 2019)
</td>
<td> ??? </td>
<!-- -------------------------------- -->
<tr>
<td> Apr 14 </td>
<td> ??? </td> <!-- time -->
<td> Jorge Yanar </td> <!-- presenter -->
<td> <a href="./papers/Marshall 2020.pdf" target="_blank">Continuous Whole-Body 3D Kinematic recordings across the rodent behavioral repertoire.</a>
<br> Marshall, Aldarondo, Dunn, Wang, Berman, Olveczky (<i>Neuron</i> 2020)
</td>
<td> ??? </td>
<!-- -------------------------------- -->
<tr>
<td> Apr 21 </td>
<td> ??? </td> <!-- time -->
<td> Iris Stone </td> <!-- presenter -->
<td> <a href="./papers/Padilla-Coreano 2020.pdf" target="_blank">A cortical-hypothalamic circuit decodes social rank and promotes dominance behavior.</a>
<br> Padilla-Coreano, Batra, Patarino, ..., Fiete, Lu, Tye (<i>ResearchSquare</i> 2020)
<br>
<a href="./papers/Chen 2020.pdf" target="_blank">AlphaTracker: A multi-animal tracking and behavioral analysis
tool. </a><br> Chen, Zhang, Zhang, ..., Tye, Lu (<i>bioRxiv</i> 2020)
</td>
<td> ??? </td>
</tbody>
</table>
<hrule>
<h4> <b>Theme 3: The curious computations of dopamine</b> </h4>
<table>
<tbody>
<tr class="alt">
<th style="width: 12%;">Date </th>
<th style="width: 8%;">Time </th>
<th style="width: 20%;">Presenter </th>
<th style="width: 60%;">Reading </th>
<th style="width: 12%;">Zoom </th>
</tr>
<!-- end of table header-->
<!-- -------------------------------- -->
<tr>
<td> May 5 </td>
<td> ??? </td> <!-- time -->
<td> Sreejan Kumar </td> <!-- presenter -->
<td> <a href="./papers/Watabe-Uchida 2017.pdf" target="_blank">Neural circuitry of reward prediction error.</a>
<br> Watabe-Uchida, Eshel, Uchida (<i>Ann. Review of Neuro.</i> 2017)
</td>
<td> ??? </td>
<!-- -------------------------------- -->
<tr>
<td> May 12 </td>
<td> ??? </td> <!-- time -->
<td> Rachel Lee </td> <!-- presenter -->
<td> <a href="./papers/Athalye 2018.pdf" target="_blank">Evidence for a neural law of effect.</a>
<br> Athalye, Santos, Carmena, Costa (<i>Science</i> 2018)
</td>
<td> ??? </td>
<!-- -------------------------------- -->
<tr>
<td> May 19 </td>
<td> ??? </td> <!-- time -->
<td> Yoel Sanchez Araujo </td> <!-- presenter -->
<td> <a href="./papers/Vander Weele 2018.pdf" target="_blank">Dopamine enhances signal-to-noise ratio in cortical-brainstem encoding of aversive stimuli.</a>
<br> Vander Weele, Siciliano, Gillian, ..., Wichmann, Wildes, Tye (<i>Nature</i> 2018)
</td>
<td> ??? </td>
</tbody>
</table>
<hrule>
<h4> <b>Theme 4: Recording from more neurons than we know what to do with</b> </h4>
<table>
<tbody>
<tr class="alt">
<th style="width: 13%;">Date </th>
<th style="width: 8%;">Time </th>
<th style="width: 20%;">Presenter </th>
<th style="width: 60%;">Reading </th>
<th style="width: 12%;">Zoom </th>
</tr>
<!-- end of table header-->
<!-- -------------------------------- -->
<tr>
<td> June 9 </td>
<td> ??? </td> <!-- time -->
<td> Aditi Jha </td> <!-- presenter -->
<td> <a href="./papers/Saxena 2019.pdf" target="_blank">Towards the neural population doctrine.</a>
<br> Saxena and Cunningham (<i>Current Opinion in Neuro.</i> 2019)
</td>
<td> ??? </td>
<!-- -------------------------------- -->
<tr>
<td> June 16 </td>
<td> ??? </td> <!-- time -->
<td> ??? </td> <!-- presenter -->
<td> <a href="./papers/de Vries 2020.pdf" target="_blank"> A large-scale standardized physiological survey reveals functional organization of the mouse visual cortex.</a>
<br> de Vries, Lecoq, Buice, ..., Phillips, Reid, Koch (<i>Nat Neuro</i> 2020)
</td>
<td> ??? </td>
<!-- -------------------------------- -->
<tr>
<td> June 23 </td>
<td> ??? </td> <!-- time -->
<td> Eleni Papadoyannis </td> <!-- presenter -->
<td> <a href="./papers/Steinmetz 2019.pdf" target="_blank">Distributed coding of choice, action and engagement across the mouse brain.</a>
<br> Steinmetz, Zatka-Haas, Carandini, Harris (<i>Nature</i> 2019)
</td>
<td> ??? </td>
</tbody>
</table>
<br>
<hr>
<br>
<!-- ========================================================================= -->
<!-- ========================================================================= -->
<h4> <b>Past Meetings (Fall 2020)</b> </h4>
<table>
<tbody>
<tr class="alt">
<th style="width: 12%;">Date </th>
<th style="width: 12%;">Time/Room </th>
<th style="width: 25%;">Presenter </th>
<th style="width: 55%;">Reading </th>
</tr>
<p>
<!-- end of table header-->
</p>
<!-- -------------------------------- -->
<tr>
<td> Jan 30 </td>
<td> 4-5pm, PNI 230 </td>
<td> David Zoltowski </td>
<td>
<a href="./papers/Zhao 2019.pdf" target="_blank">Stimulus-choice (mis)alignment in primate MT cortex.</a><br> Zhao, Yates, Levi, Huk, Park (<i>bioRxiv</i> 2019)
</td>
<!-- -------------------------------- -->
<tr>
<td> Feb 6 </td>
<td> 3-4pm, PNI 130 </td>
<td> Zoë Ashwood </td>
<td>
<a href="./papers/Findling 2019.pdf" target="_blank">Computational noise in reward-guided learning drives behavioral variability in volatile environments.</a><br> Findling, Skvortsova, Dromnelle, Palminteri, Wyart. (<i>Nat Neuro</i> 2019)
</td>
<!-- -------------------------------- -->
<tr>
<td> Feb 13 </td>
<td> 3-4pm, PNI 130 </td>
<td> Daniel Greenidge </td>
<td>
<a href="./papers/Elsayed 2017.pdf" target="_blank">Structure in neural population recordings: an expected byproduct of simpler phenomena?</a><br> Elsayed and Cunningham. (<i>Nat Neuro</i> 2017)
</td>
<!-- -------------------------------- -->
<tr>
<td> Feb 20 </td>
<td> 11am-12pm, Psych 404</td>
<td> Brian DePasquale </td>
<td>
<a href="./papers/Pollock 2019.pdf" target="_blank">Engineering recurrent neural networks from task-relevant manifolds and dynamics.</a><br> Pollock and Jazayeri. (<i>bioRxiv</i> 2019)
</td>
<!-- -------------------------------- -->
<tr>
<td> Feb 27 </td>
<td> </td>
<td> No club -- COSYNE </td>
<td> </td>
<!-- -------------------------------- -->
<tr>
<td> Mar 5 </td>
<td> </td>
<td> No club -- Unfilled slot </td>
<td> </td>
<!-- -------------------------------- -->
<tr>
<td> Mar 12 </td>
<td> Virtual </td>
<td> Lindsay Willmore </td>
<td>
<a href="./papers/Merel 2019.pdf" target="_blank">Deep neuroethology of a virtual rodent.</a><br> Merel, Aldarondo, Marshall, Tassa, Wayne, Olveczky. (<i>arXiv</i> 2019)
</td>
<!-- -------------------------------- -->
<!-- -------------------------------- -->
<!-- end of table-->
</tbody>
</table>
<br>
<hrule>
<br>
<!-- ========================================================================= -->
<!-- ========================================================================= -->
<h4> <b>Past Meetings (Fall 2019)</b> </h4>
<table>
<tbody>
<tr class="alt">
<th style="width: 12%;">Date </th>
<th style="width: 25%;">Presenter </th>
<th style="width: 55%;">Reading </th>
</tr>
<p>
<!-- end of table header-->
</p>
<tr>
<td> Oct 24 </td>
<td> Ben Cowley </td>
<td>
<a href="./papers/Stringer 2019b.pdf" target="_blank">High-dimensional geometry of population responses in visual cortex.</a><br> Stringer, Pachitariu, Steinmetz, Carandini, Harris. (<i>Nature</i> 2019)
</td>
<!-- -------------------------------- -->
<tr>
<td> Oct 31 </td>
<td> (not meeting) </td>
<td>
<a href="./papers/Fox 1975.pdf" target="_blank">A spooky paper</a><br> Fox (<i>Ann. Reviews</i> 1975)
</td>
<!-- -------------------------------- -->
<tr>
<td> Nov 7 </td>
<td> Ben Cowley </td>
<td>
<a href="./papers/figure_checklist.pdf" target="_blank">What makes a good scientific figure?</a><br>
</td>
<!-- -------------------------------- -->
<tr>
<td> Nov 14 </td>
<td> Matt Creamer </td>
<td>
<a href="./papers/Linderman 2019.pdf" target="_blank">Hierarchical recurrent state space models reveal discrete and continuous dynamics of neural activity in <i>C. elegans</i></a><br> Linderman, Nichols, Blei, Zimmer, Paninski. (<i>bioRxiv</i> 2019)
</td>
<!-- -------------------------------- -->
<tr>
<td> Nov 21 </td>
<td> Sean Bittner (visitor) </td>
<td>
<a href="./papers/Bittner 2019.pdf" target="_blank">Interrogating theoretical models of neural computation with deep inference</a><br>Bittner, Agostina Palmigiano, Piet, Duan, Brody, Miller, Cunningham. (<i>bioRxiv</i>, 2019)
</td>
<!-- -------------------------------- -->
<tr>
<td> Dec 5 </td>
<td> Matt Panichello </td>
<td>
<a href="./papers/Sohn 2019.pdf" target="_blank">Bayesian computation through cortical latent dynamics</a><br> Sohn, Narain, Meirhaeghe, Jazayeri (<i>Neuron</i> 2019)
</td>
<!-- -------------------------------- -->
<tr>
<td> Dec 12 </td>
<td> No journal club (PNI holiday party) </td>
<td>
</td>
<!-- -------------------------------- -->
<tr>
<td> Dec 19 </td>
<td> Kevin Chen </td>
<td>
<a href="./papers/Brennan 2019.pdf" target="_blank">A quantitative model of conserved macroscopic dynamics predicts future motor commands</a><br> Brennan, Proekt. (<i>eLife</i>, 2019)
</td>
<!-- -------------------------------- -->
<!-- -------------------------------- -->
<!-- end of table-->
</tbody>
</table>
<br>
<hrule>
<br>
<h4> <b>Past Meetings (Spring 2019)</b> </h4>
<table>
<tbody>
<tr class="alt">
<th style="width: 12%;">Date </th>
<th style="width: 25%;">Presenter </th>
<th style="width: 55%;">Reading </th>
</tr>
<p>
<!-- end of table header-->
</p>
<tr>
<td> Jan 17 </td>
<td> David Zoltowski </td>
<td>
<a href="https://www.biorxiv.org/content/early/2018/11/20/474437">Distributed correlates of visually-guided behavior across the mouse brain
</a><br> Steinmetz et al. (2018)
</td>
<!-- -------------------------------- -->
<tr>
<td> Feb 5 </td>
<td> Brian Depasquale </td>
<td>
<a href="https://www.biorxiv.org/content/10.1101/516021v1">The population dynamics of a canonical cognitive circuit</a><br>Chaudhuri et al. (2019)
</td>
<!-- -------------------------------- -->
<tr>
<td> Feb 12 </td>
<td> Robert Yang </td>
<td>
<a href="https://www.nature.com/articles/s41593-018-0310-2">Task representations in neural networks trained to perform many cognitive tasks</a><br>Yang et al. (2019)
</td>
<!-- -------------------------------- -->
<tr>
<td> Feb 22nd, 11AM </td>
<td> Nick Roy </td>
<td>
<a href="https://www.nature.com/articles/s41593-018-0314-y">A diverse range of factors affect the nature of neural representations underlying short-term memory</a><br>Orhan and Ma. (2019)
</td>
<!-- -------------------------------- -->
<tr>
<td> Feb 26 </td>
<td> No Meeting </td>
<td>
COSYNE
</td>
<!-- -------------------------------- -->
<tr>
<td> Mar 5 </td>
<td> No Meeting </td>
<td>
COSYNE
</td>
<!-- -------------------------------- -->
<tr>
<td> Mar 12 </td>
<td> Zoe Ashwood </td>
<td>
<a href="https://www.cell.com/neuron/fulltext/S0896-6273(18)30543-9">Linking Connectivity, Dynamics, and Computations in Low-Rank Recurrent Neural Networks</a><br>Mastrogiuseppe and Ostojic. (2018)
</td>
<!-- -------------------------------- -->
<tr>
<td> Mar 19 </td>
<td> Manuel Schottdorf </td>
<td>
<a href="https://journals.aps.org/prx/abstract/10.1103/PhysRevX.8.031003">Classification and Geometry of General Perceptual Manifolds</a><br>Chung et al. (2018)
</td>
<!-- -------------------------------- -->
<tr>
<td> Mar 26 </td>
<td> Anqi Wu </td>
<td>
<a href="https://www.biorxiv.org/content/10.1101/540195v1">Revealing neural correlates of behavior without behavioral measurements</a><br>Rubin et al. (2019)
</td>
<!-- -------------------------------- -->
<tr>
<td> Apr 2 </td>
<td> Kevin Chen </td>
<td>
<a href="https://www.sciencedirect.com/science/article/pii/S0896627318303258">The Dynamical Regime of Sensory Cortex: Stable Dynamics around a Single Stimulus-Tuned Attractor Account for Patterns of Noise Variability</a><br>Hennequin et al. (2018)
</td>
<!-- -------------------------------- -->
<tr>
<td> Apr 9 </td>
<td> Diksha Gupta </td>
<td>
<a href="https://elifesciences.org/articles/32055">Adaptive coding for dynamic sensory inference</a><br>Mlyarski and Hermundstad (2018)
</td>
<!-- -------------------------------- -->
<tr>
<td> Apr 16 </td>
<td> Ben Cowley </td>
<td>
<a href="https://www.sciencedirect.com/science/article/pii/S0896627319301102">Reversible Inactivation of Different Millimeter-Scale Regions of Primate IT Results in Different Patterns of Core Object Recognition Deficits</a><br>Rajalingman and DiCarlo (2019)
</td>
<!-- -------------------------------- -->
<tr>
<td> Apr 23 </td>
<td> Lindsay Willmore </td>
<td>
<a href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC2674525/">Memory without Feedback in a Neural Network</a><br>Mark Goldman (2009)
</td>
<!-- -------------------------------- -->
<tr>
<td> Apr 30 </td>
<td> Tyler Boyd-Meredith </td>
<td>
<a href="https://www.cell.com/neuron/fulltext/S0896-6273(17)30185-X">Computing by Robust Transience: How the Fronto-Parietal Network Performs Sequential, Category-Based Decision</a><br>Chaisangmongkon et al. (2017)
</td>
<!-- -------------------------------- -->
<tr>
<td> May 21 </td>
<td> Adam Calhoun and Ben Cowley </td>
<td>
<a href="https://science.sciencemag.org/content/364/6439/eaav9436.full">Evolving Images for Visual Neurons Using a Deep Generative Network Reveals Coding Principles and Neuronal Preferences</a><br>Ponce et al. (2019), Bashivan et al. 2019
</td>
</td>
<!-- -------------------------------- -->
<!-- end of table-->
</tbody>
</table>
<br>
<hrule>
<br>
<h4> <b>Past Meetings (Fall 2018)</b> </h4>
<table>
<tbody>
<tr class="alt">
<th style="width: 12%;">Date </th>
<th style="width: 25%;">Presenter </th>
<th style="width: 55%;">Reading </th>
</tr>
<p>
<!-- end of table header-->
</p>
<tr>
<td> Oct 25th, 3PM </td>
<td> Jonathan Pillow </td>
<td>
<a href="http://science.sciencemag.org/content/360/6389/652">Efficient coding explains the universal law of generalization in human perception
</a><br> Chris R. Sims (2018)
</td>
<!-- -------------------------------- -->
<tr>
<td> Nov 1st </td>
<td> Anqi Wu </td>
<td>
<a href="https://www.nature.com/articles/s41467-018-04723-6">Uncovering hidden brain state dynamics that regulate performance and decision-making during cognition
</a><br> Taghia et al. (2018)
</td>
<!-- -------------------------------- -->
<tr>
<td> Nov 8th </td>
<td> </td>
<td>
No Meeting, SFN
</td>
<tr>
<td> Nov 15th </td>
<td> Manuel Schottdorf </td>
<td>
<a href="https://www.nature.com/articles/s41593-018-0247-5">Distributed network interactions and their emergence in developing neocortex
</a><br> Smith et al. (2018)
</td>
<tr>
<td> Nov 22nd </td>
<td> </td>
<td>
No Meeting, Thanksgiving
</td>
<tr>
<td> Nov 29th </td>
<td> Sue Ann Koay </td>
<td>
<a href="https://journals.plos.org/ploscompbiol/article?id=10.1371/journal.pcbi.1005056">Shaping Neural Circuits by High Order Synaptic Interactions
</a><br> Tannenbaum et al. (2018)
</td>
<tr>
<td> Dec 6th </td>
<td> </td>
<td>
No Meeting, NIPS
</td>
<!-- -------------------------------- -->
<!-- end of table-->
</tbody>
</table>
<br>
<hrule>
<br>
<!-- ========================================================================= -->
<!-- ========================================================================= -->
<h4> <b>Past Meetings (Spring 2018)</b> </h4>
<table>
<tbody>
<tr class="alt">
<th style="width: 12%;">Date </th>
<th style="width: 25%;">Presenter </th>
<th style="width: 55%;">Reading </th>
</tr>
<p>
<!-- end of table header-->
</p>
<tr>
<td> Jan 16 </td>
<td> Thomas Luo </td>
<td>
<a href="https://www.nature.com/articles/s41593-017-0003-2">Mixed selectivity morphs population codes in prefrontal cortex</a><br> Parthasarathy et al. (2017)
</td>
<!-- -------------------------------- -->
<tr>
<td> Jan 23 </td>
<td> Ashok Litwin-Kumar </td>
<td>
<a href="http://www.sciencedirect.com/science/article/pii/S0896627317300545">Optimal degrees of synaptic connectivity</a><br> Litwin-Kumar et al. (2017)
</td>
<!-- -------------------------------- -->
<tr>
<td> Jan 30 </td>
<td> David Zoltowski </td>
<td>
<a href="http://www.cell.com/neuron/fulltext/S0896-6273(17)31134-0">A Switching Observer for Human Perceptual Estimation</a><br> Laquitaine & Gardner (2017)
</td>
<!-- -------------------------------- -->
<tr>
<td> Feb 7 </td>
<td> Jonathan Pillow </td>
<td>
<a href="http://www.pnas.org/content/115/1/186.short">Unified theory of efficient, predictive, and sparse coding</a><br> Chalk et al. (2017)
</td>
<!-- -------------------------------- -->
<tr>
<td> Feb 14 </td>
<td> Stephen Keeley </td>
<td>
<a href="https://papers.nips.cc/paper/6944-eigen-distortions-of-hierarchical-representations">Eigen-Distortions of Hierarchical Representations</a><br> Berardino et al. (2017)
</td>
<!-- -------------------------------- -->
<tr>
<td> Feb 23 (Fri, 11AM in room 130!) </td>
<td> Adrian Bondy </td>
<td>
<a href="https://www.sciencedirect.com/science/article/pii/S0896627316300113?via%3Dihub">Perceptual decision-making as probabilistic inference by neural sampling.</a><br> Haefner, Berkes, & Fiser. (2016)
</td>
<!-- -------------------------------- -->
<tr>
<td> Feb 28 </td>
<td> Diksha Gupta </td>
<td>
<a href="https://elifesciences.org/articles/12454">Optimal compensation for neuron loss</a><br> Barrett, Deneve and Machens (2016)
</td>
<tr>
<td> Mar 7 </td>
<td> NO MEETING: COSYNE </td>
<td>
<a href=""></a><br> ---
</td>
<!-- -------------------------------- -->
<tr>
<td> Mar 14 </td>
<td> Nick Roy </td>
<td>
<a href="(http://science.sciencemag.org/content/359/6379/1024">Evidence for a neural law of effect</a><br> Athalye, Santos, Carmena, and Costa.(2017)
</td>
<!-- -------------------------------- -->
<tr>
<td> Mar 21 </td>
<td> No meeting - Snow Day </td>
<td>
</td>
<!-- -------------------------------- -->
<tr>
<td> Mar 28 </td>
<td> Morgan Gustison </td>
<td>
<a href="https://www.sciencedirect.com/science/article/pii/S0896627315002019">Modular Deconstruction Reveals the Dynamical and Physical Building Blocks of a Locomotion Motor Program</a><br> Bruno, Frost, and Humphries. (2015)
</td>
<!-- -------------------------------- -->
<tr>
<td> Apr 4 </td>
<td> Adam Charles </td>
<td>
<a href="https://www.biorxiv.org/content/early/2018/03/02/273128">Unsupervised discovery of temporal sequences in high-dimensional datasets, with applications to neuroscience.
</a><br> Mackevicius et al.
</td>
<!-- -------------------------------- -->
<tr>
<td> Apr 11 </td>
<td> Camille Rullan </td>
<td>
<a href="http://journals.plos.org/ploscompbiol/article?id=10.1371/journal.pcbi.1005355">Computational Account of Spontaneous Activity as a Signature of Predictive Coding</a><br> Koren and Daneve(2017)
</td>
<tr>
<td> Apr 18 </td>
<td> Mikio Aoi </td>
<td>
<a href="https://www.nature.com/articles/s41593-017-0028-6"> Flexible timing by temporal scaling of cortical responses</a><br> Wang, Narain, Hosseini, Jazayeri (2018)
</td>
<tr>
<td> Apr 25 </td>
<td> Mike Morais</td>
<td>
<a href="https://www.sciencedirect.com/science/article/pii/S0896627314003602">Optimal Control of Transient Dynamics in Balanced Networks Supports Generation of Complex Movements</a><br> Hennequin, Vogels, Gerstner (2014)
</td>
<tr>
<td> May 2 </td>
<td> Brain DePasquale</td>
<td>
<a href="https://www.biorxiv.org/content/biorxiv/early/2018/02/07/251595.full.pdf">Choice History Biases Subsequent Evidence Accumulation</a><br> Urai et al. (2018)
</td>
<tr>
<td> May 9 </td>
<td> Adam Calhoun</td>
<td>
<a href="https://www.biorxiv.org/content/early/2018/04/22/306019">Spontaneous behaviors drive multidimensional, brain-wide population activity</a><br> Carsen Stringer, Marius Pachitariu, Nicholas Steinmetz, Charu Bai Reddy, Matteo Carandini, Kenneth D. Harris (2018)
</td>
<!-- -------------------------------- -->
<!-- end of table-->
</tbody>
</table>
<br>
<hrule>
<br>
<!-- ========================================================================= -->
<!-- ========================================================================= -->
<h4> <b>Past Meetings (Fall 2017)</b> </h4>
<table>
<tbody>
<tr class="alt">
<th style="width: 12%;">Date </th>
<th style="width: 25%;">Presenter </th>
<th style="width: 55%;">Reading </th>
</tr>
<p>
<!-- end of table header-->
</p>
<tr>
<td> Sep 26 </td>
<td> Mike Morais </td>
<td>
<a href="http://www.pnas.org/content/114/38/10244.abstract">Lawful relation between perceptual bias and discriminability</a><br> Wei & Stocker (2017)
</td>
<!-- -------------------------------- -->
<tr>
<td> Oct 3 </td>
<td> Alex Hyafil </td>
<td>
<a href="https://elifesciences.org/articles/08998">Attention stabilizes the shared gain of V4 populations</a><br> Rabinowitz et al. (2015)
</td>
<!-- -------------------------------- -->
<tr>
<td> Oct 10 </td>
<td> Jamal Williams </td>
<td>
<a href="http://papers.nips.cc/paper/6222-brains-on-beats.pdf">Brains on Beats</a><br> Guclu et al. (2016)
</td>
<!-- -------------------------------- -->
<tr>
<td> Oct 17 </td>
<td> Adam Charles </td>
<td>
<a href="https://elifesciences.org/articles/22225">Fundamental bound on the persistence and capacity of short-term memory stored as graded persistent activity</a><br>Koyluoglu, et al. <i>eLife</i> (2017)
</td>
<!-- -------------------------------- -->
<tr>
<td> Oct 24 </td>
<td> Adam Calhoun </td>
<td>
<a href="https://www.biorxiv.org/content/early/2017/09/18/190447">A brain wide circuit model of heat evoked swimming behavior in larval zebrafish</a><br> Haesemeyer et al. (2017)
</td>
<!-- -------------------------------- -->
<tr>
<td> Oct 31 </td>
<td> Michael Berry </td>
<td>
<a href="">A Theory of Canonical Computations in the Neocortical Microcircuit</a><br>
</td>
<!-- -------------------------------- -->
<tr>
<td> Nov 28 </td>
<td> Brian DePasquale </td>
<td>
<a href="http://www.sciencedirect.com/science/article/pii/S0896627317300545">Optimal degrees of synaptic connectivity</a><br> Litwin-Kumar et al. (2017)
</td>
<!-- -------------------------------- -->
<!-- end of table-->
</tbody>
</table>
<br>
<hrule>
<br>
<!-- ========================================================================= -->
<!-- ========================================================================= -->
<h4> <b>Past Meetings (Summer 2017)</b> </h4>
<table>
<tbody>
<tr class="alt">
<th style="width: 12%;">Date </th>
<th style="width: 25%;">Presenter </th>
<th style="width: 55%;">Reading </th>
</tr>
<p>
<!-- end of table header-->
</p>
<tr>
<td> Jun 22 </td>
<td> Scott Linderman </td>
<td>
<a href="http://biorxiv.org/content/biorxiv/early/2017/01/31/104737.full.pdf">Using computational theory to constrain statistical models of neural data</a><br> Linderman & Gershman (2017)
</td>
<!-- -------------------------------- -->
<!-- -------------------------------- -->
<!-- end of table-->
</tbody>
</table>
<br>
<hrule>
<br>
<!-- ========================================================================= -->
<!-- ========================================================================= -->
<h4> <b>Past Meetings (Spring 2017)</b> </h4>
<table>
<tbody>
<tr class="alt">
<th style="width: 12%;">Date </th>
<th style="width: 25%;">Presenter </th>
<th style="width: 55%;">Reading </th>