-
Notifications
You must be signed in to change notification settings - Fork 23
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
Add fuzzy histogram, pair-finder memory, and KD Tree pair-finder nodes; fix bugs #50
Conversation
* Modularized pair-finder memory component * Typos corrected
@@ -28,7 +28,7 @@ class AutoKw: | |||
_auto_module_class = NotImplemented | |||
|
|||
def auto_module(self): | |||
kw = self.module_kwargs or {} # Default to empty dictionary if Falsey |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I know this is way zoomed in on the details, but this is not a typo. "x is truthy" means bool(x) is True, "x is falsey" means "bool(x) is False"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, I did not know this.
Can you update the change log and the documentation to mention the new features? Then I will merge. |
@lubbersnick Change log and docs updated. Let me know what you think. |
Thanks! |
No description provided.