-
Notifications
You must be signed in to change notification settings - Fork 520
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
breaking: pt: remove data preprocess from data stat #3261
Conversation
Restore deepmodeling#3233 with resolved conflicts and conversations.
Signed-off-by: Duo <50307526+iProzd@users.noreply.github.com>
for more information, see https://pre-commit.ci
|
||
def init_desc_stat(self, sumr, suma, sumn, sumr2, suma2): | ||
def init_desc_stat(self, sumr, suma, sumn, sumr2, suma2, **kwargs): |
Check warning
Code scanning / CodeQL
Signature mismatch in overriding method Warning
overridden method
|
||
def init_desc_stat(self, sumr, suma, sumn, sumr2, suma2): | ||
def init_desc_stat(self, sumr, suma, sumn, sumr2, suma2, **kwargs): |
Check warning
Code scanning / CodeQL
Signature mismatch in overriding method Warning
overridden method
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## devel #3261 +/- ##
==========================================
- Coverage 75.27% 74.82% -0.46%
==========================================
Files 373 373
Lines 33252 33040 -212
Branches 1604 1604
==========================================
- Hits 25032 24721 -311
- Misses 7349 7448 +99
Partials 871 871 ☔ View full report in Codecov by Sentry. |
This PR:
Remove data preprocess from data stat.
Cleanup dependency of data preprocess in dataset and dataloader.
Note that:
DeepmdDataSystem
still has dependency for PyTorch, which leaves for @CaRoLZhangxy to clean up.Denoise part in
DeepmdDataSystem
still needs further clean up, which leaves for @Chengqian-Zhang.