diff --git a/doc/LectureNotes/_build/.doctrees/environment.pickle b/doc/LectureNotes/_build/.doctrees/environment.pickle
index 5bdbee181..ca0bc6946 100644
Binary files a/doc/LectureNotes/_build/.doctrees/environment.pickle and b/doc/LectureNotes/_build/.doctrees/environment.pickle differ
diff --git a/doc/LectureNotes/_build/html/.buildinfo b/doc/LectureNotes/_build/html/.buildinfo
index 45ed82fee..abd953f85 100644
--- a/doc/LectureNotes/_build/html/.buildinfo
+++ b/doc/LectureNotes/_build/html/.buildinfo
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
-config: c810468e5ce15e612839c964bc8fee3e
+config: 28d72fa6d543e55318949735e458ff68
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/doc/LectureNotes/_build/html/_static/copybutton.css b/doc/LectureNotes/_build/html/_static/copybutton.css
index 40eafe5fc..f1916ec7d 100644
--- a/doc/LectureNotes/_build/html/_static/copybutton.css
+++ b/doc/LectureNotes/_build/html/_static/copybutton.css
@@ -35,7 +35,8 @@ div.highlight {
position: relative;
}
-.highlight:hover button.copybtn {
+/* Show the copybutton */
+.highlight:hover button.copybtn, button.copybtn.success {
opacity: 1;
}
diff --git a/doc/LectureNotes/_build/html/_static/copybutton.js b/doc/LectureNotes/_build/html/_static/copybutton.js
index 40ac33108..2ea7ff3e2 100644
--- a/doc/LectureNotes/_build/html/_static/copybutton.js
+++ b/doc/LectureNotes/_build/html/_static/copybutton.js
@@ -20,7 +20,7 @@ const messages = {
},
'fr' : {
'copy': 'Copier',
- 'copy_to_clipboard': 'Copié dans le presse-papier',
+ 'copy_to_clipboard': 'Copier dans le presse-papier',
'copy_success': 'Copié !',
'copy_failure': 'Échec de la copie',
},
@@ -102,18 +102,25 @@ const clearSelection = () => {
}
}
-// Changes tooltip text for two seconds, then changes it back
+// Changes tooltip text for a moment, then changes it back
+// We want the timeout of our `success` class to be a bit shorter than the
+// tooltip and icon change, so that we can hide the icon before changing back.
+var timeoutIcon = 2000;
+var timeoutSuccessClass = 1500;
+
const temporarilyChangeTooltip = (el, oldText, newText) => {
el.setAttribute('data-tooltip', newText)
el.classList.add('success')
- setTimeout(() => el.setAttribute('data-tooltip', oldText), 2000)
- setTimeout(() => el.classList.remove('success'), 2000)
+ // Remove success a little bit sooner than we change the tooltip
+ // So that we can use CSS to hide the copybutton first
+ setTimeout(() => el.classList.remove('success'), timeoutSuccessClass)
+ setTimeout(() => el.setAttribute('data-tooltip', oldText), timeoutIcon)
}
// Changes the copy button icon for two seconds, then changes it back
const temporarilyChangeIcon = (el) => {
el.innerHTML = iconCheck;
- setTimeout(() => {el.innerHTML = iconCopy}, 2000)
+ setTimeout(() => {el.innerHTML = iconCopy}, timeoutIcon)
}
const addCopyButtonToCodeCells = () => {
@@ -125,7 +132,8 @@ const addCopyButtonToCodeCells = () => {
}
// Add copybuttons to all of our code cells
- const codeCells = document.querySelectorAll('div.highlight pre')
+ const COPYBUTTON_SELECTOR = 'div.highlight pre';
+ const codeCells = document.querySelectorAll(COPYBUTTON_SELECTOR)
codeCells.forEach((codeCell, index) => {
const id = codeCellId(index)
codeCell.setAttribute('id', id)
@@ -141,10 +149,25 @@ function escapeRegExp(string) {
return string.replace(/[.*+?^${}()|[\]\\]/g, '\\$&'); // $& means the whole matched string
}
+/**
+ * Removes excluded text from a Node.
+ *
+ * @param {Node} target Node to filter.
+ * @param {string} exclude CSS selector of nodes to exclude.
+ * @returns {DOMString} Text from `target` with text removed.
+ */
+function filterText(target, exclude) {
+ const clone = target.cloneNode(true); // clone as to not modify the live DOM
+ if (exclude) {
+ // remove excluded nodes
+ clone.querySelectorAll(exclude).forEach(node => node.remove());
+ }
+ return clone.innerText;
+}
+
// Callback when a copy button is clicked. Will be passed the node that was clicked
// should then grab the text and replace pieces of text that shouldn't be used in output
function formatCopyText(textContent, copybuttonPromptText, isRegexp = false, onlyCopyPromptLines = true, removePrompts = true, copyEmptyLines = true, lineContinuationChar = "", hereDocDelim = "") {
-
var regexp;
var match;
@@ -199,7 +222,12 @@ function formatCopyText(textContent, copybuttonPromptText, isRegexp = false, onl
var copyTargetText = (trigger) => {
var target = document.querySelector(trigger.attributes['data-clipboard-target'].value);
- return formatCopyText(target.innerText, '', false, true, true, true, '', '')
+
+ // get filtered text
+ let exclude = '.linenos';
+
+ let text = filterText(target, exclude);
+ return formatCopyText(text, '', false, true, true, true, '', '')
}
// Initialize with a callback so we can modify the text before copy
diff --git a/doc/LectureNotes/_build/html/_static/copybutton_funcs.js b/doc/LectureNotes/_build/html/_static/copybutton_funcs.js
index b9168c556..dbe1aaad7 100644
--- a/doc/LectureNotes/_build/html/_static/copybutton_funcs.js
+++ b/doc/LectureNotes/_build/html/_static/copybutton_funcs.js
@@ -2,10 +2,25 @@ function escapeRegExp(string) {
return string.replace(/[.*+?^${}()|[\]\\]/g, '\\$&'); // $& means the whole matched string
}
+/**
+ * Removes excluded text from a Node.
+ *
+ * @param {Node} target Node to filter.
+ * @param {string} exclude CSS selector of nodes to exclude.
+ * @returns {DOMString} Text from `target` with text removed.
+ */
+export function filterText(target, exclude) {
+ const clone = target.cloneNode(true); // clone as to not modify the live DOM
+ if (exclude) {
+ // remove excluded nodes
+ clone.querySelectorAll(exclude).forEach(node => node.remove());
+ }
+ return clone.innerText;
+}
+
// Callback when a copy button is clicked. Will be passed the node that was clicked
// should then grab the text and replace pieces of text that shouldn't be used in output
export function formatCopyText(textContent, copybuttonPromptText, isRegexp = false, onlyCopyPromptLines = true, removePrompts = true, copyEmptyLines = true, lineContinuationChar = "", hereDocDelim = "") {
-
var regexp;
var match;
diff --git a/doc/LectureNotes/_build/html/_static/pygments.css b/doc/LectureNotes/_build/html/_static/pygments.css
index 0d49244ed..691aeb82d 100644
--- a/doc/LectureNotes/_build/html/_static/pygments.css
+++ b/doc/LectureNotes/_build/html/_static/pygments.css
@@ -17,7 +17,6 @@ span.linenos.special { color: #000000; background-color: #ffffc0; padding-left:
.highlight .cs { color: #408090; background-color: #fff0f0 } /* Comment.Special */
.highlight .gd { color: #A00000 } /* Generic.Deleted */
.highlight .ge { font-style: italic } /* Generic.Emph */
-.highlight .ges { font-weight: bold; font-style: italic } /* Generic.EmphStrong */
.highlight .gr { color: #FF0000 } /* Generic.Error */
.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
.highlight .gi { color: #00A000 } /* Generic.Inserted */
diff --git a/doc/LectureNotes/_build/html/chapter1.html b/doc/LectureNotes/_build/html/chapter1.html
index 13dfe8d96..13883e55c 100644
--- a/doc/LectureNotes/_build/html/chapter1.html
+++ b/doc/LectureNotes/_build/html/chapter1.html
@@ -363,6 +363,11 @@ const thebe_selector_output = ".output, .cell_output"
Week 47: From Decision Trees to Ensemble Methods, Random Forests and Boosting Methods and Summary of Course
+
diff --git a/doc/LectureNotes/_build/html/chapter10.html b/doc/LectureNotes/_build/html/chapter10.html
index 5a6e1e0d9..83ea845d2 100644
--- a/doc/LectureNotes/_build/html/chapter10.html
+++ b/doc/LectureNotes/_build/html/chapter10.html
@@ -363,6 +363,11 @@ const thebe_selector_output = ".output, .cell_output"
Week 47: From Decision Trees to Ensemble Methods, Random Forests and Boosting Methods and Summary of Course
+
diff --git a/doc/LectureNotes/_build/html/chapter11.html b/doc/LectureNotes/_build/html/chapter11.html
index 41992bcca..aef35604d 100644
--- a/doc/LectureNotes/_build/html/chapter11.html
+++ b/doc/LectureNotes/_build/html/chapter11.html
@@ -363,6 +363,11 @@ const thebe_selector_output = ".output, .cell_output"
Week 47: From Decision Trees to Ensemble Methods, Random Forests and Boosting Methods and Summary of Course
+
diff --git a/doc/LectureNotes/_build/html/chapter12.html b/doc/LectureNotes/_build/html/chapter12.html
index 5b32ac4fc..e74c58473 100644
--- a/doc/LectureNotes/_build/html/chapter12.html
+++ b/doc/LectureNotes/_build/html/chapter12.html
@@ -363,6 +363,11 @@ const thebe_selector_output = ".output, .cell_output"
Week 47: From Decision Trees to Ensemble Methods, Random Forests and Boosting Methods and Summary of Course
+
diff --git a/doc/LectureNotes/_build/html/chapter13.html b/doc/LectureNotes/_build/html/chapter13.html
index 5bb91523a..c04ea781f 100644
--- a/doc/LectureNotes/_build/html/chapter13.html
+++ b/doc/LectureNotes/_build/html/chapter13.html
@@ -363,6 +363,11 @@ const thebe_selector_output = ".output, .cell_output"
Week 47: From Decision Trees to Ensemble Methods, Random Forests and Boosting Methods and Summary of Course
+
diff --git a/doc/LectureNotes/_build/html/chapter2.html b/doc/LectureNotes/_build/html/chapter2.html
index 268cf3ea9..4f086247a 100644
--- a/doc/LectureNotes/_build/html/chapter2.html
+++ b/doc/LectureNotes/_build/html/chapter2.html
@@ -363,6 +363,11 @@ const thebe_selector_output = ".output, .cell_output"
Week 47: From Decision Trees to Ensemble Methods, Random Forests and Boosting Methods and Summary of Course
+
diff --git a/doc/LectureNotes/_build/html/chapter3.html b/doc/LectureNotes/_build/html/chapter3.html
index bcc51e1aa..9169ba4b9 100644
--- a/doc/LectureNotes/_build/html/chapter3.html
+++ b/doc/LectureNotes/_build/html/chapter3.html
@@ -363,6 +363,11 @@ const thebe_selector_output = ".output, .cell_output"
Week 47: From Decision Trees to Ensemble Methods, Random Forests and Boosting Methods and Summary of Course
+
diff --git a/doc/LectureNotes/_build/html/chapter4.html b/doc/LectureNotes/_build/html/chapter4.html
index 31e26e7e2..cbc100973 100644
--- a/doc/LectureNotes/_build/html/chapter4.html
+++ b/doc/LectureNotes/_build/html/chapter4.html
@@ -363,6 +363,11 @@ const thebe_selector_output = ".output, .cell_output"
Week 47: From Decision Trees to Ensemble Methods, Random Forests and Boosting Methods and Summary of Course
+
diff --git a/doc/LectureNotes/_build/html/chapter5.html b/doc/LectureNotes/_build/html/chapter5.html
index 8efefc54b..74ee16692 100644
--- a/doc/LectureNotes/_build/html/chapter5.html
+++ b/doc/LectureNotes/_build/html/chapter5.html
@@ -363,6 +363,11 @@ const thebe_selector_output = ".output, .cell_output"
Week 47: From Decision Trees to Ensemble Methods, Random Forests and Boosting Methods and Summary of Course
+
diff --git a/doc/LectureNotes/_build/html/chapter6.html b/doc/LectureNotes/_build/html/chapter6.html
index fc1ae5987..af780b0c9 100644
--- a/doc/LectureNotes/_build/html/chapter6.html
+++ b/doc/LectureNotes/_build/html/chapter6.html
@@ -363,6 +363,11 @@ const thebe_selector_output = ".output, .cell_output"
Week 47: From Decision Trees to Ensemble Methods, Random Forests and Boosting Methods and Summary of Course
+
diff --git a/doc/LectureNotes/_build/html/chapter7.html b/doc/LectureNotes/_build/html/chapter7.html
index 41641f690..dd14c4576 100644
--- a/doc/LectureNotes/_build/html/chapter7.html
+++ b/doc/LectureNotes/_build/html/chapter7.html
@@ -363,6 +363,11 @@ const thebe_selector_output = ".output, .cell_output"
Week 47: From Decision Trees to Ensemble Methods, Random Forests and Boosting Methods and Summary of Course
+
diff --git a/doc/LectureNotes/_build/html/chapter8.html b/doc/LectureNotes/_build/html/chapter8.html
index 9a280bdda..77f770ee0 100644
--- a/doc/LectureNotes/_build/html/chapter8.html
+++ b/doc/LectureNotes/_build/html/chapter8.html
@@ -363,6 +363,11 @@ const thebe_selector_output = ".output, .cell_output"
Week 47: From Decision Trees to Ensemble Methods, Random Forests and Boosting Methods and Summary of Course
+
diff --git a/doc/LectureNotes/_build/html/chapter9.html b/doc/LectureNotes/_build/html/chapter9.html
index 8aeed907c..4cee77f90 100644
--- a/doc/LectureNotes/_build/html/chapter9.html
+++ b/doc/LectureNotes/_build/html/chapter9.html
@@ -363,6 +363,11 @@ const thebe_selector_output = ".output, .cell_output"
Week 47: From Decision Trees to Ensemble Methods, Random Forests and Boosting Methods and Summary of Course
+
diff --git a/doc/LectureNotes/_build/html/chapteroptimization.html b/doc/LectureNotes/_build/html/chapteroptimization.html
index 09383cf6f..10479d029 100644
--- a/doc/LectureNotes/_build/html/chapteroptimization.html
+++ b/doc/LectureNotes/_build/html/chapteroptimization.html
@@ -363,6 +363,11 @@ const thebe_selector_output = ".output, .cell_output"
Week 47: From Decision Trees to Ensemble Methods, Random Forests and Boosting Methods and Summary of Course
+
diff --git a/doc/LectureNotes/_build/html/clustering.html b/doc/LectureNotes/_build/html/clustering.html
index 81da94b00..76fd7ab6a 100644
--- a/doc/LectureNotes/_build/html/clustering.html
+++ b/doc/LectureNotes/_build/html/clustering.html
@@ -363,6 +363,11 @@ const thebe_selector_output = ".output, .cell_output"
Week 47: From Decision Trees to Ensemble Methods, Random Forests and Boosting Methods and Summary of Course
+
diff --git a/doc/LectureNotes/_build/html/exercisesweek34.html b/doc/LectureNotes/_build/html/exercisesweek34.html
index 80e4b69f5..2295e962d 100644
--- a/doc/LectureNotes/_build/html/exercisesweek34.html
+++ b/doc/LectureNotes/_build/html/exercisesweek34.html
@@ -363,6 +363,11 @@ const thebe_selector_output = ".output, .cell_output"
Week 47: From Decision Trees to Ensemble Methods, Random Forests and Boosting Methods and Summary of Course
+
diff --git a/doc/LectureNotes/_build/html/exercisesweek35.html b/doc/LectureNotes/_build/html/exercisesweek35.html
index 8c1c1adad..8aacf37e0 100644
--- a/doc/LectureNotes/_build/html/exercisesweek35.html
+++ b/doc/LectureNotes/_build/html/exercisesweek35.html
@@ -363,6 +363,11 @@ const thebe_selector_output = ".output, .cell_output"
Week 47: From Decision Trees to Ensemble Methods, Random Forests and Boosting Methods and Summary of Course
+
diff --git a/doc/LectureNotes/_build/html/exercisesweek36.html b/doc/LectureNotes/_build/html/exercisesweek36.html
index a59e44034..f99108d5a 100644
--- a/doc/LectureNotes/_build/html/exercisesweek36.html
+++ b/doc/LectureNotes/_build/html/exercisesweek36.html
@@ -363,6 +363,11 @@ const thebe_selector_output = ".output, .cell_output"
Week 47: From Decision Trees to Ensemble Methods, Random Forests and Boosting Methods and Summary of Course
+
diff --git a/doc/LectureNotes/_build/html/exercisesweek37.html b/doc/LectureNotes/_build/html/exercisesweek37.html
index 4803a2e56..25dbe08e9 100644
--- a/doc/LectureNotes/_build/html/exercisesweek37.html
+++ b/doc/LectureNotes/_build/html/exercisesweek37.html
@@ -363,6 +363,11 @@ const thebe_selector_output = ".output, .cell_output"
Week 47: From Decision Trees to Ensemble Methods, Random Forests and Boosting Methods and Summary of Course
+
diff --git a/doc/LectureNotes/_build/html/exercisesweek38.html b/doc/LectureNotes/_build/html/exercisesweek38.html
index 984ad3c4e..a528f530f 100644
--- a/doc/LectureNotes/_build/html/exercisesweek38.html
+++ b/doc/LectureNotes/_build/html/exercisesweek38.html
@@ -363,6 +363,11 @@ const thebe_selector_output = ".output, .cell_output"
Week 47: From Decision Trees to Ensemble Methods, Random Forests and Boosting Methods and Summary of Course
+
diff --git a/doc/LectureNotes/_build/html/exercisesweek39.html b/doc/LectureNotes/_build/html/exercisesweek39.html
index b54d21107..61a2505b2 100644
--- a/doc/LectureNotes/_build/html/exercisesweek39.html
+++ b/doc/LectureNotes/_build/html/exercisesweek39.html
@@ -361,6 +361,11 @@ const thebe_selector_output = ".output, .cell_output"
Week 47: From Decision Trees to Ensemble Methods, Random Forests and Boosting Methods and Summary of Course
+
diff --git a/doc/LectureNotes/_build/html/exercisesweek41.html b/doc/LectureNotes/_build/html/exercisesweek41.html
index 5c93e5a3c..68faa3bca 100644
--- a/doc/LectureNotes/_build/html/exercisesweek41.html
+++ b/doc/LectureNotes/_build/html/exercisesweek41.html
@@ -363,6 +363,11 @@ const thebe_selector_output = ".output, .cell_output"
Week 47: From Decision Trees to Ensemble Methods, Random Forests and Boosting Methods and Summary of Course
+
diff --git a/doc/LectureNotes/_build/html/exercisesweek42.html b/doc/LectureNotes/_build/html/exercisesweek42.html
index 65c27f106..9f07b7d21 100644
--- a/doc/LectureNotes/_build/html/exercisesweek42.html
+++ b/doc/LectureNotes/_build/html/exercisesweek42.html
@@ -363,6 +363,11 @@ const thebe_selector_output = ".output, .cell_output"
Week 47: From Decision Trees to Ensemble Methods, Random Forests and Boosting Methods and Summary of Course
+
diff --git a/doc/LectureNotes/_build/html/exercisesweek43.html b/doc/LectureNotes/_build/html/exercisesweek43.html
index 8725dd2c7..2bbe9f6d2 100644
--- a/doc/LectureNotes/_build/html/exercisesweek43.html
+++ b/doc/LectureNotes/_build/html/exercisesweek43.html
@@ -363,6 +363,11 @@ const thebe_selector_output = ".output, .cell_output"
Week 47: From Decision Trees to Ensemble Methods, Random Forests and Boosting Methods and Summary of Course
+
diff --git a/doc/LectureNotes/_build/html/linalg.html b/doc/LectureNotes/_build/html/linalg.html
index 9f8afdc3b..ea36b1ffd 100644
--- a/doc/LectureNotes/_build/html/linalg.html
+++ b/doc/LectureNotes/_build/html/linalg.html
@@ -363,6 +363,11 @@ const thebe_selector_output = ".output, .cell_output"
Week 47: From Decision Trees to Ensemble Methods, Random Forests and Boosting Methods and Summary of Course
+
-
-
diff --git a/doc/LectureNotes/_build/html/schedule.html b/doc/LectureNotes/_build/html/schedule.html
index 32c53ee30..280237f4b 100644
--- a/doc/LectureNotes/_build/html/schedule.html
+++ b/doc/LectureNotes/_build/html/schedule.html
@@ -361,6 +361,11 @@ const thebe_selector_output = ".output, .cell_output"
Week 47: From Decision Trees to Ensemble Methods, Random Forests and Boosting Methods and Summary of Course
+
diff --git a/doc/LectureNotes/_build/html/statistics.html b/doc/LectureNotes/_build/html/statistics.html
index 4a4e73ba3..863099c31 100644
--- a/doc/LectureNotes/_build/html/statistics.html
+++ b/doc/LectureNotes/_build/html/statistics.html
@@ -363,6 +363,11 @@ const thebe_selector_output = ".output, .cell_output"
Week 47: From Decision Trees to Ensemble Methods, Random Forests and Boosting Methods and Summary of Course
+
diff --git a/doc/LectureNotes/_build/html/teachers.html b/doc/LectureNotes/_build/html/teachers.html
index 38ba654f8..c4ddb1e2d 100644
--- a/doc/LectureNotes/_build/html/teachers.html
+++ b/doc/LectureNotes/_build/html/teachers.html
@@ -361,6 +361,11 @@ const thebe_selector_output = ".output, .cell_output"
Week 47: From Decision Trees to Ensemble Methods, Random Forests and Boosting Methods and Summary of Course
+
diff --git a/doc/LectureNotes/_build/html/textbooks.html b/doc/LectureNotes/_build/html/textbooks.html
index 74889e179..2f9d1a8c5 100644
--- a/doc/LectureNotes/_build/html/textbooks.html
+++ b/doc/LectureNotes/_build/html/textbooks.html
@@ -361,6 +361,11 @@ const thebe_selector_output = ".output, .cell_output"
Week 47: From Decision Trees to Ensemble Methods, Random Forests and Boosting Methods and Summary of Course
+
diff --git a/doc/LectureNotes/_build/html/week34.html b/doc/LectureNotes/_build/html/week34.html
index e549aa904..07b61e0b6 100644
--- a/doc/LectureNotes/_build/html/week34.html
+++ b/doc/LectureNotes/_build/html/week34.html
@@ -363,6 +363,11 @@ const thebe_selector_output = ".output, .cell_output"
Week 47: From Decision Trees to Ensemble Methods, Random Forests and Boosting Methods and Summary of Course
+
diff --git a/doc/LectureNotes/_build/html/week35.html b/doc/LectureNotes/_build/html/week35.html
index 5157160c4..dc37c450c 100644
--- a/doc/LectureNotes/_build/html/week35.html
+++ b/doc/LectureNotes/_build/html/week35.html
@@ -363,6 +363,11 @@ const thebe_selector_output = ".output, .cell_output"
Week 47: From Decision Trees to Ensemble Methods, Random Forests and Boosting Methods and Summary of Course
+
diff --git a/doc/LectureNotes/_build/html/week36.html b/doc/LectureNotes/_build/html/week36.html
index 57a33649f..3e845a490 100644
--- a/doc/LectureNotes/_build/html/week36.html
+++ b/doc/LectureNotes/_build/html/week36.html
@@ -363,6 +363,11 @@ const thebe_selector_output = ".output, .cell_output"
Week 47: From Decision Trees to Ensemble Methods, Random Forests and Boosting Methods and Summary of Course
+
diff --git a/doc/LectureNotes/_build/html/week37.html b/doc/LectureNotes/_build/html/week37.html
index 952ed6232..b3f109c24 100644
--- a/doc/LectureNotes/_build/html/week37.html
+++ b/doc/LectureNotes/_build/html/week37.html
@@ -363,6 +363,11 @@ const thebe_selector_output = ".output, .cell_output"
Week 47: From Decision Trees to Ensemble Methods, Random Forests and Boosting Methods and Summary of Course
+
diff --git a/doc/LectureNotes/_build/html/week38.html b/doc/LectureNotes/_build/html/week38.html
index 71a4ca193..702fb4814 100644
--- a/doc/LectureNotes/_build/html/week38.html
+++ b/doc/LectureNotes/_build/html/week38.html
@@ -363,6 +363,11 @@ const thebe_selector_output = ".output, .cell_output"
Week 47: From Decision Trees to Ensemble Methods, Random Forests and Boosting Methods and Summary of Course
+
diff --git a/doc/LectureNotes/_build/html/week39.html b/doc/LectureNotes/_build/html/week39.html
index a185199ad..f0a253834 100644
--- a/doc/LectureNotes/_build/html/week39.html
+++ b/doc/LectureNotes/_build/html/week39.html
@@ -363,6 +363,11 @@ const thebe_selector_output = ".output, .cell_output"
Week 47: From Decision Trees to Ensemble Methods, Random Forests and Boosting Methods and Summary of Course
+
diff --git a/doc/LectureNotes/_build/html/week40.html b/doc/LectureNotes/_build/html/week40.html
index 9cd009182..a0b80bf46 100644
--- a/doc/LectureNotes/_build/html/week40.html
+++ b/doc/LectureNotes/_build/html/week40.html
@@ -363,6 +363,11 @@ const thebe_selector_output = ".output, .cell_output"
Week 47: From Decision Trees to Ensemble Methods, Random Forests and Boosting Methods and Summary of Course
+
diff --git a/doc/LectureNotes/_build/html/week41.html b/doc/LectureNotes/_build/html/week41.html
index f30b295ec..6b97d5d0d 100644
--- a/doc/LectureNotes/_build/html/week41.html
+++ b/doc/LectureNotes/_build/html/week41.html
@@ -363,6 +363,11 @@ const thebe_selector_output = ".output, .cell_output"
Week 47: From Decision Trees to Ensemble Methods, Random Forests and Boosting Methods and Summary of Course
+
diff --git a/doc/LectureNotes/_build/html/week42.html b/doc/LectureNotes/_build/html/week42.html
index 25d5701b5..922b56239 100644
--- a/doc/LectureNotes/_build/html/week42.html
+++ b/doc/LectureNotes/_build/html/week42.html
@@ -363,6 +363,11 @@ const thebe_selector_output = ".output, .cell_output"
Week 47: From Decision Trees to Ensemble Methods, Random Forests and Boosting Methods and Summary of Course
+
diff --git a/doc/LectureNotes/_build/html/week43.html b/doc/LectureNotes/_build/html/week43.html
index 9d6b53b88..8b2e2533c 100644
--- a/doc/LectureNotes/_build/html/week43.html
+++ b/doc/LectureNotes/_build/html/week43.html
@@ -363,6 +363,11 @@ const thebe_selector_output = ".output, .cell_output"
Week 47: From Decision Trees to Ensemble Methods, Random Forests and Boosting Methods and Summary of Course
+
diff --git a/doc/LectureNotes/_build/html/week44.html b/doc/LectureNotes/_build/html/week44.html
index 4920a43d6..f2a6559a1 100644
--- a/doc/LectureNotes/_build/html/week44.html
+++ b/doc/LectureNotes/_build/html/week44.html
@@ -363,6 +363,11 @@ const thebe_selector_output = ".output, .cell_output"
Week 47: From Decision Trees to Ensemble Methods, Random Forests and Boosting Methods and Summary of Course
+
diff --git a/doc/LectureNotes/_build/html/week45.html b/doc/LectureNotes/_build/html/week45.html
index 29184849a..0590553cd 100644
--- a/doc/LectureNotes/_build/html/week45.html
+++ b/doc/LectureNotes/_build/html/week45.html
@@ -363,6 +363,11 @@ const thebe_selector_output = ".output, .cell_output"
Week 47: From Decision Trees to Ensemble Methods, Random Forests and Boosting Methods and Summary of Course
+
diff --git a/doc/LectureNotes/_build/html/week46.html b/doc/LectureNotes/_build/html/week46.html
index 3adc92c9f..126df17ec 100644
--- a/doc/LectureNotes/_build/html/week46.html
+++ b/doc/LectureNotes/_build/html/week46.html
@@ -363,6 +363,11 @@ const thebe_selector_output = ".output, .cell_output"
Week 47: From Decision Trees to Ensemble Methods, Random Forests and Boosting Methods and Summary of Course
+