2024年10月23日
摘要: 输出网络结构,使用CNN,由卷积层,池化层和全连接层构成 将图像转化成tensor的时候做了简单的数据增强 # 数据预处理和数据增强 transform = transforms.Compose([ transforms.RandomHorizontalFlip(), transforms.Rand 阅读全文
posted @ 2024-10-23 22:17 ruoye123456 阅读(4) 评论(0) 推荐(0) 编辑
2024年10月21日
摘要: 缺失值处理 将一些0值不合理的列以列均值填充 # 缺省值处理 features_with_zero = ['Glucose', 'BloodPressure', 'SkinThickness', 'Insulin', 'BMI'] data[features_with_zero] = data[fe 阅读全文
posted @ 2024-10-21 09:14 ruoye123456 阅读(4) 评论(0) 推荐(0) 编辑
2024年10月1日
摘要: 直接抄WIDA的pbds板子 #include<bits/stdc++.h> #include <ext/pb_ds/assoc_container.hpp> using namespace __gnu_pbds; using namespace std; typedef pair<int, int 阅读全文
posted @ 2024-10-01 16:53 ruoye123456 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 区间众数要求即有次数又要数字最小 #include<bits/stdc++.h> using namespace std; #define x first #define y second typedef pair<int,int> PII; typedef long long ll; typede 阅读全文
posted @ 2024-10-01 13:05 ruoye123456 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 关键在把矩形框点转化为点的影响放大为矩形,此时转变为求一个点的权值最大 #include<bits/stdc++.h> using namespace std; #define x first #define y second typedef pair<int,int> PII; typedef l 阅读全文
posted @ 2024-10-01 12:37 ruoye123456 阅读(2) 评论(0) 推荐(0) 编辑
2024年9月30日
摘要: 细节不少 //根据更相减损法gcd(x,y) = gcd(x,y-x) //推广到三项为gcd(x,y,z) = gcd(x,y-x,z-y) //可以推广到n项 #include<bits/stdc++.h> using namespace std; #define x first #define 阅读全文
posted @ 2024-09-30 14:42 ruoye123456 阅读(8) 评论(0) 推荐(0) 编辑
2024年9月29日
摘要: 因为洛谷出现UE在acwing提交,输入格式略有修改 #include<bits/stdc++.h> using namespace std; #define x first #define y second typedef pair<int,int> PII; typedef long long 阅读全文
posted @ 2024-09-29 18:19 ruoye123456 阅读(2) 评论(0) 推荐(0) 编辑
摘要: #include<bits/stdc++.h> using namespace std; #define x first #define y second typedef pair<int,int> PII; typedef long long ll; typedef unsigned long l 阅读全文
posted @ 2024-09-29 17:27 ruoye123456 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 注意size信息应该存放在info里和tag运算,已经tag是表示子树未处理的信息 #include<bits/stdc++.h> using namespace std; #define x first #define y second typedef pair<int,int> PII; typ 阅读全文
posted @ 2024-09-29 16:35 ruoye123456 阅读(2) 评论(0) 推荐(0) 编辑
摘要: #include<bits/stdc++.h> using namespace std; #define x first #define y second typedef pair<int,int> PII; typedef long long ll; typedef unsigned long l 阅读全文
posted @ 2024-09-29 15:32 ruoye123456 阅读(1) 评论(0) 推荐(0) 编辑