C++로 만드는 perceptron
학교 과제에서 perceptron 구현하는게 있었는데 그냥 올려본당 Class0 = {0.05, 0.1, 0.15, 0.2, 0.05, 0.3, 0.35, 0.4, 0.45, 0.49, 0.52, 0.56, 0.57, 0.82}Class1 = {0.12, 0.47, 0.48, 0.5, 0.55, 0.6, 0.65, 0.7, 0.75, 0.8, 0.85, 0.9, 0.95} 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970#include#include using namespace std; float w0 = -0.1;flo..