(self)
| 131 | |
| 132 | class Args: |
| 133 | def __init__(self): |
| 134 | self.train_data_path = "./data/train.json" |
| 135 | self.val_data_path = "./data/test.json" |
| 136 | self.label_path = "./data/label2id.json" |
| 137 | self.max_seq_length = 128 |
| 138 | |
| 139 | args = Args() |
| 140 |
nothing calls this directly
no outgoing calls
no test coverage detected