ragulpr / wtte-rnn

WTTE-RNN a framework for churn and time to event prediction
MIT License
762 stars 186 forks source link

Should be >= K.epsilon() #38

Closed gm-spacagna closed 6 years ago

gm-spacagna commented 6 years ago

At this line https://github.com/ragulpr/wtte-rnn/blob/aab74604496a58f295f7a82da5c35f5f64ca996d/python/wtte/wtte.py#L77 I see you are checking if K.epsilon() is <= 1e-7 and recommending to use a smaller value but then if you set it to 1e-08 it will still give the warning. You should change the operator to >=.

ragulpr commented 6 years ago

Nice thank you