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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
In gan.py line 401, data_ids = np.random.choice(train_size, opts['batch_size'], replace=False, p=self._data_weights) Why use replace=False here?
The text was updated successfully, but these errors were encountered:
Well, I guess sampling minibatches with and without replacements are both common approaches. Here we used without replacements.
Sorry, something went wrong.
No branches or pull requests
In gan.py line 401,
data_ids = np.random.choice(train_size, opts['batch_size'],
replace=False, p=self._data_weights)
Why use replace=False here?
The text was updated successfully, but these errors were encountered: