-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PropensityFeatureStandardization
deepcopy fix (#35)
* Fix deepcopy fail in PropensityFeatureStandardization removed calculating of feature functions on init this makes the object un-deepcopyable. the reason is that the set of feature functions store a copy of self that does not get updated on deepcopy. since the function is only called once, and it is a light function, i opted to remove the attribute entirely and just create the dict when it is needed. that way self will never be misreferenced. Add deepcopy tests * Bump version: 0.8.2 Co-authored-by: Michael M Danziger <[email protected]>
- Loading branch information
1 parent
6974fd4
commit 40a3a47
Showing
3 changed files
with
13 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "0.8.1" | ||
__version__ = "0.8.2" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters