You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
i got an Index Out of Range Exception when creating a new BasicMLDataSet through double[][].
The Error is in Line 185. var tempInput = new double[input[0].Length];
should be
var tempInput = new double[input[i].Length];
The text was updated successfully, but these errors were encountered:
Hi,
i got an Index Out of Range Exception when creating a new BasicMLDataSet through double[][].
The Error is in Line 185.
var tempInput = new double[input[0].Length];
should be
var tempInput = new double[input[i].Length];
The text was updated successfully, but these errors were encountered: