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 active_training.py line 167 ~ 169: noise = np.round( np.random.normal(mu, sigma, X_Pool_subset.shape) ) aug_X_Pool_subset = X_Pool_subset + noise np.clip(aug_X_Pool_subset, 0, 255)
noise = np.round( np.random.normal(mu, sigma, X_Pool_subset.shape) ) aug_X_Pool_subset = X_Pool_subset + noise np.clip(aug_X_Pool_subset, 0, 255)
but in line 172: curr_sample = [MC_output([X_Pool_subset, learning_phase])[0]] the raw data X_Pool_subset is predicted.
curr_sample = [MC_output([X_Pool_subset, learning_phase])[0]]
I revised line 172 to: curr_sample = [MC_output([aug_X_Pool_subset, learning_phase])[0]] and run training, but the result is bad......
curr_sample = [MC_output([aug_X_Pool_subset, learning_phase])[0]]
The text was updated successfully, but these errors were encountered:
Hi @PoisonBOx thanks for pointing this out. I'll fix this typo :P
Sorry, something went wrong.
No branches or pull requests
In active_training.py
line 167 ~ 169:
noise = np.round( np.random.normal(mu, sigma, X_Pool_subset.shape) ) aug_X_Pool_subset = X_Pool_subset + noise np.clip(aug_X_Pool_subset, 0, 255)
but in line 172:
curr_sample = [MC_output([X_Pool_subset, learning_phase])[0]]
the raw data X_Pool_subset is predicted.
I revised line 172 to:
curr_sample = [MC_output([aug_X_Pool_subset, learning_phase])[0]]
and run training, but the result is bad......
The text was updated successfully, but these errors were encountered: