You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -55,9 +55,9 @@ If for some reason you choose not to use Anaconda, you must install the followin
55
55
5. Once you are comfortable with performance on the training dataset, see how it performs in live simulation!
56
56
57
57
## Collecting Training Data ##
58
-
A simple training dataset has been provided above in this repository. This dataset will allow you to verify that you're segmentation network is semi-functional. However, if you're interested in improving your score,you may be interested in collecting additional training data. To do, please see the following steps.
58
+
A simple training dataset has been provided in this project's repository. This dataset will allow you to verify that your segmentation network is semi-functional. However, if your interested in improving your score,you may want to collect additional training data. To do it, please see the following steps.
59
59
60
-
The data directory is organized as follows:
60
+
The data directory is organized as follows:
61
61
```
62
62
data/runs - contains the results of prediction runs
63
63
data/train/images - contains images for the training set
Copy file name to clipboardExpand all lines: code/model_training.ipynb
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -122,18 +122,18 @@
122
122
"metadata": {},
123
123
"source": [
124
124
"## Build the Model <a id='build'></a>\n",
125
-
"In the following cells, you will build an FCN to train a model to detect the hero target and location within an image. The steps are:\n",
125
+
"In the following cells, you will build an FCN to train a model to detect and locate the hero target within an image. The steps are:\n",
126
126
"- Create an `encoder_block`\n",
127
127
"- Create a `decoder_block`\n",
128
-
"- Build the FCN consiting of encoder block(s), a 1x1 convolution, and decoder block(s). This step requires experimentation with different numbers of layers and filter sizes to build your model."
128
+
"- Build the FCN consisting of encoder block(s), a 1x1 convolution, and decoder block(s). This step requires experimentation with different numbers of layers and filter sizes to build your model."
129
129
]
130
130
},
131
131
{
132
132
"cell_type": "markdown",
133
133
"metadata": {},
134
134
"source": [
135
135
"### Encoder Block\n",
136
-
"Create an encoder block that includes a separable convolution layer using the separable_conv2d_batchnorm() function. The `filters` parameter defines the size or depth of the output layer. For example, 32 or 64. "
136
+
"Create an encoder block that includes a separable convolution layer using the `separable_conv2d_batchnorm()` function. The `filters` parameter defines the size or depth of the output layer. For example, 32 or 64. "
137
137
]
138
138
},
139
139
{
@@ -156,7 +156,7 @@
156
156
"metadata": {},
157
157
"source": [
158
158
"### Decoder Block\n",
159
-
"The decoder block, as covered in the Classroom, comprises of three steps:\n",
159
+
"The decoder block is comprised of three parts:\n",
160
160
"- A bilinear upsampling layer using the upsample_bilinear() function. The current recommended factor for upsampling is set to 2.\n",
161
161
"- A layer concatenation step. This step is similar to skip connections. You will concatenate the upsampled small_ip_layer and the large_ip_layer.\n",
162
162
"- Some (one or two) additional separable convolution layers to extract some more spatial information from prior layers."
0 commit comments