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
for(int i = 0; i < ((use_bias_neurons && k < (layer_sizes.size() - 1)) ? layer_sizes[k] + 1 : layer_sizes[k]); i++){ // if we add bias, add one artificial node to each layer
vec1.push_back(0);
}
data.push_back(vec1);
}
}
double& vec2d::operator()(int i, int k){ // returns ith data at kth layer.