(self)
| 113 | self.ds_stats_pc = save_dataset_statistics(self.ds_stats, Path(output_dir) / "ds_stats.json") |
| 114 | |
| 115 | def __len__(self): |
| 116 | if self.use_raw_dataloader: |
| 117 | return self.raw_length // self.total_ranks |
| 118 | else: |
| 119 | return self.raw_length |
| 120 | |
| 121 | def multi_modal_get_item(self, data_item): |
| 122 | pixel_values_seq = [] |
nothing calls this directly
no outgoing calls
no test coverage detected