Open deaktator opened 7 years ago
A suggestion was for installation.
export JAVA_HOME=$(/usr/libexec/java_home) # on OS X
Change the front page to SBT instead of Maven (or add both).
Getting Started with Data Science Section recommendations:
For Model Format Page, Decision Tree Model Section, Linear Mode Selector, need more clarification on selector values and expected behavior, specially presence/absence of second predicate and expected behavior in relation with returnBest and missingDataOk value. May be we can create a table like: returnBest missingDataOk firstSelectorIsNull, secondSelectorValue ExpdectedBehavior T T Y N .... ...
@mohammed-karim-zefr, here's a description on the interplay of missingDataOk
and returnBest
. I'll update the docs to do this when I get to it.
missingDataOk (down) / returnBest (across)
T F
T Iterate all predicates possible. Iterate all predicates possible.
Skip ones where missing data is Skip ones where missing data is
encountered. If no predicate encountered. If no predicate
succeeds, return the current node. succeeds, return an error.
F On encountering missing data in a On encountering missing data in a
predicate, return an error. If no predicate, return an error. If no
missing data but no predicates missing data but no predicates
apply, return the current node. apply, return an error.
Please add any current documentation suggestions to this ticket. They will be aggregated and the docs will be updated.