摘要:
1. Tabular data 不同行间没有顺序,不同列可以是不同的数据类型。(PyTorch中的tensors是homogeneous列同质的,信息在PyTorch中以数字方式存储,典型的是浮点型也有整形。) wine 数据集:https://archive.ics.uci.edu/ml/mach 阅读全文
摘要:
mac初学html5使用环境 https://blog.csdn.net/fenfeiqinjian/article/details/50578500 manifest.json文件模版 https://blog.csdn.net/hellodake/article/details/84024148 阅读全文
摘要:
#include<iostream> using namespace std; int main() { double w[4],t[4],l[4],tmp[3]; for(int i=0;i<3;i++) cin>>w[i]>>t[i]>>l[i]; double r=0; for(int i=0 阅读全文
摘要:
#include <vector> #include<iostream> using namespace std; int main() { int k; cin>>k; int left_index=0,right_index=k-1,sum=-1,tmp=0,tmp_index=0; vecto 阅读全文
摘要:
#include <stdio.h> #include<iostream> using namespace std; struct ID { char id_num[16]; int begin; int end; }; int main() { int m,H,M,S; struct ID unl 阅读全文
摘要:
#include <vector> #include <string.h> #include <iostream> using namespace std; int main() { int sum=0,j=0; char n[101]; char a[11][6]={"zero","one","t 阅读全文
摘要:
//dfs模版 #include <vector> #include <iostream> using namespace std; struct node { vector<int>children; }t[101]; int ithLevel[101];//保存第i层叶子结点的数目 int ma 阅读全文
摘要:
//Dijkstra算法,模版 #include <algorithm> #include <iostream> using namespace std; int main() { int n,m,C1,C2,c1,c2; int weight[501],dis[501],num[501],w[50 阅读全文
摘要:
#include <math.h> #include <stdio.h> #include <iostream> using namespace std; int main() { int k1,k2,n,max_n=0,c=0; double an; double poly[1001]={0}; 阅读全文
摘要:
#include <math.h> #include <vector> #include <stdio.h> #include <iostream> using namespace std; int main() { int a,b,c,w=0; vector <int> v; cin>>a>>b; 阅读全文