Skip to content

Commit

Permalink
updated documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
manishamde committed Apr 29, 2014
1 parent 9dbdabe commit 1517155
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions docs/mllib-decision-tree.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,15 +95,9 @@ The recursive tree construction is stopped at a node when one of the two conditi

### Practical limitations

1. The tree implementation stores an Array[Double] of size *O(#features \* #splits \* 2^maxDepth)*
in memory for aggregating histograms over partitions. The current implementation might not scale
to very deep trees since the memory requirement grows exponentially with tree depth.
2. The implemented algorithm reads both sparse and dense data. However, it is not optimized for
1. The implemented algorithm reads both sparse and dense data. However, it is not optimized for
sparse input.
3. Python is not supported in this release.

We are planning to solve these problems in the near future. Please drop us a line if you encounter
any issues.
2. Python is not supported in this release.

## Examples

Expand Down

0 comments on commit 1517155

Please sign in to comment.