-
Notifications
You must be signed in to change notification settings - Fork 12
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
small improvements on ML docu notebooks #122
Conversation
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.
Looks great.
I just noticed three little typos that would be nice to fix and then merge.
notebooks/noj_book/automl.clj
Outdated
;; The `model` function has closed over the id, so is knows "his id", so in the `transform` | ||
;; mode it can get the data created at `:fit`. So the `model` function can "send" data to itself | ||
;; from `:fit` to `:transform`, the `trained model`. | ||
;; The `model` function has closed over the id, so is knows "its id", so in the |
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.
Great explanation.
Just noticed a small typo:
so is knows
-> so it knows
notebooks/noj_book/metamorph.clj
Outdated
@@ -287,19 +288,23 @@ | |||
(mm/lift str/reverse) | |||
(mm/lift first))) | |||
|
|||
;; The lifting creates a vriant of te original function which acts on the |
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.
vriant
->variant
notebooks/noj_book/metamorph.clj
Outdated
@@ -287,19 +288,23 @@ | |||
(mm/lift str/reverse) | |||
(mm/lift first))) | |||
|
|||
;; The lifting creates a vriant of te original function which acts on the | |||
;; data in te context under key :metamparph/data |
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.
te
->the
fixed the spelling mistakes you saw |
Great |
No description provided.