numpy_tutorial.ipynb
with Jupyter notebookpandas_tutorial.ipynb
with Jupyter notebookA computational framework for building machine learning models
Will be the majority of exercises in Machine Learning Crash Course
import tensorflow as tf
# Set up a linear classifier.
classifier = tf.estimator.LinearClassifier(feature_columns)
# Train the model on some example data.
classifier.train(input_fn=train_input_fn, steps=2000)
# Use it to predict.
predictions = classifier.predict(input_fn=predict_input_fn)
MLCC_first_steps_with_tensor_flow.ipynb
with Jupyter notebook