LedStarr
LedStarr
Hey, I have encountered the same issue and wanted to show how I solved it for anybody that might end up here. I encountered it while trying to port the...
Sure thing, here you go: ``` using Tensorflow; using Tensorflow.Keras.Engine; using static Tensorflow.Binding; using static Tensorflow.KerasApi; using Tensorflow.NumPy; public Model get_actor(int num_states) { var inputs = keras.layers.Input(shape: num_states); var outputs...
@AsakusaRinne yes, sorry for the confusion, I should have pointed that out a bit more. I do get the Exception in my environment as well. Here is a test case...
@AsakusaRinne hmm if this is the case then I also think this is reasonable. The critic_loss is a constant because I wanted to show that this is happening when you...
@alexhiggins732 it might be that the type or shape is different. Can you compare the loss_value variable in both python and c# code?