# Author: Baozi #-*- codeing:utf-8 -*- import _pickle as pickle from sklearn import ensemble import random from sklearn.metrics import accuracy_score,... ...
分类:
移动开发 时间:
2019-03-04 11:25:54
阅读次数:
158
一、R-FCN初探 1. R-FCN贡献 提出Position-sensitive score maps来解决目标检测的位置敏感性问题; 区域为基础的,全卷积网络的二阶段目标检测框架; 比Faster-RCNN快2.5-20倍(在K40GPU上面使用ResNet-101网络可以达到 0.17 sec ...
分类:
其他好文 时间:
2019-03-02 11:05:26
阅读次数:
176
# 格式化 print("hello ,%s you have $%d" % ("Jack", 10000)) print("%0.4f" % 3.1415926) print("北戴河房价环比上涨:%0.2f %%" % 2.87) score_1 = 72 score_2 = 85 r = (s... ...
分类:
编程语言 时间:
2019-02-25 16:27:47
阅读次数:
176
```
#创建表user_score
create table user_score
( name varchar(20), subjects varchar(20), score int
);
insert into user_score(name,subjects,score) values('... ...
分类:
数据库 时间:
2019-02-25 12:05:29
阅读次数:
182
目标平台stm32f7 rtesm 4.11.3/cpukit/score/cpu,只保留arm rtesm 4.11.3/c/src/lib/libcpu,只保留arm和shared rtesm 4.11.3/c/src/lib/libcpu/arm, 只保留shared rtesm 4.11.3 ...
分类:
其他好文 时间:
2019-02-24 15:06:51
阅读次数:
210
```C++ include include include using namespace std; const int MAXN = 10010; struct PAT_Student{ int id; //考号 int score[6]; //每道题的分数 bool flag; //是否有能通 ...
分类:
其他好文 时间:
2019-02-24 11:04:26
阅读次数:
161
```C++ include include include using namespace std; const int MAXN = 100010; struct Student{ int id; char name[10]; int score; }stu[MAXN]; bool cmp1(S ...
分类:
其他好文 时间:
2019-02-24 11:00:09
阅读次数:
158
```C++ include include include using namespace std; struct Stu_info{ int id; //存放 id 的六位整数 int score[4]; //存放 C M E A 的(分数)数组 }stu[2010]; char course[ ...
分类:
其他好文 时间:
2019-02-24 10:41:37
阅读次数:
129
```C++ #include #include #include using namespace std; const int maxn = 30010; struct Student{ char id[15]; int score; int local_number; int local_ran... ...
分类:
其他好文 时间:
2019-02-24 10:35:34
阅读次数:
132
```C++ include include include // STL using namespace std; //使用sort()函数必须加上 const int MAXN = 50; struct Student{ char name[15]; char id[15]; int score ...
分类:
其他好文 时间:
2019-02-24 10:24:42
阅读次数:
158