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
We time almost every function, including ones that only return intermediary steps such as _sample_columns in order to return an accurate time for each metafeature. However, we don't time how long it takes to drop nan values from x_raw in:
This would likely be only a very slight increase in time as this is such a simple function, but since X is used by so many metafeatures, it would be valuable to have as accurate a time as possible.
We should pull that computation out of the dictionary so we can time it and include the proper time.
The text was updated successfully, but these errors were encountered:
We time almost every function, including ones that only return intermediary steps such as
_sample_columns
in order to return an accurate time for each metafeature. However, we don't time how long it takes to drop nan values from x_raw in:"X": self._format_resource(X.dropna(axis=1, how="all"), 0.)
This would likely be only a very slight increase in time as this is such a simple function, but since
X
is used by so many metafeatures, it would be valuable to have as accurate a time as possible.We should pull that computation out of the dictionary so we can time it and include the proper time.
The text was updated successfully, but these errors were encountered: