Skip to content

Instantly share code, notes, and snippets.

@BryanCutler
Last active August 5, 2019 17:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BryanCutler/bd45d63c3d8c1b83802c235b9ed05b91 to your computer and use it in GitHub Desktop.
Save BryanCutler/bd45d63c3d8c1b83802c235b9ed05b91 to your computer and use it in GitHub Desktop.
TensorFlow Arrow Blog Part 8 - Run Training Local
ds = make_local_dataset(filename)
model = model_fit(ds)
print("Fit model with weights: {}".format(model.get_weights()))
# Fit model with weights:
# [array([[0.7793554 ], [0.61216295]], dtype=float32),
# array([0.03328196], dtype=float32)]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment