-
Notifications
You must be signed in to change notification settings - Fork 13
Description
Hello,
thank you for providing your code!
I tried running the provided example (without changes) for the parkinson dataset and there seems to be an error. So the training is fine but wenn dasp = DASP(model) is executed, I get the following message:
ValueError: Layer dense_1 expects 1 input(s), but it received 3 input tensors. Inputs received: [<tf.Tensor 'Placeholder:0' shape=(None, 18) dtype=float32>, <tf.Tensor 'Placeholder_1:0' shape=(None, 18) dtype=float32>, <tf.Tensor 'Placeholder_2:0' shape=(None, 1) dtype=float32>]
The problem appears to be while executing the line:
first_layer_output = ProbDenseInput(l.units, activation=l.activation, name=l.name)(self.inputs)
from the dasp.py file. Do you know, what might be the problem? Thanks in advance!