| title | Events |
|---|---|
| description | Join our data science events including webinars, live podcasts, workshops, and conferences. Connect with experts and learn about the latest trends in data, ML, and AI. |
| image | images/cover.jpg |
| layout | page |
We host multiple types of events to help you learn and connect with the data science community:
- Webinars – events on Tuesday, with slides, mostly technical
- Live podcasts – events on Friday, a discussion without slides, the recording is published as a podcast
- Workshop – hands-on tutorials about technical topics
- Conference – bigger events with multiple talks, both webinar-type talks and podcast-type talks
📅 Pro tip: you can also subscribe to our Google calendar{:target="_blank"} to get notified about all our events (subscribing works from desktop only).
{% assign upcoming = site.data.events | where_exp: "event", "event.draft != true" | where_exp: "event", "event.time > site.time" | sort: 'time' %}
{% if upcoming %}
-
{% for event in upcoming %}
- {% include event.html event=event speakers=true %} {% endfor %}
{% assign past = site.data.events | where_exp: "event", "event.draft != true" | where_exp: "event", "event.time <= site.time" | sort: 'time' | reverse %}
{% if past %}
-
{% for event in past %}
- {% include event.html event=event speakers=true %} {% endfor %}