Week 1 Jazz project-Graph disconnected error

I’ve confirmed all my variables have the correct shape, still getting this error:

ValueError: Graph disconnected: cannot obtain value for tensor Tensor(“input_2:0”, shape=(None, 1, 90), dtype=float32) at layer “lstm”. The following previous layers were accessed without issue:

My variables have shapes:

out
(None, 90)

x after argmax
(None,)

x after onehot
(None, 90)

x after repeatvec
(None, 1, 90)

Hi,
Imagine a model is a graph, Graph disconnected means the inputs and outputs in your model is disconnected (i.e., not in the same graph). Please check Step 3, to make sure you provided appropriate inputs and outputs when you create model instance.

Thanks! Got it working :slight_smile: