-
Notifications
You must be signed in to change notification settings - Fork 624
Open
Description
In the verify graded function under the Facial Recognition assignment notebook of the CNNs course, one of the graded code fields in not filled in:
if None:
print("It's " + str(identity) + ", welcome home!")
door_open = True
else:
print("It's not " + str(identity) + ", please go away")
door_open = FalseThe None should be replaced with
if dist<0.7
print("It's " + str(identity) + ", welcome home!")
door_open = True
else:
print("It's not " + str(identity) + ", please go away")
door_open = False```Metadata
Metadata
Assignees
Labels
No labels