| title | Welcome to DataTalks.Club |
|---|---|
| description | DataTalks.Club is the place to talk about data. Join the global community of data science professionals, ML engineers, and AI practitioners. Access free courses, weekly podcasts, webinars, workshops, and book discussions with industry experts. |
| image | images/cover.jpg |
| layout | home |
{% include subscribe-main.html %}
{% assign upcoming = site.data.events
| where_exp: "event", "event.draft != true"
| where_exp: "event", "event.time > site.time"
| sort: 'time' %}
-
{% for event in upcoming %}
- {% include event.html event=event speakers=true %} {% endfor %}
<p>Check <a href="/events.html">events</a> for all past events. You can also subscribe to <a href="https://calendar.google.com/calendar/?cid=ZjhxaWRqbnEwamhzY3A4ODA5azFlZ2hzNjBAZ3JvdXAuY2FsZW5kYXIuZ29vZ2xlLmNvbQ" target="_blank" rel="noopener noreferrer">our Google calendar</a> to get notified about all our events.</p>
<p> </p>
{% assign episodes = site.podcast
| sort: 'episode'
| sort: 'season'
| reverse %}
<h4>Latest podcast episodes</h4>
<ul>
{% for episode in episodes limit: 5 %}
<li><a href="{{ episode.id }}.html">{{ episode.title }}</a> with
{% include authors.html authors=episode.guests %}</li>
{% endfor %}
</ul>
<p>Check the <a href="/podcast.html">podcast</a> page for all past podcast episodes.</p>
<p> </p>
<h4>Our Sponsors</h4>
<div class="text-center row justify-content-center">
{% for sponsor in site.data.sponsors %}
<div class="my-3 col-md-6" style="display: flex">
<a href="{{ sponsor.link }}" style="margin: auto" target="_blank" rel="noopener noreferrer">
<img src="{{ sponsor.image }}" class="partner" alt="{{ sponsor.name | default: 'Sponsor logo' }}" {% if sponsor.width %}width="{{ sponsor.width }}"{% endif %}>
</a>
</div>
{% endfor %}
</div>
<p> </p>
<h4>Book of the week</h4>
{% assign books = site.books
| where_exp: "book", "book.end > site.time"
| sort: 'end' %}
<ul>
{% for book in books %}
<li>
<a href="{{ book.id }}.html">{{ book.title }}</a> by {% include authors.html authors=book.authors %}
({{ book.start | date_to_string }} – {{ book.end | date_to_string }})
</li>
{% endfor %}
</ul>
<p>Check the <a href="/books.html">book of the week</a> page for more books!</p>
<p> </p>
<h4>Latest articles</h4>
<ul>
{% for post in site.posts limit: 5 %}
<li>
<a href="{{ post.url }}">{{ post.title }}</a> by
{% include authors.html authors=post.authors %}
</li>
{% endfor %}
</ul>


