我做错了什么?如何解决这个问题以找到根本原因?
答案 0 :(得分:0)
keybinding-resolver是检测冲突键盘快捷键的好方法。如果存在冲突,您可以使用import theano
from theano import tensor as T
import numpy as np
import scipy.integrate as integrate
x = T.vector('x')
h = T.vector('h')
t = T.scalar('t')
A = np.asarray([[0,1],[1,0]])
A = theano.shared(name='A', value=A)
B = np.asarray([[-1,0],[0,-1]])
B = theano.shared(name='B', value=B)
xn = A.dot(x)
hn = B.dot(h)
res = (t + xn.dot(hn))**(-2)
g = theano.function([t,x,h],res) # this computes the integrand
f = theano.function([x,h], integrate.quad(lambda t: g(t,x,h), 10, np.inf))
来禁用现有的快捷方式。
如果问题仍然存在,请确保全局不使用相同的快捷方式。有GitHub issue报告英特尔图形控制面板全局使用相同的快捷方式。