You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"But this approach has severly-limited scalability. For larger data it should be streamed off disk.\n",
377
-
"the `census_dataset.input_fn` provides an example of how to do this using `tf.decode_csv` and `tf.data.TextLineDataset`: \n",
432
+
"The `census_dataset.input_fn` provides an example of how to do this using `tf.decode_csv` and `tf.data.TextLineDataset`: \n",
378
433
"\n",
379
-
"TODO(markdaoust): This `input_fn` should use `tf.contrib.data.make_csv_dataset`"
434
+
"<!-- TODO(markdaoust): This `input_fn` should use `tf.contrib.data.make_csv_dataset` -->"
380
435
]
381
436
},
382
437
{
@@ -470,7 +525,7 @@
470
525
"\n",
471
526
"Estimators use a system called `feature_columns` to describe how the model\n",
472
527
"should interpret each of the raw input features. An Estimator exepcts a vector\n",
473
-
"of numeric inputs, and feature columns describe how the model shoukld convert\n",
528
+
"of numeric inputs, and feature columns describe how the model should convert\n",
474
529
"each feature.\n",
475
530
"\n",
476
531
"Selecting and crafting the right set of feature columns is key to learning an\n",
@@ -752,7 +807,7 @@
752
807
},
753
808
"cell_type": "markdown",
754
809
"source": [
755
-
"if we run `input_layer` with the hashed column we see that the output shape is `(batch_size, hash_bucket_size)`"
810
+
"If we run `input_layer` with the hashed column we see that the output shape is `(batch_size, hash_bucket_size)`"
756
811
]
757
812
},
758
813
{
@@ -1259,11 +1314,24 @@
1259
1314
"\n",
1260
1315
"For more about estimators:\n",
1261
1316
"\n",
1262
-
"- The [TensorFlow Hub transfer-learning tutorial](https://www.tensorflow.org/hub/tutorials/text_classification_with_tf_hub)\n",
1317
+
"- The [TensorFlow Hub text classification tutorial](https://www.tensorflow.org/hub/tutorials/text_classification_with_tf_hub) uses `hub.text_embedding_column` to easily ingest free form text. \n",
1263
1318
"- The [Gradient-boosted-trees estimator tutorial](https://github.com/tensorflow/models/tree/master/official/boosted_trees)\n",
1264
1319
"- This [blog post]( https://medium.com/tensorflow/classifying-text-with-tensorflow-estimators) on processing text with `Estimators`\n",
1265
1320
"- How to [build a custom CNN estimator](https://www.tensorflow.org/tutorials/estimators/cnn)"
0 commit comments