(file, contents)
| 67 | f.writelines(lines) |
| 68 | |
| 69 | def writetext_to_file(file, contents): |
| 70 | with open(file, 'w', encoding='utf8') as f: |
| 71 | f.write(contents) |
| 72 | |
| 73 | def eval(args, subject, dev_df, test_df): |
| 74 | logfile = "chatglmlogfile0512" |
nothing calls this directly
no outgoing calls
no test coverage detected