本文整理匯總了Python中test.evaluate方法的典型用法代碼示例。如果您正苦於以下問題:Python test.evaluate方法的具體用法?Python test.evaluate怎麽用?Python test.evaluate使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類test
的用法示例。
在下文中一共展示了test.evaluate方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: main
# 需要導入模塊: import test [as 別名]
# 或者: from test import evaluate [as 別名]
def main(train_tensor, dev_tensor, candidates_tensor, model, config):
logger.info('Run main with config {}'.format(config))
epochs = config['epochs']
batch_size = config['batch_size']
negative_cand = config['negative_cand']
save_dir = config['save_dir']
# TODO: Add LR decay
optimizer = tf.train.AdamOptimizer(config['lr']).minimize(model.loss)
prev_best_accuracy = 0
saver = tf.train.Saver()
config = tf.ConfigProto()
config.gpu_options.allow_growth = True
with tf.Session(config=config) as sess:
sess.run(tf.global_variables_initializer())
for epoch in range(epochs):
avg_loss = _train(train_tensor, batch_size, negative_cand, model, optimizer, sess)
# TODO: Refine dev loss calculation
avg_dev_loss = _forward_all(dev_tensor, model, sess)
logger.info('Epoch: {}; Train loss: {}; Dev loss: {};'.format(epoch, avg_loss, avg_dev_loss))
if epoch % 2 == 0:
dev_eval = evaluate(dev_tensor, candidates_tensor, sess, model)
logger.info('Evaluation: {}'.format(dev_eval))
accuracy = dev_eval[2]
if accuracy >= prev_best_accuracy:
logger.debug('Saving checkpoint')
prev_best_accuracy = accuracy
saver.save(sess, save_dir)