()
| 67 | |
| 68 | def generate_sample(self, line): |
| 69 | def wd_reader(): |
| 70 | for line in tf_dataset: |
| 71 | |
| 72 | input_data = self.line_process(line) |
| 73 | |
| 74 | feature_name = ["dense_input"] |
| 75 | for idx in categorical_range_: |
| 76 | feature_name.append("C" + str(idx - 13)) |
| 77 | feature_name.append("label") |
| 78 | yield zip(feature_name, input_data) |
| 79 | |
| 80 | return wd_reader |
| 81 |
nothing calls this directly
no test coverage detected