An Open Source Machine Learning Framework for Everyone tensorflow.org
Go to file
2015-11-12 19:58:38 -08:00
skflow Updated setup to actually install things, updated test to run only for 500 iters 2015-11-12 19:58:38 -08:00
.gitignore Initial commit 2015-11-11 20:00:02 -08:00
CONTRIBUTING Initial commit 2015-11-11 20:00:02 -08:00
LICENSE Initial commit 2015-11-11 20:00:02 -08:00
README.md Changing github url to /google/skflow 2015-11-12 15:25:56 -08:00
setup.py Updated setup to actually install things, updated test to run only for 500 iters 2015-11-12 19:58:38 -08:00

Scikit Flow

This is a simplified interface for TensorFlow, to get people started on predictive analytics and data mining.

Installation

First, make sure you have TensorFlow and Scikit Learn installed, then just run:

pip install git+git://github.com/google/skflow.git

Usage

Example usage:

iris = datasets.load_iris()
classifier = skflow.TensorFlowClassifier(n_classes=3)
classifier.fit(iris.data, iris.target)
score = accuracy_score(classifier.predict(iris.data), iris.target)