Updated fictitious-dump-lf.py

This commit is contained in:
Panupong Pasupat 2017-03-13 15:46:48 -07:00
parent 0561b450e5
commit da52c3e6f0
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ SCHEMES = {
'e': lambda vector: all(x != 'Ax' and x != 'Bx' for x in vector),
# [A] When the Turkers agree on an answer, LF must agree with that
# Also the Turkers must agree on the original table
'A': lambda vector: vector[0][0] == 'A' and all(x != 'Ax' for x in vector),
'A': lambda vector: vector and vector[0][0] == 'A' and all(x != 'Ax' for x in vector),
# [a] When the Turkers agree on an answer, LF must agree with that
'a': lambda vector: all(x != 'Ax' for x in vector),
# [l] Allow LF to disagree with Turkers at most once