Python-Lambda函数无效的语法错误

时间:2019-06-03 18:37:00

标签: python python-3.x

我有以下代码,并为SyntaxError: invalid syntax获得了lambda (v, p): v == p

predictions = tree_model.predict(test_data.map(lambda p: p.features))
labels_and_preds = test_data.map(lambda p: p.label).zip(predictions)

t0 = time()
test_accuracy = labels_and_preds.filter(lambda (v, p): v == p).count() / float(test_data.count())
tt = time() - t0

正确的语法是什么?

0 个答案:

没有答案