()
| 2723 | model = new tfl.LayersModel({inputs: input, outputs: output}); |
| 2724 | } |
| 2725 | function prepData() { |
| 2726 | x = ones([numExamples, inputSize]); |
| 2727 | y = ones([numExamples, outputSize]); |
| 2728 | } |
| 2729 | |
| 2730 | it('Calling evaluate before compile leads to error', () => { |
| 2731 | prepModel(); |
no test coverage detected
searching dependent graphs…