Skip to content

Commit 8558d3e

Browse files
committed
hotfix
1 parent 79d0c10 commit 8558d3e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/eval.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ function eval_SC_loose(SChat,SC,k,data,target_col)
330330
if i in p
331331
correct += 1
332332
else
333-
if data[i,target_col] in data[p,:Word]
333+
if data[i,target_col] in data[p,target_col]
334334
correct += 1
335335
end
336336
end

src/test_combo.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ A wrapper function for a full model for a specific combination of parameters.
44
function test_combo end
55

66
"""
7-
function test_combo(::String, ::String, ::Vector, ::Vector, ::Vector) -> ::Nothing
7+
function test_combo(::String, ::Vector, ::Vector, ::Vector) -> ::Nothing
88
99
A wrapper function for a full model for a specific combination of parameters.
1010

0 commit comments

Comments
 (0)