Skip to content
This repository was archived by the owner on Jul 5, 2022. It is now read-only.

Commit 79061bb

Browse files
authored
Page for Mouse Learning Talk (#3180)
* saving progress * changing link * adding repo links * fixing alt text * vscode trying to be smart * adding more links * adding more links * fixing link
1 parent cfa3fac commit 79061bb

File tree

6 files changed

+245
-4
lines changed

6 files changed

+245
-4
lines changed

_jekyll/includes/2-base/navigation.html

+1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@
5252
<div class="submenu" id="more-submenu">
5353
<ul class="links">
5454
<!-- <li><a href="{{ '/Streams' | relative_url }}">Streams</a></li> -->
55+
<li><a href="{{ '/more/talks/mouse-learning' | relative_url }}">Mouse Learning Talk</a></li>
5556
<li><a href="{{ '/more/faq/' | relative_url }}">Frequently Asked Questions</a></li>
5657
<li><a href="{{ '/TeachableMachine' | relative_url }}">Teachable Machine</a></li>
5758
<li><a href="{{ '/more/workflow' | relative_url }}">Workflow</a></li>

_jekyll/includes/3-modules/code-variation.html

+11-4
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,18 @@
3232
{% endunless %}
3333
{% endif %}
3434

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

38-
{% assign downloadFrom = include.downloadURL | append: '/' | append: include.variation.folder %}
39-
<li><a href="{{ downloadFrom }}" target="_blank" aria-label="Download {{ include.variation.lang }} Code">Download Code</a></li>
39+
40+
{% assign downloadFrom = include.downloadURL | append: '/' | append: include.variation.folder %}
41+
<li><a href="{{ downloadFrom }}" target="_blank" aria-label="Download {{ include.variation.lang }} Code">Download Code</a></li>
42+
{% else %}
43+
44+
<li><a href="{{ variation.url }}" target="_blank" aria-label="View {{ include.variation.lang }} Code">View Repository</a></li>
45+
46+
{% endif %}
4047

4148
</ul>
4249

_jekyll/layouts/talk.html

+110
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
1+
---
2+
layout: base
3+
---
4+
5+
6+
<div class="video">
7+
8+
{% comment %} Video subtitle. {% endcomment %}
9+
<div class="subtitle">
10+
{{ course.title | default: series.title }}
11+
</div>
12+
13+
<div>
14+
<img style="max-width: 100%" src={{page.img_path}} alt="{{page.img_alt}}">
15+
</div>
16+
17+
<div class="add-bars">
18+
<p>
19+
{{ content }}
20+
</p>
21+
</div>
22+
23+
<!-- <div class="player-and-topics">
24+
<div class="player">
25+
26+
{% comment %} Include YouTube video player. {% endcomment %}
27+
{% include 3-modules/video-player.html video_id=page.video_id %}
28+
29+
{% comment %} Previous/Next buttons and 'Watch all' button. {% endcomment %}
30+
<div class="player-controls">
31+
<a href="{{ out_previousVideo.url | relative_url | default: '#' }}" class="jump-control {% if out_previousVideo == null %}disabled{% endif %}" aria-label="Previous video">❰</a>
32+
<a href="{{ series.url | default: page.collection | relative_url }}" class="watch-all-videos">Watch all videos</a>
33+
<a href="{{ out_nextVideo.url | relative_url | default: '#' }}" class="jump-control {% if out_nextVideo == null %}disabled{% endif %}" aria-label="Next video">❱</a>
34+
</div>
35+
</div>
36+
37+
<div class="topics">
38+
{{ content }}
39+
40+
{% comment %} Show video topics (used for streams). {% endcomment %}
41+
{% if page.topics %}
42+
{% include 3-modules/link-list.html links=page.topics title='Topics' class='topics' %}
43+
{% endif %}
44+
45+
</div>
46+
</div> -->
47+
48+
<div class="code-actions">
49+
50+
{% comment %} Ask for code variations {% endcomment %}
51+
{% assign repositoryBasePath = '' %}
52+
<!-- {% assign repositoryBasePath = '/' | append: page.collection | append: '/' | append: page.repository %}
53+
{% assign repositoryBaseURL = site.github.repository_url | append: '/tree/' | append: site.github.source.branch | append: repositoryBasePath %} -->
54+
55+
{% comment %} If page has defined it's own variations create pageVariations for code variation tool. {% endcomment %}
56+
{% if page.variations != null %}
57+
{% assign pageVariations = page.variations %}
58+
{% else %}
59+
{% assign pageVariations = null %}
60+
{% endif %}
61+
62+
{% assign codeVariations = pageVariations %}
63+
{% assign numberOfVariations = codeVariations | size %}
64+
65+
{% assign downloadBaseURL = site.github_download_prefix | append: repositoryBaseURL %}
66+
67+
{% for variation in codeVariations %}
68+
{% include 3-modules/code-variation.html baseURL=repositoryBaseURL downloadURL=downloadBaseURL variation=variation %}
69+
{% endfor %}
70+
71+
</div>
72+
73+
<div class="links-and-books">
74+
75+
{% comment %} List of related parts. {% endcomment %}
76+
{% if page.parts %}
77+
{% capture partsTitle %}Other parts of this {{ page.video_type | downcase }}{% endcapture %}
78+
{% include 3-modules/link-list.html links=page.parts title=partsTitle %}
79+
{% endif %}
80+
81+
{% comment %} Links of discussed books/articles/papers. {% endcomment %}
82+
{% if page.books %}
83+
{% include 3-modules/link-list.html links=page.books title='Artists' %}
84+
{% endif %}
85+
86+
{% comment %} List of discussed links. {% endcomment %}
87+
{% if page.links %}
88+
{% capture linksTitle %}Publications and Websites{% endcapture %}
89+
{% include 3-modules/link-list.html links=page.links title=linksTitle %}
90+
{% endif %}
91+
92+
{% comment %} Links of discussed videos. {% endcomment %}
93+
{% if page.videos %}
94+
{% capture videosTitle %}Videos discussed in this {{ page.video_type | downcase }}{% endcapture %}
95+
{% include 3-modules/link-list.html links=page.videos title=videosTitle %}
96+
{% endif %}
97+
98+
{% comment %} Links of discussed tools. {% endcomment %}
99+
{% if page.tools %}
100+
{% capture toolsTitle %}Tools discussed in this {{ page.video_type | downcase }}{% endcapture %}
101+
{% include 3-modules/link-list.html links=page.tools title=toolsTitle %}
102+
{% endif %}
103+
104+
{% comment %} Custom link lists. {% endcomment %}
105+
{% for section in page.custom_sections %}
106+
{% include 3-modules/link-list.html links=section.items title=section.title class=section.class %}
107+
{% endfor %}
108+
</div>
109+
110+
</div>

_more/talks/mouse-learning.md

+123
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,123 @@
1+
---
2+
layout: talk
3+
title: "Mouse Learning - 2021 Computer Mouse Conference"
4+
date: 2021-04-29
5+
redirect_from:
6+
- /mouse-learning
7+
- /mouselearning
8+
9+
img_path: "/assets/images/mouselearning.png"
10+
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'."
11+
12+
books:
13+
- title: "Wekinator"
14+
author: "Dr. Rebecca Fiebrink"
15+
url: http://www.wekinator.org
16+
- title: "Selected Works"
17+
author: "Dr. Nettrice R. Gaskins"
18+
url: https://www.nettricegaskins.com/gallery
19+
- title: "Ambigrammatic Figures"
20+
author: "Golan Levin with Lingdong Huang"
21+
url: https://github.com/golanlevin/AmbigrammaticFigures
22+
- title: "Can I Go Where You Go?"
23+
author: "Maya Man"
24+
url: https://mayaontheinter.net/canigo/
25+
- title: "KIKK Festival 2018"
26+
author: "Kyle McDonald"
27+
url: https://vimeo.com/304110435
28+
- title: "Do Not Touch"
29+
author: "Studio Moniker"
30+
url: https://studiomoniker.com/projects/do-not-touch
31+
- title: "This Foot Does Not Exist"
32+
author: "MSCHF"
33+
url: https://thisfootdoesnotexist.com/
34+
- title: "Mosaic Virus"
35+
author: "Anna Ridler"
36+
url: https://annaridler.com/mosaic-virus
37+
- title: "Nails"
38+
author: "Char Stiles"
39+
url: https://nails.glitch.me/
40+
- title: "Leaves of Manifold"
41+
author: "Helena Sarin"
42+
url: https://www.nvidia.com/en-us/deep-learning-ai/ai-art-gallery/artists/?artist=artist-11-helena-sarin
43+
44+
links:
45+
- title: "The Mother of All Demos (Wikipedia)"
46+
url: https://en.wikipedia.org/wiki/The_Mother_of_All_Demos
47+
- title: "Telefunken's \"Rollkugel\""
48+
url: http://www.oldmouse.com/mouse/misc/telefunken.shtml
49+
- title: "Briton: 'I invented the computer mouse 20 years before the Americans' (Ralph Benjamin Article)"
50+
author: "Jasper Copping"
51+
url: https://www.telegraph.co.uk/technology/news/10174366/Briton-I-invented-the-computer-mouse-20-years-before-the-Americans.html
52+
- title: "This (blank) Does Not Exist Website"
53+
url: https://thisxdoesnotexist.com/
54+
- title: "Generative Adversarial Networks"
55+
author: "Ian J. Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron Courville, Yoshua Bengio"
56+
url: https://arxiv.org/abs/1406.2661
57+
- title: "(StyleGAN arxiv.org)"
58+
author: "Tero Karras, Samuli Laine, Timo Aila"
59+
url: https://arxiv.org/abs/1812.04948
60+
- title: "StyleGAN (Papers with Code)"
61+
author: "Tero Karras, Samuli Laine, Timo Aila"
62+
url: https://www.paperswithcode.com/method/stylegan
63+
- title: "Analyzing and Improving the Image Quality of StyleGAN (StyleGAN2 arxiv.org)"
64+
author: "Tero Karras, Samuli Laine, Miika Aittala, Janne Hellsten, Jaakko Lehtinen, Timo Aila"
65+
url: https://arxiv.org/abs/1912.04958
66+
- title: "StyleGAN2 (Papers with Code)"
67+
author: "Tero Karras, Samuli Laine, Miika Aittala, Janne Hellsten, Jaakko Lehtinen, Timo Aila"
68+
url: https://paperswithcode.com/method/stylegan2
69+
- title: "StyleGAN2 Video"
70+
author: " Tero Karras"
71+
video_id: c-NJtV9Jvp0
72+
- title: "'Coded Bias' Review: When the Bots Are Racist"
73+
author: "Devika Girish"
74+
url: https://www.nytimes.com/2020/11/11/movies/coded-bias-review.html
75+
- title: "Health Care AI Systems Are Biased"
76+
author: "Amit Kaushal, Russ Altman, Curt Langlotz"
77+
url: https://www.scientificamerican.com/article/health-care-ai-systems-are-biased/
78+
- title: "‘Deepfakes’ are here. These deceptive videos erode trust in all news media."
79+
author: "Cristian Vaccari and Andrew Chadwick"
80+
url: https://www.washingtonpost.com/politics/2020/05/28/deepfakes-are-here-these-deceptive-videos-erode-trust-all-news-media/
81+
- title: "Artificial Intelligence Has a Problem With Gender and Racial Bias. Here’s How to Solve It"
82+
author: "Joy Buolamwini"
83+
url: "https://time.com/5520558/artificial-intelligence-racial-gender-bias/"
84+
- title: "Gender Shades"
85+
author: "Joy Buolamwini and Timnit Gebru"
86+
url: http://gendershades.org
87+
- title: "The Algorithmic Justice League"
88+
url: https://www.ajl.org/
89+
- title: "What is this weird Twitter army of Amazon drones cheerfully defending warehouse work?"
90+
author: Devin Coldewey
91+
url: https://techcrunch.com/2018/08/23/what-is-this-weird-twitter-army-of-amazon-drones-cheerfully-defending-warehouse-work/
92+
- title: "Twitter Post (about fake Amazon worker profile pictures)"
93+
author: "Erik Hinton"
94+
url: https://twitter.com/erikhinton/status/1376636650420203523
95+
- title: "Runway ML"
96+
url: https://runwayml.com/
97+
- title: "The MNIST Database (Wikipedia)"
98+
url: https://en.wikipedia.org/wiki/MNIST_database
99+
- title: "The MNIST Database"
100+
author: "Yann LeCun, Corinna Cortes, Christopher J.C. Burges"
101+
url: http://yann.lecun.com/exdb/mnist/
102+
- title: "Fashion-MNIST"
103+
author: "Zalando Research"
104+
url: https://github.com/zalandoresearch/fashion-mnist
105+
106+
variations:
107+
- name: "MouseGAN"
108+
url: https://github.com/CodingTrain/Computer-MouseGAN
109+
lang: "repository"
110+
- name: "Collect and Visualize Mouse Data"
111+
url: https://github.com/CodingTrain/Computer-Mouse-Data
112+
lang: "repository"
113+
- name: "Predict Mouse Movement"
114+
url: https://github.com/CodingTrain/Computer-Mouse-Training
115+
lang: "repository"
116+
- name: "A Bot for the Computer Mouse Conference"
117+
url: https://github.com/CodingTrain/Computer-Mouse-Bot
118+
lang: "repository"
119+
---
120+
121+
This is information for a talk I'm giving at the 2021 Computer Mouse Conference!
122+
123+
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.

assets/images/mouselearning.png

4.45 MB
Loading
4.12 KB
Loading

0 commit comments

Comments
 (0)