From a5e40f42e935013e6823847f0dfadca0a0aaca89 Mon Sep 17 00:00:00 2001 From: Carsten Behring Date: Tue, 3 Dec 2024 22:00:15 +0000 Subject: [PATCH] undraft sklearn --- notebooks/noj_book/sklearn_reference.clj | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/notebooks/noj_book/sklearn_reference.clj b/notebooks/noj_book/sklearn_reference.clj index 2be23f6..41ac27d 100644 --- a/notebooks/noj_book/sklearn_reference.clj +++ b/notebooks/noj_book/sklearn_reference.clj @@ -10,11 +10,17 @@ [noj-book.utils.render-tools-sklearn] [scicloj.sklearn-clj.ml])) +;;## Sklearn model reference +;;Below we find all sklearn models with their parameters and the original documentation. +;; +;;The parameters are given as Clojure keys in kebap-case. As the document texts are +;;imported from python they refer to the python spelling of the parameter. +;; +;;But the translation between the two should be obvious. -;;## Sklearn model reference - DRAFT 🛠 -;;## Example: logistic regression +;;Example: logistic regression (def ds (dst/tensor->dataset [[0 0 0] [1 1 1] [2 2 2]])) @@ -66,14 +72,6 @@ -;;Below all models are listed with their parameters and the original documentation. -;; -;;The parameters are given as Clojure keys in kebap-case. As the document texts are -;;imported from python they refer to the python spelling of the parameter. -;; -;;But the translation between the two should be obvious. - - ;;## :sklearn.classification models ^:kindly/hide-code