Closed miko3333 closed 5 years ago
Thanks for the report! Fixed now and pushed to PyPI, please try again and reopen if there's anther issue.
My bad, I put the wrong sign again in the code, updated yet again.
New problem occured.
pred[n_explore:] = self._oracles.predict(X[n_explore])
should be pred[n_explore:] = self._oracles.predict(X[n_explore:])
, otherwise it raises index error.
Thanks again for spotting the error. Updated now.
This part of the code in online.py results in (low>=high) error in case 2. Guess the problem is that n_explore being negative.