Skip to content

Commit b84f4b9

Browse files
committed
Pushing the docs to dev/ for branch: main, commit 3ccb9eb69581aa4a5091d2f10e8daebfca2b5633
1 parent 11e9bc2 commit b84f4b9

File tree

1,319 files changed

+5787
-5784
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,319 files changed

+5787
-5784
lines changed

dev/.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: 22c4d9890d4705af882ec206798422e7
3+
config: 3ff7ed7d47be4c10709fa1b833df92dd
44
tags: 645f666f9bcd5a90fca523b33c5a78b7
Binary file not shown.

dev/_downloads/21a6ff17ef2837fe1cd49e63223a368d/plot_unveil_tree_structure.py

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,15 @@
4444
#
4545
# The decision classifier has an attribute called ``tree_`` which allows access
4646
# to low level attributes such as ``node_count``, the total number of nodes,
47-
# and ``max_depth``, the maximal depth of the tree. The tree_.compute_node_depths()
48-
# method computes the depth of each node in the tree. `tree_` also stores the
49-
# entire binary tree structure, represented as a number of parallel arrays. The
50-
# i-th element of each array holds information about the node ``i``. Node 0 is
51-
# the tree's root. Some of the arrays only apply to either leaves or split
52-
# nodes. In this case the values of the nodes of the other type is arbitrary.
53-
# For example, the arrays ``feature`` and ``threshold`` only apply to split
54-
# nodes. The values for leaf nodes in these arrays are therefore arbitrary.
47+
# and ``max_depth``, the maximal depth of the tree. The
48+
# ``tree_.compute_node_depths()`` method computes the depth of each node in the
49+
# tree. `tree_` also stores the entire binary tree structure, represented as a
50+
# number of parallel arrays. The i-th element of each array holds information
51+
# about the node ``i``. Node 0 is the tree's root. Some of the arrays only
52+
# apply to either leaves or split nodes. In this case the values of the nodes
53+
# of the other type is arbitrary. For example, the arrays ``feature`` and
54+
# ``threshold`` only apply to split nodes. The values for leaf nodes in these
55+
# arrays are therefore arbitrary.
5556
#
5657
# Among these arrays, we have:
5758
#

0 commit comments

Comments
 (0)