Skip to content

Commit

Permalink
Merge pull request #107 from scicloj/text-styling
Browse files Browse the repository at this point in the history
text styling
  • Loading branch information
daslu authored Jan 1, 2025
2 parents 66acf88 + 28226ad commit a031ffa
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion notebooks/noj_book/automl.clj
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ my-pipeline
;; But this map cannot be "arbitrary", it need to adhere to the `metamorph` conventions.
;;
;; The following `trains` a model, because the `ml/model`
;; function does this when called with :mode `:fit`.
;; function does this when called with `:mode` `:fit`.
;; And it is the only operation in the pipeline, so the pipeline does one
;; thing, it `trains a model`
(def ctx-after-train
Expand Down
4 changes: 2 additions & 2 deletions notebooks/noj_book/ml_basic.clj
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
;; The titanic data is part of `metamorph.ml` and in the form of a
;; train, test split
;;
;; We use the :train part only for this tutorial.
;; We use the `:train` part only for this tutorial.
;;
;;
;;
Expand Down Expand Up @@ -206,7 +206,7 @@ cat-maps
;; Split data into train and test set
;;
;; Now we split the data into train and test. By we use
;; a :holdout strategy, so will get a single split in training an test data.
;; a `:holdout` strategy, so will get a single split in training an test data.
;;
(def split
(first
Expand Down
2 changes: 1 addition & 1 deletion notebooks/noj_book/smile_classification.clj
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@


;; In the following we see the decision surfaces of some models on the
;; same data from the Iris dataset using 2 columns :sepal_width and sepal_length:
;; same data from the Iris dataset using 2 columns `:sepal_width` and `:sepal_length`:

^:kindly/hide-code
(defn make-iris-pipeline [model-options]
Expand Down

0 comments on commit a031ffa

Please sign in to comment.