Skip to content

Commit 8d6414a

Browse files
author
cfav-dev
committed
dev(C3W2 ugl3 and assignment): remove note about fallback
1 parent 39e4845 commit 8d6414a

File tree

2 files changed

+8
-49
lines changed

2 files changed

+8
-49
lines changed

Course 3 - Advance Computer Vision/W2/assignment/C3W2_Assignment.ipynb

+4-29
Original file line numberDiff line numberDiff line change
@@ -50,33 +50,6 @@
5050
"## Installation"
5151
]
5252
},
53-
{
54-
"cell_type": "markdown",
55-
"source": [
56-
"**Use the Fallback Runtime**\n",
57-
"\n",
58-
"*The autograder for this lab uses files generated from a previous Colab runtime. While our team updates it, please use the fallback runtime to ensure your submission is evaluated correctly and you can install the required packages. Otherwise, you might get an error after submitting or you might not be able to run some cells in this notebook. [Please follow the instructions here to use the fallback](https://community.deeplearning.ai/t/tf-at-using-the-fallback-runtime/530596). The test below will check if Colab is using the expected runtime.*"
59-
],
60-
"metadata": {
61-
"id": "lTVUSW_3mxbH"
62-
}
63-
},
64-
{
65-
"cell_type": "code",
66-
"source": [
67-
"import sys\n",
68-
"\n",
69-
"EXPECTED = 10\n",
70-
"CURRENT = sys.version_info[1]\n",
71-
"\n",
72-
"assert CURRENT == EXPECTED, \"Please use the Fallback runtime as mentioned above\""
73-
],
74-
"metadata": {
75-
"id": "XKEs7vzqmyDh"
76-
},
77-
"execution_count": null,
78-
"outputs": []
79-
},
8053
{
8154
"cell_type": "markdown",
8255
"metadata": {
@@ -2467,7 +2440,9 @@
24672440
"source": [
24682441
"## Run the training loop\n",
24692442
"\n",
2470-
"Run the training loop using the training step function that you just defined."
2443+
"Run the training loop using the training step function that you just defined.\n",
2444+
"\n",
2445+
"**Note:** *This lab is optimized for a previous Colab runtime. This is no longer supported so the lab will have to use CPU (instead of GPU) for model training. It will take around 25 minutes to complete the training loop.*"
24712446
]
24722447
},
24732448
{
@@ -2934,4 +2909,4 @@
29342909
},
29352910
"nbformat": 4,
29362911
"nbformat_minor": 0
2937-
}
2912+
}

Course 3 - Advance Computer Vision/W2/ungraded_labs/C3_W2_Lab_3_Interactive_Eager_Few_Shot_OD.ipynb

+4-20
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@
2020
"Welcome to the Eager Few Shot Object Detection Colab --- in this colab we demonstrate fine tuning of a (TF2 friendly) RetinaNet architecture on very few examples of a novel class after initializing from a pre-trained COCO checkpoint.\n",
2121
"Training runs in eager mode.\n",
2222
"\n",
23-
"Estimated time to run through this colab (with GPU): < 5 minutes."
23+
"Estimated time to run through this colab \n",
24+
"* with GPU: < 5 minutes.\n",
25+
"* with CPU: 25 minutes."
2426
]
2527
},
2628
{
@@ -29,25 +31,7 @@
2931
"id": "4CDcwoBxk5ua"
3032
},
3133
"source": [
32-
"**Use the Fallback Runtime**\n",
33-
"\n",
34-
"*This lab is optimized for a previous Colab runtime. [Please follow the instructions here to use the fallback](https://community.deeplearning.ai/t/tf-at-using-the-fallback-runtime/530596). This will ensure that you can use the GPU and run the entire notebook successfully. The test below will check if Colab is using the expected runtime.*"
35-
]
36-
},
37-
{
38-
"cell_type": "code",
39-
"execution_count": null,
40-
"metadata": {
41-
"id": "nK2hoFfAk6Hh"
42-
},
43-
"outputs": [],
44-
"source": [
45-
"import sys\n",
46-
"\n",
47-
"EXPECTED = 10\n",
48-
"CURRENT = sys.version_info[1]\n",
49-
"\n",
50-
"assert CURRENT == EXPECTED, \"Please use the Fallback runtime as mentioned above\""
34+
"**Note**: *This lab is optimized for a previous Colab runtime. This is no longer supported so the lab will have to use CPU for training.*"
5135
]
5236
},
5337
{

0 commit comments

Comments
 (0)