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
Hi,
Yet, in train(), you call:
feed_dict[x], feed_dict[x_w] = training_data.next_batch(batch_size, whitened=False)
(my line numbers no longer correspond to yours). Note that in UnlabelledDataSet, the last few lines are:
if whitened: return self.images[start:end], self._whitened_images[start:end] else: return self._images[start:end], self.images[start:end]
whitened is false, and self.images is not defined. Why does this work? Thanks.
The text was updated successfully, but these errors were encountered:
Sorry about that, this is messy and needs refactoring - it's actually calling the @property self.images, which is actually just defined as self._images
@property
self.images
self._images
Sorry, something went wrong.
No branches or pull requests
Hi,
Yet, in train(), you call:
(my line numbers no longer correspond to yours). Note that in UnlabelledDataSet, the last few lines are:
whitened is false, and self.images is not defined. Why does this work? Thanks.
The text was updated successfully, but these errors were encountered: