You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
at t=0, the Below function evaluates with p[0] and p[-1] as parameters which seems incorrect to me.
because p[-1] in python corresponds to last element of the array.
Filename : pricing/price-optimization-using-dqn-reinforcement-learning.ipynb
at t=0, the Below function evaluates with p[0] and p[-1] as parameters which seems incorrect to me.
because p[-1] in python corresponds to last element of the array.
to fix this, we can use range(1,len(p)).
@ikatsov Do let me know if I am wrong or misunderstood something.
The text was updated successfully, but these errors were encountered: