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
The current implementation could improve q-scores faster if we start from epsilon value of 0.95, and decay it gradually to 0.1.
Something like the following should do the trick
epsilon = min(0.1, epsilon * decay_factor)
The text was updated successfully, but these errors were encountered:
hi @satwikkansal , can i take this issue? This is an easy fix we will initialize the global epsilon parameter and update it in the update() function.
Sorry, something went wrong.
Hi @rushiv0609,
Sure! I've assigned you to it. Please compare the results before and after the fix to make sure that it's an improvement and not a regression.
#3
rushiv0609
No branches or pull requests
The current implementation could improve q-scores faster if we start from epsilon value of 0.95, and decay it gradually to 0.1.
Something like the following should do the trick
The text was updated successfully, but these errors were encountered: