|
1 | | -title: Introduction to TensorFlow |
2 | | -tagline: Learn the basics of TensorFlow (machine learning with python) |
3 | | -description: Machine Learning (ML)/Neural Network (NN) tools have recently made a huge splash with applications in data analysis, image classification, and data generation. Here we will use the Fashion MNIST dataset to classify images of clothing. |
| 1 | +title: TensorFlow Image Processing |
| 2 | +tagline: Learn the basics of image-based TensorFlow machine learning with Python |
| 3 | +description: Get started with Machine Learning (ML)/Neural Network (NN) tools |
4 | 4 | tags: |
5 | 5 | - TensorFlow |
6 | 6 | - Python |
7 | 7 | - Machine learning |
8 | 8 | - Neural network |
9 | | - |
10 | 9 | template: |
11 | 10 | name: TensorFlow Course |
12 | 11 | repo: tensorFlow-course-template |
13 | 12 | before: |
14 | 13 | - type: createIssue |
15 | 14 | title: Introduction |
16 | 15 | body: 01-intro.md |
17 | | - |
18 | 16 | steps: |
19 | 17 | - title: Introduction |
20 | 18 | description: Introduction to Machine Learning |
21 | 19 | event: issue_comment |
22 | | - link: "{{ repoUrl }}/issues/1" |
| 20 | + link: '{{ repoUrl }}/issues/1' |
23 | 21 | actions: |
24 | 22 | - type: gate |
25 | 23 | left: '%payload.comment.body%' |
26 | 24 | operator: == |
27 | 25 | right: 'TRUE' |
28 | | - else: |
| 26 | + else: |
29 | 27 | - type: respond |
30 | 28 | with: incorrect.md |
31 | 29 | issue: 1 |
32 | | - data: |
| 30 | + data: |
33 | 31 | commentBody: '%payload.comment.body%' |
34 | 32 | correctAnswer: 'TRUE' |
35 | 33 | - type: respond |
36 | 34 | with: 01-install.md |
37 | 35 | issue: 1 |
38 | | - |
39 | 36 | - title: Install and Setup |
40 | 37 | description: Install and setup environment |
41 | 38 | event: issues.closed |
42 | | - link: "{{ repoUrl }}/issues/1" |
| 39 | + link: '{{ repoUrl }}/issues/1' |
43 | 40 | actions: |
44 | 41 | - type: createIssue |
45 | 42 | title: Import Packages |
46 | 43 | body: 02-import.md |
47 | 44 | - type: respond |
48 | 45 | with: 01-complete.md |
49 | 46 | issue: 1 |
50 | | - |
51 | 47 | - title: Using Pip |
52 | 48 | description: Use Pip to Import machine learning packages in the command line |
53 | 49 | event: issue_comment |
54 | | - link: "{{ repoUrl }}/issues/2" |
| 50 | + link: '{{ repoUrl }}/issues/2' |
55 | 51 | actions: |
56 | 52 | - type: gate |
57 | 53 | left: '%payload.comment.body%' |
58 | 54 | operator: == |
59 | 55 | right: B |
60 | | - else: |
| 56 | + else: |
61 | 57 | - type: respond |
62 | 58 | with: incorrect.md |
63 | 59 | issue: 2 |
64 | | - data: |
| 60 | + data: |
65 | 61 | commentBody: '%payload.comment.body%' |
66 | 62 | correctAnswer: B |
67 | 63 | - type: respond |
68 | 64 | with: 02-packages.md |
69 | 65 | issue: 2 |
70 | | - |
71 | 66 | - title: Importing Pip Packages |
72 | | - description: import Numpy, MatPlotLib, and TensorFlow libraries |
| 67 | + description: 'import Numpy, MatPlotLib, and TensorFlow libraries' |
73 | 68 | event: issue_comment |
74 | | - link: "{{ repoUrl }}/issues/2" |
| 69 | + link: '{{ repoUrl }}/issues/2' |
75 | 70 | actions: |
76 | 71 | - type: respond |
77 | 72 | with: 02-test-image.md |
78 | 73 | issue: 2 |
79 | | - |
80 | 74 | - title: Testing image data |
81 | 75 | description: Test our libraries by displaying an image |
82 | 76 | event: issues.closed |
83 | | - link: "{{ repoUrl }}/issues/2" |
| 77 | + link: '{{ repoUrl }}/issues/2' |
84 | 78 | actions: |
85 | 79 | - type: createIssue |
86 | 80 | title: MakeModel |
87 | 81 | body: 03-preprocess.md |
88 | 82 | - type: respond |
89 | 83 | with: 02-complete.md |
90 | 84 | issue: 2 |
91 | | - |
92 | 85 | - title: Preprocess dataset |
93 | 86 | description: Prepare dataset for machine learning |
94 | 87 | event: issue_comment |
95 | | - link: "{{ repoUrl }}/issues/3" |
| 88 | + link: '{{ repoUrl }}/issues/3' |
96 | 89 | actions: |
97 | 90 | - type: gate |
98 | 91 | left: '%payload.comment.body%' |
99 | 92 | operator: == |
100 | 93 | right: 'FALSE' |
101 | | - else: |
| 94 | + else: |
102 | 95 | - type: respond |
103 | 96 | with: incorrect.md |
104 | 97 | issue: 3 |
105 | | - data: |
| 98 | + data: |
106 | 99 | commentBody: '%payload.comment.body%' |
107 | 100 | correctAnswer: 'FALSE' |
108 | 101 | - type: respond |
109 | 102 | with: 03-model.md |
110 | 103 | issue: 3 |
111 | | - |
112 | 104 | - title: Model Generation |
113 | 105 | description: Prepare dataset for machine learning |
114 | 106 | event: issue_comment |
115 | | - link: "{{ repoUrl }}/issues/3" |
| 107 | + link: '{{ repoUrl }}/issues/3' |
116 | 108 | actions: |
117 | 109 | - type: gate |
118 | 110 | left: '%payload.comment.body%' |
119 | 111 | operator: == |
120 | 112 | right: 'TRUE' |
121 | | - else: |
| 113 | + else: |
122 | 114 | - type: respond |
123 | 115 | with: incorrect.md |
124 | 116 | issue: 3 |
125 | | - data: |
| 117 | + data: |
126 | 118 | commentBody: '%payload.comment.body%' |
127 | 119 | correctAnswer: 'TRUE' |
128 | 120 | - type: respond |
129 | 121 | with: 03-train.md |
130 | 122 | issue: 3 |
131 | | - |
132 | 123 | - title: Training Model |
133 | 124 | description: Train our model to recognize articles of clothing |
134 | 125 | event: issue_comment |
135 | | - link: "{{ repoUrl }}/issues/3" |
| 126 | + link: '{{ repoUrl }}/issues/3' |
136 | 127 | actions: |
137 | 128 | - type: gate |
138 | 129 | left: '%payload.comment.body%' |
139 | 130 | operator: == |
140 | 131 | right: 2 |
141 | | - else: |
| 132 | + else: |
142 | 133 | - type: respond |
143 | 134 | with: incorrect.md |
144 | 135 | issue: 3 |
145 | | - data: |
| 136 | + data: |
146 | 137 | commentBody: '%payload.comment.body%' |
147 | 138 | correctAnswer: 2 |
148 | 139 | - type: respond |
149 | 140 | with: 03-eval.md |
150 | 141 | issue: 3 |
151 | | - |
152 | 142 | - title: Evaluating Model |
153 | 143 | description: Train our model to recognize articles of clothing |
154 | 144 | event: issue_comment |
155 | | - link: "{{ repoUrl }}/issues/3" |
| 145 | + link: '{{ repoUrl }}/issues/3' |
156 | 146 | actions: |
157 | 147 | - type: gate |
158 | 148 | left: '%payload.comment.body%' |
159 | 149 | operator: == |
160 | 150 | right: C |
161 | | - else: |
| 151 | + else: |
162 | 152 | - type: respond |
163 | 153 | with: incorrect.md |
164 | 154 | issue: 3 |
165 | | - data: |
| 155 | + data: |
166 | 156 | commentBody: '%payload.comment.body%' |
167 | 157 | correctAnswer: C |
168 | 158 | - type: respond |
|
0 commit comments