Skip to content

Commit 34a2293

Browse files
committed
adding talks section
1 parent 97c534c commit 34a2293

File tree

3 files changed

+61
-0
lines changed

3 files changed

+61
-0
lines changed

images/talks/brainmind.png

871 KB
Loading
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
layout: talk
3+
title: Computational Neuropsychiatry - New Approaches to Psychiatric Diagnosis
4+
image: /images/talks/brain-mind.png
5+
date: Sep 17, 2019
6+
host: 2018 BrainMind Summit @ Stanford
7+
speaker: Manish Saggar
8+
view: public
9+
url: https://www.youtube.com/watch?v=fH17HvGDi0s
10+
11+
---
12+
13+
# Abstract
14+
In this talk Manish discusses the challenges in diagnosing mental health disorders compared to medical conditions with biological markers. He emphasizes the need for personalized approaches to brain imaging, as most studies involve group-level analysis. He shares the concept of "n=1" neuroimaging, aiming to capture individual brain dynamics. To achieve this, he uses Topological Data Analysis to understand the shape of brain dynamics as a whole and mentions its potential in improving diagnostic accuracy for conditions like ADHD and depression. He also highlights the importance of mechanistic insights and computational models to better characterize brain activity in healthy and patient populations.
15+
16+
# Talk
17+
18+
<div class="embed-responsive embed-responsive-16by9">
19+
<iframe src="https://www.youtube.com/watch?v=fH17HvGDi0s" width="1024" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
20+
</div>
21+
<br>

talks/index.html

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
---
2+
layout: default
3+
title: brain dynamics lab / talks
4+
categories:
5+
- talks
6+
---
7+
8+
<div class="row">
9+
<div class="col-md-12">
10+
<h1> Recent Talks </h1>
11+
<hr style="height:2px;border:none;color:#808088;background-color:#808088;" />
12+
</div>
13+
</div>
14+
15+
{% for talk in site.categories.talks %}
16+
{% if talk.view != private %}
17+
<div class="col-lg-12 paperbox">
18+
<div class="media">
19+
<div class="media-body">
20+
<div class="head mb-1"><a href="{{ talk.url }}" class="off">{{ talk.title }}</a>
21+
</div>
22+
<p class="note"> <strong> Speaker: </strong> {{ talk.speaker }} </p>
23+
<p class="note"> <strong> Date: </strong> {{ talk.date }} </p>
24+
<p class="note"> <strong> Hosted by: </strong> {{ talk.host }} </p>
25+
26+
</div>
27+
<a href="{{ talk.url }}">
28+
<img class="ml-3" width=150 class="media-object" src="{{ talk.image }}">
29+
</a>
30+
</div>
31+
<div class="bigspacer"></div>
32+
<div class="spacer"></div>
33+
</div>
34+
{% endif %}
35+
{% endfor %}
36+
37+
38+
</div>
39+
40+

0 commit comments

Comments
 (0)