0

I am training an artificial neural network in C++ using FANN library. I cannot understand/translate the syntax used to save neurons' weights in a text file through the function "fann_save()", in particular at section connections (connected_to_neuron, weight)= (the last one in the file).

What are the values printed referring to?

4

2 回答 2

0

没有关于它的官方文档意味着书面价值不适合用户。图书馆内部使用它来保存经过训练的 ANN 的加载,如果你学习它,你必须检查源代码

于 2015-07-22T08:50:13.133 回答
0

“......打印的值是指什么?

connections包含connected_to_neuronweight(每个连接)。位置(顺序)定义了原始神经元(由 定义neurons (num_inputs, activation_function, activation_steepness)=)。

考虑改用fann_get_connection_array(或fann_print_connections)。

于 2019-02-22T12:24:48.197 回答