(self)
| 86 | |
| 87 | @unittest.skipUnless(test_level() >= 1, 'skip test in current test level') |
| 88 | def test_ms_csv_basic(self): |
| 89 | ms_ds_train = MsDataset.load( |
| 90 | 'clue', subset_name='afqmc', |
| 91 | split='train').to_hf_dataset().select(range(5)) |
| 92 | print(next(iter(ms_ds_train))) |
| 93 | |
| 94 | @unittest.skipUnless(test_level() >= 1, 'skip test in current test level') |
| 95 | def test_load_local_csv(self): |
nothing calls this directly
no test coverage detected