Created
November 3, 2017 14:50
-
-
Save yufengg/adb21123714e4ab4198ea26c0c2b5e06 to your computer and use it in GitHub Desktop.
This file contains 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
feature_columns = [ | |
tf.feature_column.numeric_column( | |
"pixels", shape=784) | |
] | |
classifier = tf.estimator.LinearClassifier( | |
feature_columns=feature_columns, | |
n_classes=10, | |
model_dir=logdir) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment