Author | Message |
---|---|
aalva190
Posts: 64
|
Posted 21:20 Oct 29, 2018 |
|
mpourhoma
Posts: 39
|
Posted 21:28 Oct 29, 2018 |
Part E) Logistic Regression does NOT need a Random_state for this problem. But, You have to use random_state=5 for DecisionTree when you initialize it as: my_decisiontree = DecisionTreeClassifier(random_state=5) |
aalva190
Posts: 64
|
Posted 21:29 Oct 29, 2018 |
Got it, thanks! |