摘要: 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 阅读(3413) 评论(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 阅读(143) 评论(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 阅读(116) 评论(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 阅读(132) 评论(0) 推荐(0)
摘要: start = time.clock() #long running #do something other end = time.clock() print end-start 阅读全文
posted @ 2019-04-18 12:42 Coodyzのblog 阅读(171) 评论(0) 推荐(0)
摘要: 切换64位和32位:set CONDA_FORCE_32BIT=1是切换到32位;set CONDA_FORCE_32BIT= 0是切换到64位 创建环境: conda create -n py36 python=3.6 删除环境 conda remove -n py36 --all 激活环境 ca 阅读全文
posted @ 2019-04-18 10:39 Coodyzのblog 阅读(9112) 评论(0) 推荐(0)
摘要: 转: https://blog.csdn.net/lnotime/article/details/87867108 阅读全文
posted @ 2019-04-18 09:22 Coodyzのblog 阅读(600) 评论(0) 推荐(0)
摘要: 转: https://www.jianshu.com/p/8d416ac4ad11 阅读全文
posted @ 2019-04-18 09:16 Coodyzのblog 阅读(173) 评论(0) 推荐(0)
摘要: 用户修改: 在 ~/.vimrc 中添加以下代码后,重启(用 vim 重新打开文件)vim 即可实现按 TAB 转换为4个空格: set nu set ts=4 set expandtab set cuc set cul hi CursorLine cterm=NONE ctermbg=red hi 阅读全文
posted @ 2019-04-17 22:03 Coodyzのblog 阅读(160) 评论(0) 推荐(0)
摘要: ubuntu: centos: 阅读全文
posted @ 2019-04-17 18:19 Coodyzのblog 阅读(336) 评论(0) 推荐(0)