Skip to content

Commit

Permalink
Page for Mouse Learning Talk (CodingTrain#3180)
Browse files Browse the repository at this point in the history
* saving progress

* changing link

* adding repo links

* fixing alt text

* vscode trying to be smart

* adding more links

* adding more links

* fixing link
  • Loading branch information
duskvirkus authored Apr 29, 2021
1 parent cfa3fac commit 79061bb
Show file tree
Hide file tree
Showing 6 changed files with 245 additions and 4 deletions.
1 change: 1 addition & 0 deletions _jekyll/includes/2-base/navigation.html
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
<div class="submenu" id="more-submenu">
<ul class="links">
<!-- <li><a href="{{ '/Streams' | relative_url }}">Streams</a></li> -->
<li><a href="{{ '/more/talks/mouse-learning' | relative_url }}">Mouse Learning Talk</a></li>
<li><a href="{{ '/more/faq/' | relative_url }}">Frequently Asked Questions</a></li>
<li><a href="{{ '/TeachableMachine' | relative_url }}">Teachable Machine</a></li>
<li><a href="{{ '/more/workflow' | relative_url }}">Workflow</a></li>
Expand Down
15 changes: 11 additions & 4 deletions _jekyll/includes/3-modules/code-variation.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,18 @@
{% endunless %}
{% endif %}

{% assign variationURL = include.baseURL | append: '/' | append: include.variation.folder %}
<li><a href="{{ variationURL }}" target="_blank" aria-label="View {{ include.variation.lang }} Code">View Code</a></li>
{% if include.variation.lang != "repository" %}
{% assign variationURL = include.baseURL | append: '/' | append: include.variation.folder %}
<li><a href="{{ variationURL }}" target="_blank" aria-label="View {{ include.variation.lang }} Code">View Code</a></li>

{% assign downloadFrom = include.downloadURL | append: '/' | append: include.variation.folder %}
<li><a href="{{ downloadFrom }}" target="_blank" aria-label="Download {{ include.variation.lang }} Code">Download Code</a></li>

{% assign downloadFrom = include.downloadURL | append: '/' | append: include.variation.folder %}
<li><a href="{{ downloadFrom }}" target="_blank" aria-label="Download {{ include.variation.lang }} Code">Download Code</a></li>
{% else %}

<li><a href="{{ variation.url }}" target="_blank" aria-label="View {{ include.variation.lang }} Code">View Repository</a></li>

{% endif %}

</ul>

Expand Down
110 changes: 110 additions & 0 deletions _jekyll/layouts/talk.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
---
layout: base
---


<div class="video">

{% comment %} Video subtitle. {% endcomment %}
<div class="subtitle">
{{ course.title | default: series.title }}
</div>

<div>
<img style="max-width: 100%" src={{page.img_path}} alt="{{page.img_alt}}">
</div>

<div class="add-bars">
<p>
{{ content }}
</p>
</div>

<!-- <div class="player-and-topics">
<div class="player">
{% comment %} Include YouTube video player. {% endcomment %}
{% include 3-modules/video-player.html video_id=page.video_id %}
{% comment %} Previous/Next buttons and 'Watch all' button. {% endcomment %}
<div class="player-controls">
<a href="{{ out_previousVideo.url | relative_url | default: '#' }}" class="jump-control {% if out_previousVideo == null %}disabled{% endif %}" aria-label="Previous video">❰</a>
<a href="{{ series.url | default: page.collection | relative_url }}" class="watch-all-videos">Watch all videos</a>
<a href="{{ out_nextVideo.url | relative_url | default: '#' }}" class="jump-control {% if out_nextVideo == null %}disabled{% endif %}" aria-label="Next video">❱</a>
</div>
</div>
<div class="topics">
{{ content }}
{% comment %} Show video topics (used for streams). {% endcomment %}
{% if page.topics %}
{% include 3-modules/link-list.html links=page.topics title='Topics' class='topics' %}
{% endif %}
</div>
</div> -->

<div class="code-actions">

{% comment %} Ask for code variations {% endcomment %}
{% assign repositoryBasePath = '' %}
<!-- {% assign repositoryBasePath = '/' | append: page.collection | append: '/' | append: page.repository %}
{% assign repositoryBaseURL = site.github.repository_url | append: '/tree/' | append: site.github.source.branch | append: repositoryBasePath %} -->

{% comment %} If page has defined it's own variations create pageVariations for code variation tool. {% endcomment %}
{% if page.variations != null %}
{% assign pageVariations = page.variations %}
{% else %}
{% assign pageVariations = null %}
{% endif %}

{% assign codeVariations = pageVariations %}
{% assign numberOfVariations = codeVariations | size %}

{% assign downloadBaseURL = site.github_download_prefix | append: repositoryBaseURL %}

{% for variation in codeVariations %}
{% include 3-modules/code-variation.html baseURL=repositoryBaseURL downloadURL=downloadBaseURL variation=variation %}
{% endfor %}

</div>

<div class="links-and-books">

{% comment %} List of related parts. {% endcomment %}
{% if page.parts %}
{% capture partsTitle %}Other parts of this {{ page.video_type | downcase }}{% endcapture %}
{% include 3-modules/link-list.html links=page.parts title=partsTitle %}
{% endif %}

{% comment %} Links of discussed books/articles/papers. {% endcomment %}
{% if page.books %}
{% include 3-modules/link-list.html links=page.books title='Artists' %}
{% endif %}

{% comment %} List of discussed links. {% endcomment %}
{% if page.links %}
{% capture linksTitle %}Publications and Websites{% endcapture %}
{% include 3-modules/link-list.html links=page.links title=linksTitle %}
{% endif %}

{% comment %} Links of discussed videos. {% endcomment %}
{% if page.videos %}
{% capture videosTitle %}Videos discussed in this {{ page.video_type | downcase }}{% endcapture %}
{% include 3-modules/link-list.html links=page.videos title=videosTitle %}
{% endif %}

{% comment %} Links of discussed tools. {% endcomment %}
{% if page.tools %}
{% capture toolsTitle %}Tools discussed in this {{ page.video_type | downcase }}{% endcapture %}
{% include 3-modules/link-list.html links=page.tools title=toolsTitle %}
{% endif %}

{% comment %} Custom link lists. {% endcomment %}
{% for section in page.custom_sections %}
{% include 3-modules/link-list.html links=section.items title=section.title class=section.class %}
{% endfor %}
</div>

</div>
123 changes: 123 additions & 0 deletions _more/talks/mouse-learning.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,123 @@
---
layout: talk
title: "Mouse Learning - 2021 Computer Mouse Conference"
date: 2021-04-29
redirect_from:
- /mouse-learning
- /mouselearning

img_path: "/assets/images/mouselearning.png"
img_alt: "An image showing a still from the mouse learning talk. Dan stands in the middle of a garden surrounded by mac windows. The one behind his head says Mouse Learning. The window on the left says 'a video for the 2021 computer mouse conference by The Coding Train'. And the last one says 'inspired by The Dada of All Demos by emma rae bruml norton'."

books:
- title: "Wekinator"
author: "Dr. Rebecca Fiebrink"
url: http://www.wekinator.org
- title: "Selected Works"
author: "Dr. Nettrice R. Gaskins"
url: https://www.nettricegaskins.com/gallery
- title: "Ambigrammatic Figures"
author: "Golan Levin with Lingdong Huang"
url: https://github.com/golanlevin/AmbigrammaticFigures
- title: "Can I Go Where You Go?"
author: "Maya Man"
url: https://mayaontheinter.net/canigo/
- title: "KIKK Festival 2018"
author: "Kyle McDonald"
url: https://vimeo.com/304110435
- title: "Do Not Touch"
author: "Studio Moniker"
url: https://studiomoniker.com/projects/do-not-touch
- title: "This Foot Does Not Exist"
author: "MSCHF"
url: https://thisfootdoesnotexist.com/
- title: "Mosaic Virus"
author: "Anna Ridler"
url: https://annaridler.com/mosaic-virus
- title: "Nails"
author: "Char Stiles"
url: https://nails.glitch.me/
- title: "Leaves of Manifold"
author: "Helena Sarin"
url: https://www.nvidia.com/en-us/deep-learning-ai/ai-art-gallery/artists/?artist=artist-11-helena-sarin

links:
- title: "The Mother of All Demos (Wikipedia)"
url: https://en.wikipedia.org/wiki/The_Mother_of_All_Demos
- title: "Telefunken's \"Rollkugel\""
url: http://www.oldmouse.com/mouse/misc/telefunken.shtml
- title: "Briton: 'I invented the computer mouse 20 years before the Americans' (Ralph Benjamin Article)"
author: "Jasper Copping"
url: https://www.telegraph.co.uk/technology/news/10174366/Briton-I-invented-the-computer-mouse-20-years-before-the-Americans.html
- title: "This (blank) Does Not Exist Website"
url: https://thisxdoesnotexist.com/
- title: "Generative Adversarial Networks"
author: "Ian J. Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron Courville, Yoshua Bengio"
url: https://arxiv.org/abs/1406.2661
- title: "(StyleGAN arxiv.org)"
author: "Tero Karras, Samuli Laine, Timo Aila"
url: https://arxiv.org/abs/1812.04948
- title: "StyleGAN (Papers with Code)"
author: "Tero Karras, Samuli Laine, Timo Aila"
url: https://www.paperswithcode.com/method/stylegan
- title: "Analyzing and Improving the Image Quality of StyleGAN (StyleGAN2 arxiv.org)"
author: "Tero Karras, Samuli Laine, Miika Aittala, Janne Hellsten, Jaakko Lehtinen, Timo Aila"
url: https://arxiv.org/abs/1912.04958
- title: "StyleGAN2 (Papers with Code)"
author: "Tero Karras, Samuli Laine, Miika Aittala, Janne Hellsten, Jaakko Lehtinen, Timo Aila"
url: https://paperswithcode.com/method/stylegan2
- title: "StyleGAN2 Video"
author: " Tero Karras"
video_id: c-NJtV9Jvp0
- title: "'Coded Bias' Review: When the Bots Are Racist"
author: "Devika Girish"
url: https://www.nytimes.com/2020/11/11/movies/coded-bias-review.html
- title: "Health Care AI Systems Are Biased"
author: "Amit Kaushal, Russ Altman, Curt Langlotz"
url: https://www.scientificamerican.com/article/health-care-ai-systems-are-biased/
- title: "‘Deepfakes’ are here. These deceptive videos erode trust in all news media."
author: "Cristian Vaccari and Andrew Chadwick"
url: https://www.washingtonpost.com/politics/2020/05/28/deepfakes-are-here-these-deceptive-videos-erode-trust-all-news-media/
- title: "Artificial Intelligence Has a Problem With Gender and Racial Bias. Here’s How to Solve It"
author: "Joy Buolamwini"
url: "https://time.com/5520558/artificial-intelligence-racial-gender-bias/"
- title: "Gender Shades"
author: "Joy Buolamwini and Timnit Gebru"
url: http://gendershades.org
- title: "The Algorithmic Justice League"
url: https://www.ajl.org/
- title: "What is this weird Twitter army of Amazon drones cheerfully defending warehouse work?"
author: Devin Coldewey
url: https://techcrunch.com/2018/08/23/what-is-this-weird-twitter-army-of-amazon-drones-cheerfully-defending-warehouse-work/
- title: "Twitter Post (about fake Amazon worker profile pictures)"
author: "Erik Hinton"
url: https://twitter.com/erikhinton/status/1376636650420203523
- title: "Runway ML"
url: https://runwayml.com/
- title: "The MNIST Database (Wikipedia)"
url: https://en.wikipedia.org/wiki/MNIST_database
- title: "The MNIST Database"
author: "Yann LeCun, Corinna Cortes, Christopher J.C. Burges"
url: http://yann.lecun.com/exdb/mnist/
- title: "Fashion-MNIST"
author: "Zalando Research"
url: https://github.com/zalandoresearch/fashion-mnist

variations:
- name: "MouseGAN"
url: https://github.com/CodingTrain/Computer-MouseGAN
lang: "repository"
- name: "Collect and Visualize Mouse Data"
url: https://github.com/CodingTrain/Computer-Mouse-Data
lang: "repository"
- name: "Predict Mouse Movement"
url: https://github.com/CodingTrain/Computer-Mouse-Training
lang: "repository"
- name: "A Bot for the Computer Mouse Conference"
url: https://github.com/CodingTrain/Computer-Mouse-Bot
lang: "repository"
---

This is information for a talk I'm giving at the 2021 Computer Mouse Conference!

You can view the talk at the conference! Get tickets at <a href="https://www.eventbrite.com/e/computer-mouse-conference-tickets-142771943727">https://www.eventbrite.com/e/computer-mouse-conference-tickets-142771943727</a>. A recording of the talk will also be posted on the Coding Train youtube within a week.
Binary file added assets/images/mouselearning.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/variation/repository.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 79061bb

Please sign in to comment.