Skip to content
This repository has been archived by the owner on Aug 31, 2021. It is now read-only.

Commit

Permalink
Fixes #22: Added cross_validation to iris.py and iris_custom_model.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ilblackdragon committed Dec 8, 2015
1 parent 9b17502 commit 43cd5c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/iris.py
Expand Up @@ -14,7 +14,7 @@

import random

from sklearn import datasets, metrics
from sklearn import datasets, metrics, cross_validation

import skflow

Expand Down
2 changes: 1 addition & 1 deletion examples/iris_custom_model.py
Expand Up @@ -15,7 +15,7 @@
import random

import skflow
from sklearn import datasets, metrics
from sklearn import datasets, metrics, cross_validation

iris = datasets.load_iris()
X_train, X_test, y_train, y_test = cross_validation.train_test_split(iris.data, iris.target,
Expand Down

0 comments on commit 43cd5c0

Please sign in to comment.