theano.function如何成为python中另一个函数的输入?

时间:2018-08-28 23:38:44

标签: python function theano

我有两个.py文件。在其中之一中,我具有以下功能:

    def score_semeval2015_term(pred_fn, nnet_outdir, data_dir):
  def predict(dataset):
    x_test = numpy.load(os.path.join(data_dir, 'semeval_{}_x.npy').format(dataset))
    x_test_term = numpy.load(os.path.join(data_dir, 'semeval_{}_x_term.npy').format(dataset))
    print dataset, x_test.shape
    predictions = pred_fn(x_test, x_test_term)
    y2label = {0: 'negative', 1: 'neutral', 2: 'positive'}
    labels = [y2label[y] for y in predictions]
    return labels

pred_fn是另一个.py文件中定义的theano.function,如下所示:

pred_fn = theano.function(inputs=inputs_pred,
                        outputs=predictions,
                        givens=givens_pred)

我的问题是,一个功能如何可能作为另一个功能的输入?调用时应如何获取score_semeval2015_term(pred_fn,nnet_outdir,data_dir)函数的输入? 谢谢。

0 个答案:

没有答案