-
Notifications
You must be signed in to change notification settings - Fork 75
Remove collector #576
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
base: dev
Are you sure you want to change the base?
Remove collector #576
Conversation
Code Coverage Summary
Results for commit: 31f8a8b Minimum allowed coverage is ♻️ This comment has been updated with latest results |
|
||
# create hook conditions <-> problems | ||
for condition_name in self.conditions: | ||
self.conditions[condition_name].problem = self | ||
|
||
self._batching_dimension = 0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why are we removing this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is not used!
pina/problem/abstract_problem.py
Outdated
:param int value: The batching dimension. | ||
""" | ||
self._batching_dimension = value | ||
self.data = None |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We have too many things... input_pts
, data
, then dataset ... What is the supposed way to retrieve data?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
data, but maybe we can create a property called collect_data
in replacement of aggregate_data
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I like aggregate data, I am just wondering why we have input_pts (back compatibility with 0.1) and data. Maybe let's change the name, data is ambiguous (Data from pyg for example), I like collected_data
Description
This PR fixes #575
Checklist