Last active
August 5, 2019 17:36
-
-
Save BryanCutler/bd45d63c3d8c1b83802c235b9ed05b91 to your computer and use it in GitHub Desktop.
TensorFlow Arrow Blog Part 8 - Run Training Local
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
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