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 Apr 24, 2024. It is now read-only.
StandardScaler should be implemented in term of equistore.mean, equistore.std, … Right now, it contains a manual re-implementation of these operations.
I was looking into this and since we are using a weighted mean we first have to add an equistore.average_over_samples function with a weight option - similar to numpy.average. Currently we only have a classical mean. Pinging also @DavideTisi here :-)
I think we should standardize the features and gradients more consistently. At the moment in the standardization we divide by two different terms. One we get from the standard deviation of the values and the other from the standard deviation of the gradients, but we should use both times the standard deviation of the values to be consistent. (My bad, I implemented this)
StandardScaler should be implemented in term of
equistore.mean
,equistore.std
, … Right now, it contains a manual re-implementation of these operations.See #15 (comment)
The text was updated successfully, but these errors were encountered: