-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathyoutube_videos.jl
32 lines (31 loc) · 1.34 KB
/
youtube_videos.jl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# This dictionary maps easy to remember names to Youtube video IDs
# after adding an ID here, you can use the {{youtube <shortname>}}
# syntax in your markdown files to embed the video into the page!
videos = Dict(
"course-intro" => "ZhC-DIrCe6A",
"pytorch-tensors" => "BmAS8IH7n3c",
"automatic-diff" => "Z6H3zakmn6E",
"loss-functions" => "jReGEZXq4Ac",
"optim-basics" => "UvM0hK4E2dc",
"pytorch-module" => "OiyZXdnLHcI",
"conv" => "HyotcucT-PE",
"dataloading-emb" => "vm-ZusIUkiY",
"collab-filt" => "TaEWBB00Els",
"autoencoder" => "Z1OWiTFafpQ",
"gan" => "tqhmilLuJRs",
"rnn-1" => "4G681MnP_OA",
"rnn-2" => "EsS95AxCnh0",
"privacy-preserving" => "68aCbiPIgnM",
"batches-seq" => "Fqx_RCwenfg",
"intro-julia" => "oL_T_NVoz9w",
"siamese" => "6x4IPITZ4dw",
"ben-depth" => "l-J93Onvj70",
"pbs-depth" => "cBrDJ0KHxCs",
"dropout" => "gWiJr_y0Tgs",
"batchnorm" => "cKSCyTODbDI",
"resnets" => "LdJV4oHgO28",
"graph1" => "Ch0Iz8BJn98",
"graph2" => "o1CfrsSTRAU",
"graph3" => "ZD0zwjEQhz8",
"graphinv" => "J4iYhmXLHrM"
)