摘要:
输出网络结构,使用CNN,由卷积层,池化层和全连接层构成 将图像转化成tensor的时候做了简单的数据增强 # 数据预处理和数据增强 transform = transforms.Compose([ transforms.RandomHorizontalFlip(), transforms.Rand 阅读全文
摘要:
缺失值处理 将一些0值不合理的列以列均值填充 # 缺省值处理 features_with_zero = ['Glucose', 'BloodPressure', 'SkinThickness', 'Insulin', 'BMI'] data[features_with_zero] = data[fe 阅读全文
摘要:
直接抄WIDA的pbds板子 #include<bits/stdc++.h> #include <ext/pb_ds/assoc_container.hpp> using namespace __gnu_pbds; using namespace std; typedef pair<int, int 阅读全文
摘要:
区间众数要求即有次数又要数字最小 #include<bits/stdc++.h> using namespace std; #define x first #define y second typedef pair<int,int> PII; typedef long long ll; typede 阅读全文
摘要:
关键在把矩形框点转化为点的影响放大为矩形,此时转变为求一个点的权值最大 #include<bits/stdc++.h> using namespace std; #define x first #define y second typedef pair<int,int> PII; typedef l 阅读全文
摘要:
细节不少 //根据更相减损法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 阅读全文
摘要:
因为洛谷出现UE在acwing提交,输入格式略有修改 #include<bits/stdc++.h> using namespace std; #define x first #define y second typedef pair<int,int> PII; typedef long long 阅读全文
摘要:
#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 阅读全文
摘要:
注意size信息应该存放在info里和tag运算,已经tag是表示子树未处理的信息 #include<bits/stdc++.h> using namespace std; #define x first #define y second typedef pair<int,int> PII; typ 阅读全文
摘要:
#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 阅读全文