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
Sampling from the Bernoulli distribution can yield a possibility of predicting the value as missing, which we then adjust mu to become zero to handle. This will have an effect on the returned data in _tensor_to_data
Environment details
If you are already running DeepEcho, please indicate the following details about the environment in
which you are running it:
Question
In PAR model
_sample_state
DeepEcho/deepecho/models/par.py
Lines 470 to 472 in fb039e6
Sampling from the Bernoulli distribution can yield a possibility of predicting the value as missing, which we then adjust
mu
to become zero to handle. This will have an effect on the returned data in_tensor_to_data
DeepEcho/deepecho/models/par.py
Lines 428 to 431 in fb039e6
This would potentially make us return
props['mu']
value for each state we sampled asmissing
.We should probably remove L472 and keep
mu
as is, then_tensor_to_data
will handle the case as needed.The same would be true to the "count" data type as well.
The text was updated successfully, but these errors were encountered: