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
NameError Traceback (most recent call last) in init_global_real_logits() 42 try: ---> 43 real_logits is not None 44 except NameError:
NameError: name 'real_logits' is not defined
During handling of the above exception, another exception occurred:
AssertionError Traceback (most recent call last) 2 frames in get_real_image_logits(num_images, classifier_model) 32 logits = sess.run(real_logits) 33 assert len(logits.shape) == 2 ---> 34 assert logits.shape[0] == num_images 35 return logits 36
The text was updated successfully, but these errors were encountered:
No branches or pull requests
NameError Traceback (most recent call last)
in init_global_real_logits()
42 try:
---> 43 real_logits is not None
44 except NameError:
NameError: name 'real_logits' is not defined
During handling of the above exception, another exception occurred:
AssertionError Traceback (most recent call last)
2 frames
in get_real_image_logits(num_images, classifier_model)
32 logits = sess.run(real_logits)
33 assert len(logits.shape) == 2
---> 34 assert logits.shape[0] == num_images
35 return logits
36
The text was updated successfully, but these errors were encountered: