Last active
April 2, 2019 17:51
-
-
Save cobanov/671caa16d2cb2cd833e987944a4b87e1 to your computer and use it in GitHub Desktop.
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
first_layer_weights_and = model_and.layers[0].get_weights()[0] | |
first_layer_biases_and = model_and.layers[0].get_weights()[1] | |
print("ilk katman ağırlıkları") | |
print(first_layer_weights_and) | |
print("\nilk katman yanlılıkları") | |
print(first_layer_biases_and) | |
second_layer_weights_and = model_and.layers[1].get_weights()[0] | |
second_layer_biases_and = model_and.layers[1].get_weights()[1] | |
print("\nçıkış katmanı ağırlıkları") | |
print(second_layer_weights_and) | |
print("\nçıkış katmanı yanlılıkları") | |
print(second_layer_biases_and) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment