Created
October 13, 2020 13:20
-
-
Save megha444/24f5f03f7a59b0db2fb3ed3b71992228 to your computer and use it in GitHub Desktop.
This file contains 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
import theano | |
from theano import tensor | |
m = tensor.dscalar() | |
n = tensor.dscalar() | |
p = a + b | |
q = theano.function([m,n], p) | |
r = q(1.5, 2.5) | |
print (r) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment