上一页 1 ··· 3 4 5 6 7 8 9 下一页

2019年7月15日

python 浅拷贝与深拷贝

摘要: >>> a= {1:[1,2]}>>> b = a>>> b[2]=3>>> b {1: [1, 2], 2: 3} >>> a{1: [1, 2], 2: 3} a、b指向同一个对象,父对象与子对象的更新均关联。 a、b是一个独立的对象,但相同的子对象指向同一对象,相关联。 a、b完全拷贝了父对象 阅读全文

posted @ 2019-07-15 20:29 七昂的技术之旅 阅读(265) 评论(0) 推荐(0) 编辑

2019年7月5日

查看tensorflow pb模型文件

摘要: 运行 阅读全文

posted @ 2019-07-05 15:29 七昂的技术之旅 阅读(2977) 评论(1) 推荐(1) 编辑

2019年7月4日

MxNet 模型转Tensorflow pb模型

摘要: 用mmdnn实现模型转换 参考链接:https://www.twblogs.net/a/5ca4cadbbd9eee5b1a0713af 会生成resnet50.json(可视化文件) resnet50.npy(权重参数) resnet50.pb(网络结构)三个文件。 生成tf_resnet50.p 阅读全文

posted @ 2019-07-04 18:42 七昂的技术之旅 阅读(3496) 评论(0) 推荐(0) 编辑

2018年3月12日

PATA 1071 Speech Patterns.

摘要: #include using namespace std; bool check(char c)//检查是否为字母或数字 { if(c>='A'&&c='a'&&c='0'&&c count; string str; getline(cin,str); int i = 0; while(i='A'&&str[i]::iterator it=count.begin();it != co... 阅读全文

posted @ 2018-03-12 22:23 七昂的技术之旅 阅读(222) 评论(0) 推荐(0) 编辑

2018年3月3日

PATA 1027 Colors In Mars

摘要: #include char radix[13] = {'0','1','2','3','4','5','6','7','8','9','A','B','C'}; int main() { int g,r,b; scanf("%d%d%d",&g,&r,&b); printf("#"); printf("%c%c%c% 阅读全文

posted @ 2018-03-03 16:13 七昂的技术之旅 阅读(158) 评论(0) 推荐(0) 编辑

2018年2月18日

PATB 1038. 统计同成绩学生(20)

摘要: https://www.patest.cn/contests/pat-b-practise/1038 阅读全文

posted @ 2018-02-18 22:08 七昂的技术之旅 阅读(157) 评论(0) 推荐(0) 编辑

2018年2月14日

1036. 跟奥巴马一起编程(15)

摘要: https://www.patest.cn/contests/pat-b-practise/1036 阅读全文

posted @ 2018-02-14 16:05 七昂的技术之旅 阅读(181) 评论(0) 推荐(0) 编辑

2018年2月13日

PATA 1036. Boys vs Girls (25)

摘要: https://www.patest.cn/contests/pat-a-practise/1036 阅读全文

posted @ 2018-02-13 23:21 七昂的技术之旅 阅读(350) 评论(0) 推荐(0) 编辑

PATA 1006. Sign In and Sign Out (25)

摘要: #include using namespace std; const int N = 100005; struct visitor{ char ID[20]; int in_h,in_m,in_s; int out_h,out_m,out_s; }v[N]; int main(){ int m,i; struct visitor late,early;//最晚,最早 scan... 阅读全文

posted @ 2018-02-13 20:31 七昂的技术之旅 阅读(183) 评论(0) 推荐(0) 编辑

PATB 1032 挖掘机技术哪家强(20)

摘要: #include #include using namespace std; const int N = 100001; vector school[N];//玩玩vector int sum[N]; int main() { int n,id,score; scanf("%d",&n); for(int i = 0;i ::iterator it = school[t].beg... 阅读全文

posted @ 2018-02-13 19:11 七昂的技术之旅 阅读(257) 评论(0) 推荐(0) 编辑

上一页 1 ··· 3 4 5 6 7 8 9 下一页

导航