-
Notifications
You must be signed in to change notification settings - Fork 540
Feat: Refactor dipole fitting pytorch #3281
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
Conversation
for more information, see https://pre-commit.ci
@@ -414,11 +414,12 @@ | |||
self.prec = PRECISION_DICT[self.precision] | |||
self.rcond = rcond | |||
|
|||
net_dim_out = self._net_out_dim() |
Check warning
Code scanning / CodeQL
`__init__` method calls overridden method
) | ||
filter_layers.append(one) | ||
self.filter_layers = torch.nn.ModuleList(filter_layers) | ||
self.old_impl = False # this only supports the new implementation. |
Check warning
Code scanning / CodeQL
Overwriting attribute in super-class or sub-class
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## devel #3281 +/- ##
==========================================
+ Coverage 75.06% 75.14% +0.08%
==========================================
Files 387 389 +2
Lines 33640 33714 +74
Branches 1604 1600 -4
==========================================
+ Hits 25251 25336 +85
+ Misses 7528 7517 -11
Partials 861 861 ☔ View full report in Codecov by Sentry. |
for more information, see https://pre-commit.ci
if self.spin is not None: | ||
raise NotImplementedError("spin is not supported") | ||
|
||
net_dim_out = self._net_out_dim() |
Check warning
Code scanning / CodeQL
`__init__` method calls overridden method
for more information, see https://pre-commit.ci
Signed-off-by: Anyang Peng <[email protected]>
for more information, see https://pre-commit.ci
for more information, see https://pre-commit.ci
for more information, see https://pre-commit.ci
for more information, see https://pre-commit.ci
for more information, see https://pre-commit.ci
This PR is to provide implementation of equivariant diplole fitting in pytorch and backend-independent numpy.