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 af64ebc commit 22c97e0Copy full SHA for 22c97e0
tests/batch_generators/test_batch_generator_tf.py
@@ -76,7 +76,7 @@ def test_fit_multiple_epochs(self):
76
tf_model.fit(tf_bg, epochs=2)
77
78
def test_multiple_inputs(self):
79
- keras_bg = BatchGeneratorTF(self.data, x_structure=[('x1', None), ('x2', None)],
+ keras_bg = BatchGeneratorTF(self.data, x_structure=(('x1', None), ('x2', None)),
80
y_structure=('y1', self.y1_enc))
81
inp1 = tf.keras.layers.Input(shape=(1,))
82
inp2 = tf.keras.layers.Input(shape=(1,))
@@ -87,7 +87,7 @@ def test_multiple_inputs(self):
87
keras_model.fit(keras_bg, epochs=2)
88
89
def test_multiple_inputs_outputs(self):
90
91
y_structure=[('y1', self.y1_enc), ('y2', self.y2_enc)])
92
93
0 commit comments