2020-06-10 16:04:18 +03:00
---
2020-06-17 21:50:40 +03:00
layout: default
title: Related Projects & Examples
description: "Repository templates, examples, and related projects that demonstrate how various GitHub Features can be used for data science and ML Ops."
image: "/assets/images/Collection.svg"
2020-06-10 16:04:18 +03:00
---
2020-06-17 21:50:40 +03:00
2020-06-10 16:04:18 +03:00
< section class = "intro blog_intro" >
< div class = "image_box" >
2020-06-17 21:50:40 +03:00
< img src = "{{page.image}}" alt = "repository templates" / >
2020-06-10 16:04:18 +03:00
< / div >
< div class = "text_box" >
< h1 > {{page.title}}< / h1 >
< p > {{page.description}}< / p >
<!-- tags filter -->
< div class = "tags" >
2020-06-17 21:50:40 +03:00
{% assign tags = site.data.repository_templates | map: 'tags' | uniq %}
2020-06-10 16:04:18 +03:00
< button class = "tag_filter active" data-tag = "all" > All< / button >
2020-06-17 21:50:40 +03:00
{%- assign s = tags | size | minus: 2 -%} {%- for i in (0..s) -%}
< button class = "tag_filter" data-tag = "{{tags[i] | replace: ' ', '_'}}" >
{{tags[i]}}
< / button >
2020-06-10 16:04:18 +03:00
{%- endfor -%}
< / div >
<!-- Posts list -->
< div class = "posts_list" >
2020-06-17 21:50:40 +03:00
{%- for item in site.data.repository_templates -%} {% assign t = item.tags
| join: "%%" | replace: " ", "_"| replace: "%%", " " %}
2020-06-10 16:04:18 +03:00
< div class = "blog content_item {{t}}" >
< a href = "{{item.link}}" >
< h2 > {{item.title}}< / h2 >
2020-06-17 21:50:40 +03:00
< / a >
2020-06-10 16:04:18 +03:00
< p > {{item.info}}< / p >
< / div >
{%- endfor -%}
< / div >
< / div >
2020-06-17 21:50:40 +03:00
< / section >