Lab3, Part1: ValueError: too many values to unpack (expected 2)
When running the source code without any modifications, I get the following error:
ValueError Traceback (most recent call last)
ValueError: too many values to unpack (expected 2)
I got the sample issue, I don't make sense why? this software upgraded?
There appears to have been an API change to HistogramWrapper. It's Return type is now a capsa.RiskTensor containing both the predicted y_hat (tf.Tensor) and the bias value for each input sample (tf.Tensor).
Here want I did to fix up the code...
# Call the risk-aware model to generate scores
#predictions, bias = bias_wrapped_dense_NN(x_test)
prediction = bias_wrapped_dense_NN(x_test)
bias = prediction.bias # fix up
I'll take a try, thanks.