有没有办法在线程安全模式下使用theano.function?

时间:2017-03-21 13:54:55

标签: python multithreading machine-learning parallel-processing theano

我是theano的新手。我在多线程系统中收到错误: “断言键不在self.entry_from_key”

https://github.com/Theano/Theano/blob/master/theano/gof/cmodule.py

评论:编译期间不允许更改密钥的哈希值。这是导致以下断言失败的唯一原因。

我的代码:

model_predict = theano.function(inputs=[A, B], 
      outputs=self.classifier.predict(y),givens={x: F, y: D})

我在theano中读到了“function”而不是线程安全功能。那么我怎样才能改变我的代码才能正确使用呢?

我可以手工编写简单的python代码中的theano.function吗?还是有另一种正确的方法?

0 个答案:

没有答案