Adrien Deverin

Results 10 comments of Adrien Deverin

I think the identification of the problem is here : in FitInternal() function is writed ``` CallbackList callbackList2 = new CallbackList(new CallbackParams { Model = this, Verbose = verbose, Epochs...

The error in DenseArgs object seems to have been patched. However the code creating the dense layer seems to not take in account anywhere this regularizer (see Tensorflow.Keras.Layers.Dense) : ```...

In the second log, loss keep increasing every time (I didn't show it for more epoch but it's like I said in the thread). Moreover, I see mainly the val_loss...

It's exactly what I did, in fact, and the problem is the same as in situation 2 (it will not converge). To summarize: If model.compile and model.fit are in the...

I'll add another strange observation. I tried another example, the one from the TensorFlow.NET GitHub page, **and got the opposite result**! Below is the code used: ``` // Load data...

I encountered the same problem months ago. #1017 My conclusion was that some layers (notably the Cropping layer in my case) weren't managed properly. Could you provide the model that...

Have you try with a direct path folder (folder need to be created before) ? Example : @"C:\GitHub\TestTF\ResnetModel" Normally you get .pb file in it after

It's really strange. I tried it myself an no problem appear. Everything go well. Try with this config (normally it doesn't matter, your seems good) : - Dependancy : SciSharp.TensorFlow.Redist...

Me too, I tried to reproduce your bug, but it's working correctly on my computer... :/ (To add more, I was testing it in .NET 6.0) Another idea to understand...