Skip to content

Commit 655d428

Browse files
committed
update links and track pages
1 parent 7d5efe9 commit 655d428

File tree

8 files changed

+29
-12
lines changed

8 files changed

+29
-12
lines changed

β€Žcontent/tracks/index.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
"transformations-in-p5",
2828
"games",
2929
"web-sockets-and-p5js",
30-
"webgl"
30+
"webgl",
31+
"archive"
3132
]
3233
}

β€Žcontent/tracks/main-tracks/ml5js-beginners-guide/index.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@
1111
{
1212
"title": "Classification",
1313
"videos": [
14-
"ml5/1-classification/1-image-classification",
15-
"ml5/1-classification/2-webcam-classification",
14+
"ml5/1-classification/image-classification",
1615
"ml5/1-classification/3-object-detection",
1716
"ml5/9-doodleNet/1-doodleNet"
1817
]
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"title": "Archived Videos",
3+
"description": "Folder for archived videos",
4+
"videos": ["archive/1-image-classification", "archive/2-webcam-classification"]
5+
}

β€Žcontent/videos/archive/1-image-classification/index.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"title": "Image Classification with MobileNet",
3-
"description": "In this video, I use the \"pre-trained\" MobileNet model to classify the content of an image.",
3+
"description": "This video covers the Image Classifier in ml5.js v0.12.2 which has now been deprecated. There is a new version of the video in the Beginner's Guide to Machine Learning in JavaScript track.",
44
"videoNumber": "1.1",
55
"videoId": "yNkAuWz5lnY",
66
"date": "2018-08-01",
@@ -53,6 +53,12 @@
5353
{
5454
"title": "Videos",
5555
"links": [
56+
{
57+
"icon": "πŸ’»",
58+
"title": "Image Classification",
59+
"url": "/tracks/ml5js-beginners-guide/ml5/1-classification/image-classification",
60+
"description": "New video about image classification with updated syntax."
61+
},
5662
{
5763
"icon": "πŸš‚",
5864
"title": "Workflow",

β€Žcontent/videos/archive/2-webcam-classification/index.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"title": "Webcam Image Classification",
3-
"description": "In this video, I discuss image classification with MobileNet using real-time video.",
3+
"description": "This video covers image classifier with MobileNet using real-time video in ml5.js v0.12.2 which has now been deprecated. There is a new version of the video in the Beginner's Guide to Machine Learning in JavaScript track.",
44
"videoNumber": "1.2",
55
"videoId": "D9BoBSkLvFo",
66
"date": "2018-08-02",
@@ -28,6 +28,12 @@
2828
{
2929
"title": "References",
3030
"links": [
31+
{
32+
"icon": "πŸ’»",
33+
"title": "Image Classification",
34+
"url": "/tracks/ml5js-beginners-guide/ml5/1-classification/image-classification",
35+
"description": "New video about image classification with updated syntax."
36+
},
3137
{
3238
"icon": "πŸ’»",
3339
"title": "ml5.js",

β€Žcontent/videos/ml5/1-classification/image-classification/index.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,31 +18,31 @@
1818
{
1919
"title": "Image Classification",
2020
"description": "Simple image classification using MobileNet.",
21-
"image": "images/simple.png",
21+
"image": "simple.png",
2222
"urls": { "p5": "https://editor.p5js.org/codingtrain/sketches/A2W-0ayI5" }
2323
},
2424
{
2525
"title": "Image Classification with Webcam",
2626
"description": "Continuous image classification with webcam feed.",
27-
"image": "images/webcam.png",
27+
"image": "webcam.png",
2828
"urls": { "p5": "https://editor.p5js.org/codingtrain/sketches/r9LjJqaw6" }
2929
},
3030
{
3131
"title": "Image Classification - Drag and Drop",
3232
"description": "Drag and drop an image in the canvas to classify it.",
33-
"image": "images/drag.png",
33+
"image": "drag.png",
3434
"urls": { "p5": "https://editor.p5js.org/codingtrain/sketches/v1sAlvSHR" }
3535
},
3636
{
3737
"title": "Image Classification - Display label and confidence",
3838
"description": "Displays the label and confidence of the classification.",
39-
"image": "images/conf.png",
39+
"image": "conf.png",
4040
"urls": { "p5": "https://editor.p5js.org/codingtrain/sketches/7zA6_MlIo" }
4141
},
4242
{
4343
"title": "Image Classification - Tint",
4444
"description": "Tints the image with a color based on the confidence.",
45-
"image": "images/tint.png",
45+
"image": "tint.png",
4646
"urls": { "p5": "https://editor.p5js.org/codingtrain/sketches/uHN5htRpC" }
4747
}
4848
],

β€Žcontent/videos/ml5/8-convolutional-neural-network/1-pixels-as-input/index.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
{
9696
"icon": "πŸš‚",
9797
"title": "Image Classification with MobileNet",
98-
"url": "/tracks/ml5js-beginners-guide/ml5/1-classification/1-image-classification",
98+
"url": "/tracks/ml5js-beginners-guide/ml5/1-classification/image-classification",
9999
"description": "In this video, I use the \"pre-trained\" MobileNet model to classify the content of an image."
100100
},
101101
{

β€Žcontent/videos/ml5/8-convolutional-neural-network/2-architecture-of-cnn/index.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
{
7878
"icon": "πŸš‚",
7979
"title": "Image Classification with MobileNet",
80-
"url": "/tracks/ml5js-beginners-guide/ml5/1-classification/1-image-classification",
80+
"url": "/tracks/ml5js-beginners-guide/ml5/1-classification/image-classification",
8181
"description": "In this video, I use the \"pre-trained\" MobileNet model to classify the content of an image."
8282
},
8383
{

0 commit comments

Comments
Β (0)