()
| 70 | it('multiple negative number throws error', () => { |
| 71 | const x = tf.tensor2d([1, 2, 3, 4, 5, 6, 7, 8], [2, 4]); |
| 72 | const f = () => tf.split(x, [1, -1, -1], 1); |
| 73 | expect(f).toThrowError(); |
| 74 | }); |
| 75 | it('sizes to not sum to axis size throws error', () => { |