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
On Fri, 10 Mar 2023, 09:44 Quijanove, ***@***.***> wrote:
Objective function output is defined
out = pred.item()/(1/input_array['aspiration_rate'] +
1/input_array['dispense_rate'])
This makes the predicted error to increase when large rates are used,
which in turns penalizes short aspiration times. The output should be
updated to
out = pred.item()*(1/input_array['aspiration_rate'] +
1/input_array['dispense_rate'])
—
Reply to this email directly, view it on GitHub
<#1>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/ANIVRHGT2GN7QURORM6XIXDW3KBPXANCNFSM6AAAAAAVV2VYCI>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
Objective function output is defined
out = pred.item()/(1/input_array['aspiration_rate'] + 1/input_array['dispense_rate'])
This makes the predicted error to increase when large rates are used, which in turns penalizes short aspiration times. The output should be updated to
out = pred.item()*(1/input_array['aspiration_rate'] + 1/input_array['dispense_rate'])
The text was updated successfully, but these errors were encountered: