摘要: 1、二进制神经网络分类 #include <iostream> #include <vector> #include <cmath> // 定义神经网络的层 struct Layer { std::vector<double> weights; double bias; }; // 定义激活函数(这 阅读全文
posted @ 2023-12-29 13:51 阿坦 阅读(165) 评论(0) 推荐(0)