Skip to content

Commit

Permalink
update docs for write comprehension eval
Browse files Browse the repository at this point in the history
  • Loading branch information
MegamindHenry committed Jun 20, 2021
1 parent 38526d4 commit af2565b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions docs/src/man/output.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,15 @@ CurrentModule = JudiLing
```@docs
write2csv
write2df
write_comprehension_eval
write2csv(res, data, cue_obj_train, cue_obj_val, filename)
write2csv(gpi::Vector{Gold_Path_Info_Struct}, filename)
write2csv(ts::Threshold_Stat_Struct, filename)
write2df(res, data, cue_obj_train, cue_obj_val)
write2df(gpi::Vector{Gold_Path_Info_Struct})
write2df(ts::Threshold_Stat_Struct)
write_comprehension_eval(SChat, SC, data, target_col, filename)
write_comprehension_eval(SChat, SC, SC_rest, data, data_rest, target_col, filename)
save_L_matrix(L, filename)
load_L_matrix(filename)
save_S_matrix(S, filename, data, target_col)
Expand Down
4 changes: 2 additions & 2 deletions src/output.jl
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@ function load_S_matrix(filename; header = false, sep = " ")
end

"""
write_comprehension_eval(SChat, SC, data, filename)
write_comprehension_eval(SChat, SC, data, target_col, filename)
Write comprehension evaluation into a CSV file, include target and predicted
ids and indentifiers and their correlations.
Expand Down Expand Up @@ -599,7 +599,7 @@ function write_comprehension_eval(
end

"""
write_comprehension_eval(SChat, SC, data, filename)
write_comprehension_eval(SChat, SC, SC_rest, data, data_rest, target_col, filename)
Write comprehension evaluation into a CSV file for both training and validation
datasets, include target and predicted ids and indentifiers and their
Expand Down

0 comments on commit af2565b

Please sign in to comment.