Skip to content

Commit 6e03197

Browse files
Fixed bug
1 parent c1a4754 commit 6e03197

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app/evaluation.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,8 @@ def evaluation_function(response, answer, params):
9090

9191
remark = ""
9292

93-
onedim_format = lambda x: "Entry "+str(x[1][0])
93+
row_format = lambda x: "Entry "+str(x[1][1])
94+
col_format = lambda x: "Entry "+str(x[1][0])
9495
table_format = lambda x: "Entry on row "+str(x[1][0])+", column "+str(x[1][1])
9596
general_format = lambda x: "Entry ("+"".join([str(i) for i in x[1][0:-1]+","])+str(x[1][-1])+")"
9697

0 commit comments

Comments
 (0)