We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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:
verify
if None: print("It's " + str(identity) + ", welcome home!") door_open = True else: print("It's not " + str(identity) + ", please go away") door_open = False
The 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```
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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:The None should be replaced with
The text was updated successfully, but these errors were encountered: