private void buttonOutput_Click(object sender, EventArgs e)
        {
            FormInformationLayers formInformationLayers1 = new FormInformationLayers(numarHiddenLayers, this.neuroni);

            formInformationLayers1.Show();
            Console.WriteLine("ButtonO");
        }
        private void buttonLayer3_Click(object sender, EventArgs e)
        {
            FormInformationLayers formInformationLayers1 = new FormInformationLayers(2, this.neuroni);

            formInformationLayers1.Show();
            Console.WriteLine("Button3");
        }