Removing useless files

This commit is contained in:
chabisik 2022-01-18 13:06:51 +01:00
parent 9de43f8a77
commit 7af273847e

View file

@ -1,28 +0,0 @@
#include <iostream>
#include "annclasses.h"
using namespace std;
int main(int argc, char *argv[])
{
Tools::activate_randomness();
cout << "Bonjour et bienvenu" << endl;
Network network(15, 3);
network.print();
cout << endl << endl;
/*for(int episode=1;episode<=100000;episode++)
{
network.forward({1.0,1.0,1.0}, {1.0,2.0,3.0});
network.backward(0.001);
}*/
//network.print();
cout << endl << endl;
network.print();
cout << "verdict : " << network.predict({1.0,1.0,1.0},false) << endl;
return 0;
}