The artificial neural network toolbox of Scilab accepts different parameters for the training: number of iterations, tolerance, and learning rate.
Using the same set of data obtained by characterizing the "shape" and "color" of the petals of the blue plumbago (Plumbago auriculata) and galphimia vine (Galphimia gracilis), the following output was given by the ann_FF_run() function:
first sample: 0.5002511
second sample: 0.5023937
third sample: 0.5002258
parameters:
- learning rate: 2.5
- tolerance: 1
- iterations: 700
If you'd remember, the first and third samples are of the blue plumbago and the second one is from a galphimia vine. The results indicate that with the given parameters, the computer was able to determine which of them come from a certain type of plant. Although the value given for the first and second differ only by as much as 0.002, we can say that the output is reliable, as the difference between the first and the third vary only by around 0.000025. The first difference is almost 100 times than that of the second.
I tried to vary the number of iterations that the ANN toolbox would use, and found this result:
For this activity, I will give myself a grade of 10/10.
References:
1. A15 - Neural Networks. M. Soriano. 2013.
No comments :
Post a Comment