Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Objective function penalizes short transfer times #1

Open
Quijanove opened this issue Mar 10, 2023 · 1 comment
Open

Objective function penalizes short transfer times #1

Quijanove opened this issue Mar 10, 2023 · 1 comment

Comments

@Quijanove
Copy link
Collaborator

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'])

@rikoimade
Copy link
Owner

rikoimade commented Mar 10, 2023 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants