Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4e0445c

Browse files
committed
update gitignore and title
1 parent 4175b02 commit 4e0445c

File tree

2 files changed

+14
-18
lines changed

2 files changed

+14
-18
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,3 +90,5 @@ ENV/
9090

9191
# PyCharm
9292
.idea/
93+
94+
samples/outreach/blogs/segmentation_blogpost/carvana-image-masking-challenge/

samples/outreach/blogs/segmentation_blogpost/5_Image_Segmentation.ipynb renamed to samples/outreach/blogs/segmentation_blogpost/Image Segmentation Blog Post.ipynb

Lines changed: 12 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,9 @@
5151
"**Audience:** This post is geared towards intermediate users who are comfortable with basic machine learning concepts.\n",
5252
"Note that if you wish to run this notebook, it is highly recommended that you do so with a GPU. \n",
5353
"\n",
54-
"**Time Estimated**: 60 min\n"
54+
"**Time Estimated**: 60 min\n",
55+
"\n",
56+
"By: Raymond Yuan, Software Engineering Intern"
5557
]
5658
},
5759
{
@@ -156,6 +158,15 @@
156158
"Caution, large download ahead - downloading all files will require 14GB of diskspace. "
157159
]
158160
},
161+
{
162+
"cell_type": "code",
163+
"execution_count": null,
164+
"metadata": {},
165+
"outputs": [],
166+
"source": [
167+
"competition_name = 'carvana-image-masking-challenge'"
168+
]
169+
},
159170
{
160171
"cell_type": "code",
161172
"execution_count": null,
@@ -174,7 +185,6 @@
174185
" load_data_from_zip(competition, 'train_masks.zip')\n",
175186
" load_data_from_zip(competition, 'train_masks.csv.zip')\n",
176187
" \n",
177-
"competition_name = 'carvana-image-masking-challenge'\n",
178188
"get_data(competition_name)"
179189
]
180190
},
@@ -1490,22 +1500,6 @@
14901500
"* **Custom Losses and Metrics** - We implemented custom metrics that allow us to see exactly what we need during training time. In addition, we wrote a custom loss function that is specifically suited to our task. \n",
14911501
"* **Save and load our model** - We saved our best model that we encountered according to our specified metric. When we wanted to perform inference with out best model, we loaded it from disk. Note that saving the model capture more than just the weights of the model: by default, it saves the model architecture, weights, as well as information about the training process such as the state of the optimizer, etc. "
14921502
]
1493-
},
1494-
{
1495-
"cell_type": "code",
1496-
"execution_count": null,
1497-
"metadata": {
1498-
"colab": {
1499-
"autoexec": {
1500-
"startup": false,
1501-
"wait_interval": 0
1502-
}
1503-
},
1504-
"colab_type": "code",
1505-
"id": "ZnewDc0uc21r"
1506-
},
1507-
"outputs": [],
1508-
"source": []
15091503
}
15101504
],
15111505
"metadata": {

0 commit comments

Comments
 (0)