(line)
| 29 | |
| 30 | def get_input_from_sample(self, epochs): |
| 31 | def _parse_func(line): |
| 32 | data = tf.string_split([line], ",") |
| 33 | return data |
| 34 | |
| 35 | dataset = tf.data.TextLineDataset(self.params['sample_dir']) |
| 36 | dataset = dataset.map(_parse_func) |
nothing calls this directly
no outgoing calls
no test coverage detected