-
Notifications
You must be signed in to change notification settings - Fork 2
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
tracking.Partition.create() returns bogus first initial time value #21
Comments
Problem is in these lines of code if time[0] != 0:
logger.warning("moving first label boundary to zero")
time[0] = 0 Correct behavior here is probably to insert an empty partition to the first label. |
First of all, I think that the create() should be merged with the read() method - they are both essentially doing the same thing. Second, I personally think there should be an error if the first time is not zero. Most likely the user is confusing track.Label with track.Partition. @tuanad121 is the author of create() - what do you think? What was your use-case for creating this in the first place? |
Forgot to close this issue when I merged my PR. Our need came from wanting to create a partition track, but our source data was not encompassed by a single file, but was bundled in part of the file. We effectively have a python data structure of data: List[Tuple[float, float, str, float]] = [(startTime, endTime, label, score)] The problem is that our data-source, does not always have the first entry in the list have a start time of 0, and silently moving the first start time to 0 (what the behavior was in signalworks =< 0.2.1) caused an unintentional behavior in our case. Also in our case, a Partition track is definitely what we want (as opposed to a label), but it's just that I could not guarantee first entry would start at 0. I certainly could have extra checks in our application to create an empty segment if my first start time is not 0, but silently making the first time be 0 seemed very-much like non-ideal behavior, so I decided to make the change upstream. In terms of I'll leave this issue open to keep the conversation going, but with signalworks 0.2.2 I already made the change. |
I think your changes are fine, but how about calling it Partition.from_list() instead of Partition.create()? Seems more descriptive. |
I'm good with Alternatively we could make the data be part of the |
So |
Description
When creating a partition object wtih a non-zero initial value, an incorrectly time-marked partition object.
What I Did
The text was updated successfully, but these errors were encountered: