DavidGriscti

Results 5 comments of DavidGriscti

Hi. When I use a small BatchSize ,For example, 100,200... the ConvNetSharp neural network will not converge. But when I use the frameworks like Keras, and use the same small...

double[][] traindata = ReadFromCsvFile(@"C:\LD\train111.csv", true); double[][] trainout = ReadFromCsvFile(@"C:\LD\out111.csv", true); var featurenum = traindata[0].Length; var outputnum = trainout[0].Length; Net net = new ConvNetSharp.Core.Net(); net.AddLayer(new InputLayer(1, 1, featurenum)); net.AddLayer(new FullyConnLayer(128)); net.AddLayer(new...

Hi, There is keras code ,it is using R: set.seed(1234) library(keras) root_mean_squared_error= function(y_true, y_pred) { k_sqrt(k_mean(k_square(y_pred - y_true),keepdims = T)) } metric_rmse % layer_dense(units = 1) model %>% compile( loss...

![LOSS](https://user-images.githubusercontent.com/49096443/56880426-eac7aa00-6a5c-11e9-94fe-ac69a3bc1a8c.png)

Thank you for pointing out the mistake. Could you write an example code or pseudocode for using the batch and train?