fix numpy array ambiguous bool value

This commit is contained in:
Tong ZHAN 2018-05-17 13:49:54 +08:00
Родитель b11412432e
Коммит 1e631c8ac9
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -762,7 +762,7 @@ class TestModels(CorrectnessTest):
return False return False
if target_framework == 'Onnx': if target_framework == 'Onnx':
if not converted_prediction: if converted_prediction is None:
return False return False
return True return True