上一页 1 2 3 4 5 6 ··· 8 下一页
摘要: 1. Tabular data 不同行间没有顺序,不同列可以是不同的数据类型。(PyTorch中的tensors是homogeneous列同质的,信息在PyTorch中以数字方式存储,典型的是浮点型也有整形。) wine 数据集:https://archive.ics.uci.edu/ml/mach 阅读全文
posted @ 2020-02-25 21:11 QRain 阅读(382) 评论(0) 推荐(0) 编辑
摘要: mac初学html5使用环境 https://blog.csdn.net/fenfeiqinjian/article/details/50578500 manifest.json文件模版 https://blog.csdn.net/hellodake/article/details/84024148 阅读全文
posted @ 2020-02-24 10:16 QRain 阅读(169) 评论(0) 推荐(0) 编辑
摘要: #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 阅读全文
posted @ 2020-02-09 11:33 QRain 阅读(152) 评论(0) 推荐(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 阅读全文
posted @ 2020-02-08 19:01 QRain 阅读(374) 评论(0) 推荐(0) 编辑
摘要: #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 阅读全文
posted @ 2020-02-08 18:06 QRain 阅读(166) 评论(0) 推荐(0) 编辑
摘要: #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 阅读全文
posted @ 2020-02-08 17:52 QRain 阅读(89) 评论(0) 推荐(0) 编辑
摘要: //dfs模版 #include <vector> #include <iostream> using namespace std; struct node { vector<int>children; }t[101]; int ithLevel[101];//保存第i层叶子结点的数目 int ma 阅读全文
posted @ 2020-02-08 14:40 QRain 阅读(120) 评论(0) 推荐(0) 编辑
摘要: //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 阅读全文
posted @ 2020-02-08 14:20 QRain 阅读(162) 评论(0) 推荐(0) 编辑
摘要: #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}; 阅读全文
posted @ 2020-02-08 10:34 QRain 阅读(266) 评论(0) 推荐(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; 阅读全文
posted @ 2020-02-08 09:55 QRain 阅读(190) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 8 下一页