Hi, In C++ how do I get information from a configuration file and put it in variables.
A file like this one:
#
# The number of inputs for each epoch
# Default value if omitted: 60
#
InputNumber 60
#
# The maximum epochs allowed in the network to converge
# Default value if omitted: 300
#
MaxEpochs 300
#
# The number of neurons in the input layer
# Default value if omitted: 19
#
InputNeurons 19
#
# The number of neurons in the hidden layer
# Default value if omitted: 22
#
HiddenNeurons 22
#
# The number of neurons in the output layer
# Default value if omitted: 1
#
OutputNeurons 1
#
# Default value if omitted: 0.01
#
LearningRate 0.01
#
# The dimension of each input
# Default value if omitted: 48
#
InputDim 48
Inside the # are only comments