Created
July 8, 2020 11:22
-
-
Save irdanish11/6fa6b68f75a29ed87ddd9ff421256d63 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
| def f(): | |
| a = tf.constant([[10,10],[11.,1.]]) | |
| x = tf.constant([[1.,0.],[0.,1.]]) | |
| b = tf.Variable(12.) | |
| y = tf.matmul(a, x) + b | |
| return y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment