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
{{ message }}
This repository has been archived by the owner on Dec 8, 2024. It is now read-only.
Now, with the addition of interactive plotting (39af056), it became obvious that some features that I want to implement require both raw data and results obtained after data processing. The currently implemented pipeline for data: reading -> processing -> fitting -> processing of results doesn't allow to implement these features conveniently, because to access the data in the end, it should be read again, which takes time. Although, such a pipeline was chosen to reduce memory consumption and to simplify working with data, it seems that it is no longer an option. I'm going to try to rewrite the functionality in OOP style, although it seems that there may be some issues with complication of logic and increase in peak memory consumption that need to be considered.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Now, with the addition of interactive plotting (39af056), it became obvious that some features that I want to implement require both raw data and results obtained after data processing. The currently implemented pipeline for data: reading -> processing -> fitting -> processing of results doesn't allow to implement these features conveniently, because to access the data in the end, it should be read again, which takes time. Although, such a pipeline was chosen to reduce memory consumption and to simplify working with data, it seems that it is no longer an option. I'm going to try to rewrite the functionality in OOP style, although it seems that there may be some issues with complication of logic and increase in peak memory consumption that need to be considered.
The text was updated successfully, but these errors were encountered: