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

sleep algorithm underestimates sleep by four minutes per sleep bout #13

Closed
ggilestro opened this issue Aug 27, 2015 · 1 comment
Closed
Assignees
Labels

Comments

@ggilestro
Copy link
Member

pysolo sleep algorithm scans activity using the following formula

single_flies5min[fly] = [( single_flies[fly][i-b1:i+a1].sum() <= inactivity ) for i in range (d*c)]

where in normal conditions b1+a1=5
However this will result in not counting the very first three minutes of inactivity and the very last minute of inactivity in every bout >= 5 minutes, that is an underestimation of "sleep" of 4 minutes per bout.

@ggilestro ggilestro added the Bug label Aug 27, 2015
@ggilestro ggilestro self-assigned this Aug 27, 2015
@ggilestro
Copy link
Member Author

Keeping in mind the threshold for sleep detection is absolutely arbitrary, this is not a big issue. However, for future use, I am changing the algorithm to a version that will count all minutes of inactivity.

ggilestro added a commit that referenced this issue Aug 27, 2015
one. It is possible to revert to legacy condition by switching the
use_legacy_algorithm variable to True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant