-
-
Save olivermontes/8f4ac7f3da426a0ea0efe0fc5023d0f5 to your computer and use it in GitHub Desktop.
Hello World for Google
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Code example for: | |
| # Hello World - Machine Learning Recipes #1 - Google Developers | |
| # https://www.youtube.com/watch?v=cKxRvEZd3Mw | |
| from sklearn import tree | |
| # Bumpy = 0, Smooth = 1 | |
| features = [[140, 1], [130, 1], [150, 0], [170, 0]] | |
| # Apple = 0, Orange = 1 | |
| labels = [0, 0, 1, 1] | |
| clf = tree.DecisionTreeClassifier() | |
| clf = clf.fit(features, labels) | |
| print clf.predict([[160, 0]]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment