会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Loading
Jun'Blog
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
8
下一页
2022年3月24日
长见识了(invalid use of member 'std::vector<int> Solution::father(int)' (did you forget the '&' ?))
摘要: class Solution { private: vector<int> father(1005); } 上述写法是错误的,因为编译器无法区分这个vector是成员变量声明还是成员方法声明。 class Solution { private: vector<int> father; // 成员变量
阅读全文
posted @ 2022-03-24 10:40 Guang'Jun
阅读(231)
评论(0)
推荐(0)
2022年3月17日
优先队列
摘要: 优先队列priority_queue的比较函数 STL头文件:#include 优先队列: 默认从大到小排列:priority_queue<node>q; # 自带的比较函数 priority_queue<int, vector<int>, less<int> > q;//等价于默认,从大到小排 /
阅读全文
posted @ 2022-03-17 08:29 Guang'Jun
阅读(58)
评论(0)
推荐(0)
2022年3月6日
C++ ACM输入输出读取
摘要: 万能库 #include<bits/stdc++.h> 1. scanf 函数 scanf()用法 int a,b,c; scanf("%d", &a); // 读取一个数字赋值给a 如果成功,该函数返回成功匹配和赋值的个数。如果到达文件末尾或发生读错误,则返回 EOF。 while(scanf(%
阅读全文
posted @ 2022-03-06 18:33 Guang'Jun
阅读(321)
评论(0)
推荐(0)
2021年12月5日
C++ sort使用
摘要: vector<int> c; sort(c.begin(),c.end(), cmp); 参数3:默认可以不填,如果不填sort会默认按数组升序排序。也就是1,2,3,4排序。也可以自定义一个排序函数,改排序方式为降序什么的,也就是4,3,2,1这样。 bool cmp1(int a,int b)/
阅读全文
posted @ 2021-12-05 21:10 Guang'Jun
阅读(40)
评论(0)
推荐(0)
2021年12月3日
c++ unordered_set的使用
摘要: 成员方法 功能 begin() 返回指向容器中第一个元素的正向迭代器。 end(); 返回指向容器中最后一个元素之后位置的正向迭代器。 cbegin() 和 begin() 功能相同,只不过其返回的是 const 类型的正向迭代器。 cend() 和 end() 功能相同,只不过其返回的是 cons
阅读全文
posted @ 2021-12-03 22:28 Guang'Jun
阅读(1113)
评论(0)
推荐(0)
2021年11月19日
随机种子固定
摘要: torch.manual_seed(seed) # 为CPU设置随机种子 torch.cuda.manual_seed(seed) # 为当前GPU设置随机种子 torch.cuda.manual_seed_all(seed) # if you are using multi-GPU,为所有GPU设
阅读全文
posted @ 2021-11-19 00:28 Guang'Jun
阅读(316)
评论(0)
推荐(0)
2021年9月30日
RuntimeError: (NotFound) No Output(X@GRAD) found for BatchNormGrad operator. [Hint: Expected ctx->HasOutput(framework::GradVarName("X")) == true, but received ctx->HasOutput(framework::GradVarName
摘要: paddle 报错 RuntimeError: (NotFound) No Output(X@GRAD) found for BatchNormGrad operator. [Hint: Expected ctx->HasOutput(frameworkGradVarName("X")) == tr
阅读全文
posted @ 2021-09-30 01:39 Guang'Jun
阅读(492)
评论(0)
推荐(0)
2021年9月24日
K折交叉验证
摘要: k 折交叉验证(k-fold cross validation) 静态的「留出法」对数据的划分方式比较敏感,有可能不同的划分方式得到了不同的模型。「k 折交叉验证」是一种动态验证的方式,这种方式可以降低数据划分带来的影响。具体步骤如下: 将数据集分为训练集和测试集,将测试集放在一边 将训练集分为 k
阅读全文
posted @ 2021-09-24 20:14 Guang'Jun
阅读(2182)
评论(1)
推荐(1)
2021年9月12日
kill python 进程
摘要: kill python 进程 ps -ef|grep python|grep -v grep|cut -c 9-15|xargs kill -9 sudo fuser -v /dev/nvidia2 |awk '{for(i=1;i<=NF;i++)print "kill -9 " $i;}' |
阅读全文
posted @ 2021-09-12 19:35 Guang'Jun
阅读(729)
评论(0)
推荐(0)
2021年8月24日
禁止Linux内核更新
摘要: 查看已有内核 sudo dpkg --get-selections | grep linux 查看在用内核 uname -a 锁住在用的内核 sudo apt-mark hold linux-image-4.15.0-45-generic
阅读全文
posted @ 2021-08-24 21:16 Guang'Jun
阅读(153)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
8
下一页
公告