全部文章
既然要依靠先验框来回归真实框,要确定两个问题,用哪个先验框来回归真实框,如何回归真实框 1. 用哪个先验框回归真实框 哪个先验框与真实框接近,就用哪个先验框来回归真实框,我们用iou来衡量接近,一般取阈值为0.5, 如果先验框与真实框iou大于0.5,我们用这个先验框来回归这个真实框,准确来说时这些 ...
分类:其他 时间:2020-12-15 00:08:34 收藏:0 阅读:25
一、在windows10下安装wsl。 打开win,进入Microsoft Store,搜索ubuntu18.04,点击安装。等待安装完成。 二、安装编译工具链。 例如安装gcc、make、git 输入: sudo apt-get install -y build-essential make gi ...
分类:Windows开发 时间:2020-12-15 00:08:21 收藏:0 阅读:28
pip是python的第三方库管理器,pip默认跟Python一起安装。 cmd打开终端,运行pip,会有关于pip的详细信息。如下图: pip常用基础命令 pip有pip和pip3的区别1、如果系统中只安装了Python2,那么就只能使用pip。2、如果系统中只安装了Python3,那么既可以使用 ...
分类:编程语言 时间:2020-12-15 00:08:06 收藏:0 阅读:55
1 #include<stdio.h> 2 #define INF 10000000 3 int main() 4 { 5 FILE* fin , * fout ; 6 errno_t afin, afout; 7 afin = fopen_s(&fin, "data.in", "rb"); 8 a ...
分类:其他 时间:2020-12-15 00:07:56 收藏:0 阅读:520
最近重新在anaconda中重新安装了tensorflow-GPU的环境,记录一下以后备用 1、安装anaconda2、创建新环境 conda create --name your_env_name python=3.63、安装CUDA11.0 注意版本号的对应 查看自己电脑时候正确安装 https ...
分类:其他 时间:2020-12-15 00:07:42 收藏:0 阅读:27
#include<stdio.h> #include<math.h> int main() { int* p=NULL; int n; scanf("%d", &n); p = &n; printf("++p = %d\n",p ); printf("*p = %d\n", *p++); print ...
分类:其他 时间:2020-12-15 00:07:31 收藏:0 阅读:25
一个简单的C程序 #include <stdio.h> //标准输入输出头文件,让函数可用 #include <stdlib.h> int main (void) //入口,调用的接口,一个项目、文件,中只能有一个。 { printf ("Hello,World"); //print format的 ...
分类:编程语言 时间:2020-12-15 00:07:20 收藏:0 阅读:18
run this in PowerShell command :(be sure to run as administrator) Set-ExecutionPolicy -ExecutionPolicy RemoteSigned ...
分类:其他 时间:2020-12-15 00:07:09 收藏:0 阅读:64
一、打开eclipse,我这里使用的sts(跟eclipse一模一样)。 二、点击window->preferences->maven->installations->add 点击directory,选择maven根目录即可(不用到bin目录)。 点击apply。 打开conf/setting.xm ...
分类:系统服务 时间:2020-12-15 00:06:57 收藏:0 阅读:46
Django 多数据库配置与使用总结 By:授客 QQ:103355122 #实践环境 Win 10 Python 3.5.4 Django-2.0.13.tar.gz 官方下载地址: https://www.djangoproject.com/download/2.0.13/tarball/ #需 ...
分类:数据库技术 时间:2020-12-15 00:06:44 收藏:0 阅读:23
1124111241212413323994
上一页3239936下一页
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!