05 2019 档案

摘要:#include #include #include #include #define MAXVEX 100 #define TRUE 1 #define FALSE 0 #define MAX 100 #define INFINITY 65535 using namespace std; typedef char VertexType; typedef int EdgeType; b... 阅读全文
posted @ 2019-05-20 15:36 Coodyzのblog 阅读(659) 评论(0) 推荐(0)
摘要:https://blog.ailemon.me/2019/02/26/solution-to-loss-doesnt-drop-in-nn-train/ 1.模型结构和特征工程存在问题 2.权重初始化方案有问题 3.正则化过度 4.选择合适的激活函数、损失函数 5.选择合适的优化器和学习速率 6.训 阅读全文
posted @ 2019-05-18 16:33 Coodyzのblog 阅读(3415) 评论(0) 推荐(0)
摘要:1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 int main(){ 7 int i=2; 8 ostringstream os; 9 os<<i; 10 cout<<os.str(); 11 return 0; 12 } 阅读全文
posted @ 2019-05-13 20:16 Coodyzのblog 阅读(144) 评论(0) 推荐(0)
摘要:#include #include #define maxlen 100005 using namespace std; int n, m; int u[maxlen], v[maxlen]; int first[maxlen], next1[maxlen]; void dfs() { for (int i = 1; i >n>>m; mm=m; for (int ... 阅读全文
posted @ 2019-05-08 21:14 Coodyzのblog 阅读(120) 评论(0) 推荐(0)
摘要:#include #include #include char ch; typedef struct BitNode{ char data; struct BitNode *lchid, *rchid; }BitNode, *BitTree; void Create_BitTree(BitTree &T){ if(ch == '\n') retur... 阅读全文
posted @ 2019-05-07 15:38 Coodyzのblog 阅读(135) 评论(0) 推荐(0)