Skip to content

Commit

Permalink
Remove useless comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Darius Morawiec committed Sep 26, 2017
1 parent 882ee90 commit db63686
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
3 changes: 0 additions & 3 deletions examples/classifier/DecisionTreeClassifier/java/accuracy.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@
X, y = iris_data.data, iris_data.target
clf = tree.DecisionTreeClassifier()
clf.fit(X, y)

# Cheese!

porter = Porter(clf)

accuracy = porter.predict_test([1.0, 2.0, 3.0, 4.0])
Expand Down
3 changes: 0 additions & 3 deletions examples/classifier/DecisionTreeClassifier/java/predict.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@
X, y = iris_data.data, iris_data.target
clf = tree.DecisionTreeClassifier()
clf.fit(X, y)

# Cheese!

porter = Porter(clf)

# Single prediction:
Expand Down

0 comments on commit db63686

Please sign in to comment.