-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
316 lines (291 loc) · 29.2 KB
/
index.html
File metadata and controls
316 lines (291 loc) · 29.2 KB
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
<!DOCTYPE HTML>
<!--
Dimension by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>Predictive Networks, Illusions and Schizophrenia</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
</head>
<body class="is-preload">
<!-- Wrapper -->
<div id="wrapper">
<!-- Header -->
<header id="header">
<!-- <div class="logo">
<span class="icon fa-gem"></span>
</div> -->
<div class="content">
<div class="inner">
<h1>Predictive Networks, Illusions and Schizophrenia</h1>
<p>Making PredNet void of illusions</p>
<blockquote>Is not this world an illusion? And yet it fools everybody.
<br /> -- Angela Carter
</blockquote>
</div>
</div>
<nav>
<ul>
<li><a href="#project">Project</a></li>
<li><a href="#prednet">PredNet</a></li>
<li><a href="#results">Results</a></li>
<li><a href="#resources">References</a></li>
<li><a href="#team">Team</a></li>
</ul>
</nav>
</header>
<!-- Main -->
<div id="main">
<!-- Project -->
<article id="project">
<h2 class="major">Description </h2>
<p>
An essential task in Articial Intelligence (AI) is the prediction of future inputs from a given sequence, such as predicting the next frame of a video, with prominent applications such as self-driving cars. The human brain is very good at this task,
without this ability we would be too slow to catch a ball or jump out of the way. A theory called "predictive coding" in neuro- science introduced by Ballard and Rao in 1999, explains the phenomena.</p>
<p> A recently developed predictive network from Massachusetts Institute of Technology (MIT) called 'PredNet' leverages the ideas of predictive coding for next-frame video prediction. Interestingly, PredNet has shown a very brain-like ability
to be fooled by illusions of motion (when a static image appears to be moving). This leads us to pose the question of whether PredNet can be used to study perceptual disruptions in the brain associated with mental disorders, particularly
schizophrenia.
</p>
<p> In this study, we show how several types of modications to PredNet designed to simulate dierent models of perception disruption in schizophre- nia from neuroscience literature, aects its ability to be fooled by illusions of motion,
and the overall eect these disruptions have on the predictive ability.
</p>
<p> Read the report to know more: <a href="https://github.com/ufshaik/PI-S/blob/master/pdf/Report.pdf" target="_blank" rel="noopener noreferrer"> PDF </a> </p>
</article>
<!-- Prednet -->
<article id="prednet">
<h2 class="major">PredNet</h2>
<span class="image main"><img src="images/prednet.png" alt="" /></span>
<p>
While many strides have been made in using deep learning algorithms to solve supervised learning tasks, the problem with unsupervised learning is that training on unlabeled examples to learn about the structure of a domain remains a dicult problem. This
problem arises mainly on computer vision models that are typically trained on static images whereas, in the real world, visual objects are alive with movement, driven both by the self-motion of the viewer and the objects within a scene.
</p>
<p>To address this, Bill Lotter, Gabriel Kreiman, and David Cox developed a deep convolutional recurrent neural network they called PredNet [Lotter et al., 2016]. While building on the previous work in next-frame video prediction [Softky,
1996, Palm, 2012, Goroshin et al., 2015, Mathieu et al., 2015b, Wang and Gupta, 2015], the architecture of PredNet is heavily inspired by the concept of predictive coding from neuroscience literature [Rao and Ballard, 1999].
</p>
<p> Read the report to know more: <a href="https://github.com/ufshaik/PI-S/blob/master/pdf/Report.pdf" target="_blank" rel="noopener noreferrer"> PDF </a> </p>
</article>
<!-- Results -->
<article id="results">
<h2 class="major">Results</h2>
<p> The results have been summarized in the report and also in the presentation. Have a look through the presentation for an abstract idea of things and then dig deeper into the world of predictive networks, illusions and schizophrenia by
reading the report. </p>
<H3 class="major"> <a href="https://github.com/ufshaik/PI-S/blob/master/pdf/PI%26S.pptx" target="_blank" rel="noopener noreferrer">Presentation</a></H3>
<H3 class="major"> <a href="https://github.com/ufshaik/PI-S/blob/master/pdf/Report.pdf" target="_blank" rel="noopener noreferrer">Report</a> </H3>
</article>
<!-- Resources -->
<article id="resources" style="width: 90%; overflow: hidden; text-overflow: ellipsis">
<h2 class="major">References</h2>
<h5>Click on respective names to open pdf</h5>
<div class="table-wrapper">
<table>
<thead>
<tr>
<th>Year</th>
<th>Name</th>
<th>Abstract</th>
<th>Author</th>
</tr>
</thead>
<tbody>
<tr>
<td>Mar 2017</td>
<td><a href="https://arxiv.org/pdf/1605.08104.pdf" target="_blank" rel="noopener noreferrer"><b>Deep
Predictive Coding Networks for Video Prediction and Unsupervised
Learning</a></td>
<td class="comment">While great strides have been made in using deep learning algorithms to solve supervised learning tasks, the problem of unsupervised learning - leveraging unlabeled examples to learn about the structure of a domain - remains
a difficult unsolved challenge. Here, we explore prediction of future frames in a video sequence as an unsupervised learning rule for learning about the structure of the visual world. We describe a predictive neural
network ("PredNet") architecture that is inspired by the concept of "predictive coding" from the neuroscience literature. These networks learn to predict future frames in a video sequence, with each layer in the network
making local predictions and only forwarding deviations from those predictions to subsequent network layers. We show that these networks are able to robustly learn to predict the movement of synthetic (rendered) objects,
and that in doing so, the networks learn internal representations that are useful for decoding latent object parameters (e.g. pose) that support object recognition with fewer training views. We also show that these
networks can scale to complex natural image streams (car-mounted camera videos), capturing key aspects of both egocentric movement and the movement of objects in the visual scene, and the representation learned in this
setting is useful for estimating the steering angle. Altogether, these results suggest that prediction represents a powerful framework for unsupervised learning, allowing for implicit learning of object and scene structure.
</td>
<td><b>David Cox</b>, William Lotter, Gabriel Kreiman </td>
</tr>
<tr>
<td>March 2018</td>
<td><a href="https://www.frontiersin.org/articles/10.3389/fpsyg.2018.00345/full" target="_blank" rel="noopener noreferrer"><b>Illusory Motion
Reproduced by
Deep Neural Networks Trained for Prediction</a></td>
<td class="comment">The cerebral cortex predicts visual motion to adapt human behavior to surrounding objects moving in real time. Although the underlying mechanisms are still unknown, predictive coding is one of the leading theories. Predictive
coding assumes that the brain's internal models (which are acquired through learning) predict the visual world at all times and that errors between the prediction and the actual sensory input further refine the internal
models. In the past year, deep neural networks based on predictive coding were reported for a video prediction machine called PredNet. If the theory substantially reproduces the visual information processing of the
cerebral cortex, then PredNet can be expected to represent the human visual perception of motion. In this study, PredNet was trained with natural scene videos of the self-motion of the viewer, and the motion prediction
ability of the obtained computer model was verified using unlearned videos. We found that the computer model accurately predicted the magnitude and direction of motion of a rotating propeller in unlearned videos. Surprisingly,
it also represented the rotational motion for illusion images that were not moving physically, much like human visual perception. While the trained network accurately reproduced the direction of illusory rotation, it
did not detect motion components in negative control pictures wherein people do not perceive illusory motion. This research supports the exciting idea that the mechanism assumed by the predictive coding theory is one
of basis of motion illusion generation. Using sensory illusions as indicators of human perception, deep neural networks are expected to contribute significantly to the development of brain research.
</td>
<td> Eiji Watanabe , Akiyoshi Kitaoka, Kiwako Sakamoto, Masaki Yasugi and Kenta Tanaka
</td>
</tr>
<tr>
<td>1999</td>
<td><a href="https://www.cs.utexas.edu/users/dana/nn.pdf" target="_blank" rel="noopener noreferrer"><b>Predictive coding
in
the visual cortex: a functional interpretation of some extra-classical
receptive-field effects</a></td>
<td class="comment">We describe a model of visual processing in which feedback connections from a higher- to a lower-order visual cortical area carry predictions of lower-level neural activities, whereas the feedforward connections carry the
residual errors between the predictions and the actual lower-level activities. When exposed to natural images, a hierarchical network of model neurons implementing such a model developed simple-cell-like receptive fields.
A subset of neurons responsible for carrying the residual errors showed endstopping and other extra-classical receptive-field effects. These results suggest that rather than being exclusively feedforward phenomena,
nonclassical surround effects in the visual cortex may also result from cortico-cortical feedback as a consequence of the visual system using an efficient hierarchical strategy for encoding natural images.</td>
<td> Rajesh P. N. Rao & Dana H. Ballard </td>
</tr>
<tr>
<td>August 2014</td>
<td><a href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4130106/" target="_blank" rel="noopener noreferrer"><b>What visual
illusions teach us about schizophrenia</a></td>
<td class="comment">Illusion, namely a mismatch between the objective and perceived properties of an object present in the environment, is a common feature of visual perception, both in normal and pathological conditions. This makes illusion
a valuable tool with which to explore normal perception and its impairments. Although still debated, the hypothesis of a modified, and typically diminished, susceptibility to illusions in schizophrenia patients is supported
by a growing number of studies. The current paper aimed to review how illusions have been used to explore and reveal the core features of visual perception in schizophrenia from a psychophysical, neurophysiological
and functional point of view. We propose an integration of these findings into a common hierarchical Bayesian inference framework. The Bayesian formalism considers perception as the optimal combination between sensory
evidence and prior knowledge, thereby highlighting the interweaving of perceptions and beliefs. Notably, it offers a holistic and convincing explanation for the perceptual changes observed in schizophrenia that might
be ideally tested using illusory paradigms, as well as potential paths to explore neural mechanisms. Implications for psychopathology (in terms of positive symptoms, subjective experience or behavior disruptions) are
critically discussed.</td>
<td> Charles-Edouard Notredame, Delphine Pins, <b>Sophie Deneve</b> and Renaud Jardri
</td>
</tr>
<tr>
<td>November 2013</td>
<td><a href="https://academic.oup.com/brain/article/136/11/3227/324497" target="_blank" rel="noopener noreferrer"><b>Circular
inferences in
schizophrenia</a></td>
<td class="comment">A considerable number of recent experimental and computational studies suggest that subtle impairments of excitatory to inhibitory balance or regulation are involved in many neurological and psychiatric conditions. The
current paper aims to relate, specifically and quantitatively, excitatory to inhibitory imbalance with psychotic symptoms in schizophrenia. Considering that the brain constructs hierarchical causal models of the external
world, we show that the failure to maintain the excitatory to inhibitory balance results in hallucinations as well as in the formation and subsequent consolidation of delusional beliefs. Indeed, the consequence of excitatory
to inhibitory imbalance in a hierarchical neural network is equated to a pathological form of causal inference called ‘circular belief propagation’. In circular belief propagation, bottom-up sensory information and
top-down predictions are reverberated, i.e. prior beliefs are misinterpreted as sensory observations and vice versa. As a result, these predictions are counted multiple times. Circular inference explains the emergence
of erroneous percepts, the patient’s overconfidence when facing probabilistic choices, the learning of ‘unshakable’ causal relationships between unrelated events and a paradoxical immunity to perceptual illusions, which
are all known to be associated with schizophrenia.</td>
<td><b>Sophie Deneve</b>, Renaud Jardri</td>
</tr>
<tr>
<td>October 2016</td>
<td><a href="https://www.sciencedirect.com/science/article/pii/S235215461630078X" target="_blank" rel="noopener noreferrer"><b>Circular
inference: Mistaken belief, misplaced trust</a></td>
<td class="comment">At the clinical level, psychosis can be formalized as the formation of aberrant beliefs or percepts and has been proposed to result from disruptions in the excitation/inhibition (E/I) balance in cortical microcircuitry.
However, these two conceptual approaches toward psychosis have yet to be correlated. Here, we review recent empirical and computational studies that enable an integrated understanding of how the brain may generate beliefs
along a spectrum ranging from normal to pathology. We mainly focus on hierarchical predictive coding and circular inference. We will expose how these two frameworks may account for hallucinations, delusions, and reduced
susceptibility to illusions, and we will additionally critically discuss their respective strengths and weaknesses as well as potential future research directions.
</td>
<td><b>Sophie Deneve</b>, Renaud Jardri</td>
</tr>
<tr>
<td>December 2008</td>
<td><a href="https://www.sciencedirect.com/science/article/pii/S235215461630078X" target="_blank" rel="noopener noreferrer"><b>Perceiving
is believing: a Bayesian approach to explaining the positive symptoms of
schizophrenia</a></td>
<td class="comment">Advances in cognitive neuroscience offer us new ways to understand the symptoms of mental illness by uniting basic neurochemical and neurophysiological observations with the conscious experiences that characterize these
symptoms. Cognitive theories about the positive symptoms of schizophrenia — hallucinations and delusions — have tended to treat perception and belief formation as distinct processes. However, recent advances in computational
neuroscience have led us to consider the unusual perceptual experiences of patients and their sometimes bizarre beliefs as part of the same core abnormality — a disturbance in error-dependent updating of inferences
and beliefs about the world. We suggest that it is possible to understand these symptoms in terms of a disturbed hierarchical Bayesian framework, without recourse to separate considerations of experience and belief.
</td>
<td>Paul C. Fletcher, Chris D. Frith</td>
</tr>
<tr>
<td>May 2013</td>
<td><a href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3667557/" target="_blank" rel="noopener noreferrer"><b>The
computational anatomy of psychosis</a></td>
<td class="comment">This paper considers psychotic symptoms in terms of false inferences or beliefs. It is based on the notion that the brain is an inference machine that actively constructs hypotheses to explain or predict its sensations.
This perspective provides a normative (Bayes-optimal) account of action and perception that emphasizes probabilistic representations; in particular, the confidence or precision of beliefs about the world. We will consider
hallucinosis, abnormal eye movements, sensory attenuation deficits, catatonia, and delusions as various expressions of the same core pathology: namely, an aberrant encoding of precision. From a cognitive perspective,
this represents a pernicious failure of metacognition (beliefs about beliefs) that can confound perceptual inference. In the embodied setting of active (Bayesian) inference, it can lead to behaviors that are paradoxically
more accurate than Bayes-optimal behavior. Crucially, this normative account is accompanied by a neuronally plausible process theory based upon hierarchical predictive coding. In predictive coding, precision is thought
to be encoded by the post-synaptic gain of neurons reporting prediction error. This suggests that both pervasive trait abnormalities and florid failures of inference in the psychotic state can be linked to factors controlling
post-synaptic gain – such as NMDA receptor function and (dopaminergic) neuromodulation. We illustrate these points using biologically plausible simulations of perceptual synthesis, smooth pursuit eye movements and attribution
of agency – that all use the same predictive coding scheme and pathology: namely, a reduction in the precision of prior beliefs, relative to sensory evidence.</td>
<td>Rick A. Adams, Klaas Enno Stephan, Harriet R. Brown, Christopher D. Frith and Karl J. Friston</td>
</tr>
<tr>
<td>January 2013</td>
<td><a href="https://www.sciencedirect.com/science/article/pii/S0042698912003616" target="_blank" rel="noopener noreferrer"><b>The
function
of efference copy signals: Implications for symptoms of schizophrenia</a>
</td>
<td class="comment">Efference copy signals are used to reduce cognitive load by decreasing sensory processing of reafferent information (those incoming sensory signals that are produced by an organism’s own motor output). Attenuated sensory
processing of self-generated afferents is seen across species and in multiple sensory systems involving many different neural structures and circuits including both cortical and subcortical structures with thalamic
nuclei playing a particularly important role. It has been proposed that the failure to disambiguate self-induced from externally generated sensory input may cause some of the positive symptoms in schizophrenia such
as auditory hallucinations and delusions of passivity. Here, we review the current data on the role of efference copy signals within different sensory modalities as well as the behavioral, structural and functional
abnormalities in clinical groups that support this hypothesis.</td>
<td>Laura K.Pynn, Joseph F.X. DeSouza</td>
</tr>
<tr>
<td>July 2015</td>
<td><a href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4502445/" target="_blank" rel="noopener noreferrer"><b>Active
inference, communication and
hermeneutics</a></td>
<td class="comment">Hermeneutics refers to interpretation and translation of text (typically ancient scriptures) but also applies to verbal and non-verbal communication. In a psychological setting it nicely frames the problem of inferring
the intended content of a communication. In this paper, we offer a solution to the problem of neural hermeneutics based upon active inference. In active inference, action fulfils predictions about how we will behave
(e.g., predicting we will speak). Crucially, these predictions can be used to predict both self and others – during speaking and listening respectively. Active inference mandates the suppression of prediction errors
by updating an internal model that generates predictions – both at fast timescales (through perceptual inference) and slower timescales (through perceptual learning). If two agents adopt the same model, then – in principle
– they can predict each other and minimise their mutual prediction errors. Heuristically, this ensures they are singing from the same hymn sheet. This paper builds upon recent work on active inference and communication
to illustrate perceptual learning using simulated birdsongs. Our focus here is the neural hermeneutics implicit in learning, where communication facilitates long-term changes in generative models that are trying to
predict each other. In other words, communication induces perceptual learning and enables others to (literally) change our minds and vice versa.</td>
<td>Karl J. Friston and Christopher D. Frith</td>
</tr>
</tbody>
</table>
</div>
</article>
<!-- Team -->
<article id="team">
<h2 class="major">Team</h2>
<h4 class="major ani"><a href='#' class="ani">Dr. Antonina Kolokolova</a></h4>
<div class='teams'>
<div class="teams quarter"> <span class="image contact"><img src="images/antonina.jpg"
alt="" /></span></div>
<div class="teams third">
<p>Antonina is an Associate Professor at the Department of Computer Science , Memorial University of Newfoundland. Her research interests are in theoretical computer science, in particular complexity theory and logic, including proof
complexity.
</p>
</div>
</div>
<br/>
<h4 class="major ani"><a href='#' class="ani">Umar Shaik</a></h4>
<div class='teams'>
<div class="teams quarter"> <span class="image contact"><img src="images/umar.jpg"
alt="" /></span></div>
<div class="teams third">
<p> Umar is pursuing MSc in Computer Science from Memorial University of Newfoundland </p>
</div>
</div>
<br />
<h4 class="major ani"><a href='#' class="ani">Daniel Powers</a></h4>
<div class='teams'>
<div class="teams quarter"> <span class="image contact"><img src="images/daniel.jpg" alt="" /></span>
</div>
<div class="teams third">
<p>Daniel is pursuing BSc in Computer Science from Memorial University of Newfoundland </p>
</div>
</div>
<br />
<h4 class="major ani"><a href='#' class="ani">Hilary Sinclair</a></h4>
<div class='teams'>
<div class="teams quarter"> <span class="image contact"><img src="images/hilary.jpg" alt="" /></span>
</div>
<div class="teams third">
<p>Hilary holds a BEng (Mech) and is currently pursuing a BSc in Computer Science from Memorial University.</p>
</div>
</div>
</article>
</div>
<!-- Footer -->
<footer id="footer">
<p class="copyright">© PREDICTIVE NETWORKS, ILLUSIONS AND SCHIZOPHRENIA. Design: <a href="https://html5up.net">HTML5 UP</a>.</p>
</footer>
</div>
<!-- BG -->
<div id="bg"></div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>