-
Notifications
You must be signed in to change notification settings - Fork 192
New issue
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
How to reduce/eliminate the "randomness" of the predicted skeleton? #72
Comments
So far as I tried, setting numpy.random.seed() and seed in sample_points_poisson_disk() could help reproduce results. |
Hi @CoolGua0113 , Thanks for your answer! I set the numpy seed and the seed in sample_points_poisson_disk(). However, I am still getting different results every time. Is there anything that you changed to get consistent results? |
Nothing else sorry...I could get completely same results each run after setting these two seeds. Maybe you could check the input to RigNet(in create_single_data()) first? As mentioned by the author, the randomness of the network might be less important. |
Did you set the numpy seed before every numpy operation that involves randomness? I am basically running |
Hi @zhan-xu
Thanks for the great work!
As discussed in #41, "randomness" mainly comes from random sampling. I tried to manually set a fixed seed before all the operations involving such random sampling. However, the randomness is still there...
I was wondering if there is any way to reduce/eliminate the result's randomness as my output differs by a lot in each run. Any suggestion/comment will be greatly appreciated!
The text was updated successfully, but these errors were encountered: