Skip to content

Commit c381bb2

Browse files
authored
add videos page to community section (#18)
* add videos page to community section
1 parent e8570ec commit c381bb2

File tree

6 files changed

+53
-1
lines changed

6 files changed

+53
-1
lines changed

_community_videos/00_talk_series.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
title: PyWhy Causality in Practice
3+
slug: pywhy-video
4+
layout: page
5+
description: >-
6+
PyWhy community Discord and meeting schedule.
7+
summary: >-
8+
9+
PyWhy Causality in Practice is a new talk series focusing on causality and machine learning, especially from a practical perspective. We'll have tutorials and presentations about PyWhy libraries but also talks by external speakers working on causal inference.
10+
11+
12+
---

_community_videos/01_talk_series.md

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
title: LLMs for causal inference
3+
slug: pywhy-video
4+
layout: page
5+
description: >-
6+
PyWhy Causality in Practice - LLMs for causal inference
7+
summary: >-
8+
9+
Emre Kiciman, Senior Principal Researcher at Microsoft, talks about pywhy-llm, a new experimental library that focuses on using large language models for causality.
10+
<br>
11+
<br>
12+
13+
<iframe width="800" height="450" src="https://www.youtube.com/embed/1D5P7RVhHFU?si=LfA2XXHIhlsxJDBD"
14+
title="YouTube video player" frameborder="0" allow="accelerometer; autoplay;
15+
clipboard-write; encrypted-media; gyroscope; picture-in-picture;
16+
web-share" allowfullscreen></iframe>
17+
18+
---

_config.yml

+4
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,10 @@ collections:
4747
output: false
4848
permalink: /:collection/:title
4949
sort_by: path
50+
community_videos:
51+
output: false
52+
permalink: /:collection/:title
53+
sort_by: path
5054

5155
# Build settings
5256
markdown: kramdown

_includes/header.html

+11-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,17 @@ <h1>{{ site.title }}</h1>
2323
</ul>
2424
</li>
2525
<li><a href="news.html">News</a></li>
26-
<li><a href="community.html">Community</a></li>
26+
<li>
27+
<a href="community/discord.html" aria-haspopup="true"
28+
>Community &#x25BE;</a
29+
>
30+
<ul class="dropdown" aria-label="submenu">
31+
<li><a href="community/discord.html">Discord</a></li>
32+
<li>
33+
<a href="community/videos.html">Videos</a>
34+
</li>
35+
</ul>
36+
</li>
2737
<li><a href="https://github.com/py-why" target="_blank">GitHub</a></li>
2838
</ul>
2939
</nav>

community-videos.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
layout: page
3+
permalink: community/videos.html
4+
---
5+
6+
{% include articles.html collection="community_videos" %}

community.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
22
layout: page
3+
permalink: community/discord.html
4+
redirect_from: community.html
35
---
46

57
{% include articles.html collection="community" %}

0 commit comments

Comments
 (0)