(output_folder)
| 113 | |
| 114 | |
| 115 | def DyIEPP_ace2005_file_tuple(output_folder): |
| 116 | if not os.path.exists(output_folder): |
| 117 | os.makedirs(output_folder, exist_ok=True) |
| 118 | |
| 119 | conll_2012_folder = "data/raw_data/dyiepp_ace2005" |
| 120 | |
| 121 | file_tuple = [ |
| 122 | (conll_2012_folder + "/train.json", output_folder + '/train'), |
| 123 | (conll_2012_folder + "/dev.json", output_folder + '/val'), |
| 124 | (conll_2012_folder + "/test.json", output_folder + '/test'), |
| 125 | ] |
| 126 | |
| 127 | return file_tuple |
| 128 | |
| 129 | |
| 130 |
nothing calls this directly
no outgoing calls
no test coverage detected