Skip to content

Latest commit

 

History

History
65 lines (52 loc) · 2.29 KB

File metadata and controls

65 lines (52 loc) · 2.29 KB
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

Events

We host multiple types of events to help you learn and connect with the data science community:

Types of Events

  • 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 %}

Upcoming events

Upcoming Events

    {% for event in upcoming %}
  • {% include event.html event=event speakers=true %}
  • {% endfor %}
{% endif %}

{% assign past = site.data.events | where_exp: "event", "event.draft != true" | where_exp: "event", "event.time <= site.time" | sort: 'time' | reverse %}

{% if past %}

Past events

Past Events

    {% for event in past %}
  • {% include event.html event=event speakers=true %}
  • {% endfor %}
{% endif %}