We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22c97e0 commit 9f0b0f0Copy full SHA for 9f0b0f0
tests/batch_generators/test_batch_generator_keras.py
@@ -71,7 +71,7 @@ def test_fit_multiple_epochs(self):
71
keras_model.fit(keras_bg, epochs=2)
72
73
def test_multiple_inputs(self):
74
- keras_bg = BatchGenerator(self.data, x_structure=[('x1', None), ('x2', None)],
+ keras_bg = BatchGenerator(self.data, x_structure=(('x1', None), ('x2', None)),
75
y_structure=('y1', self.y1_enc))
76
inp1 = keras.layers.Input(shape=(1,))
77
inp2 = keras.layers.Input(shape=(1,))
@@ -82,7 +82,7 @@ def test_multiple_inputs(self):
82
83
84
def test_multiple_inputs_outputs(self):
85
86
y_structure=[('y1', self.y1_enc), ('y2', self.y2_enc)])
87
88
0 commit comments