Skip to content

Commit 1517155

Browse files
committed
updated documentation
1 parent 9dbdabe commit 1517155

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

docs/mllib-decision-tree.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -95,15 +95,9 @@ The recursive tree construction is stopped at a node when one of the two conditi
9595

9696
### Practical limitations
9797

98-
1. The tree implementation stores an Array[Double] of size *O(#features \* #splits \* 2^maxDepth)*
99-
in memory for aggregating histograms over partitions. The current implementation might not scale
100-
to very deep trees since the memory requirement grows exponentially with tree depth.
101-
2. The implemented algorithm reads both sparse and dense data. However, it is not optimized for
98+
1. The implemented algorithm reads both sparse and dense data. However, it is not optimized for
10299
sparse input.
103-
3. Python is not supported in this release.
104-
105-
We are planning to solve these problems in the near future. Please drop us a line if you encounter
106-
any issues.
100+
2. Python is not supported in this release.
107101

108102
## Examples
109103

0 commit comments

Comments
 (0)