码迷,mamicode.com
首页 >  
搜索关键字:score    ( 2092个结果
Appscanner实验还原code3
# 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论文理解
一、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
python3 输出内容格式化
# 格式化 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
SQL竖表转换成横表统计
``` #创建表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
rtems目录清理
目标平台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
PAT 甲级 A1075 (2019/02/18)
```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
PAT 甲级 A1028 (2019/02/17)
```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
PAT 甲级 A1012 (2019/02/15)
```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
PAT 甲级 A1025 (2019/02/17)
```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
PAT 甲级 A1083 (2019/02/17)
```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
2092条   上一页 1 ... 42 43 44 45 46 ... 210 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!