自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(9)
  • 资源 (2)
  • 收藏
  • 关注

原创 Yolov8从入门到上瘾(windows11+anaconda+CUDA+cuDNN+红绿灯数据集训练功能实现)

历时3天,在7位大神调教之下,从零开始完成了YOLOV8的搭建和windows11+anaconda+CUDA+cuDNN+红绿灯自定义数据集训练,特此记录如下,希望后来者少走弯路,弯道超车。

2023-04-26 21:24:00 5681 6

原创 pytorch下 ultralytics yolov5 自定义数据集训练调试简记

0、起源来自两个blog的大神最初基础(有请大神1号):https://blog.csdn.net/weixin_45033788/article/details/115148152这里本来是基于yolov3的,但在我的机器上怎么都调不通,但基于此弄清楚了yaml和cfg的区别,其实yaml比cfg要简单很多,许多参数直接在一个地方调整就可以了对应源码修改的地方,按下述方案一步一步来即可(有请大神2号):https://blog.csdn.net/weixin_41868104/ar

2021-04-08 10:04:14 960 1

原创 PYQT Error: one input ui-file must be specified错误

依据https://www.jianshu.com/p/8b992e47a0e4教程,安装pycharm+PyQT+PyQt Designer+pyuic可以生成UI,但是让.ui文件用右键生成.py文件一直报如下错误:Error: one input ui-file must be specified找了,很多原因,其实只是因为.ui文件中间不能有空格,否则无法生成.py文件...

2019-04-22 11:40:08 15804 28

转载 Window安装Anaconda后,conda不是内部或者外部命令

版权声明:本文为转载文章,原文如下: https://blog.csdn.net/u011361880/article/details/75294226今天在安装Theano的时候,需要看一下,anaconda已经安装了哪些包。使用命令如下,在控制台,cmd回车输入即可:conda list但是,显示出错,“conda不是内部或者外部命令”,第一直觉,环境变量没配,这里同样可以在cmd输入:...

2018-12-20 12:02:33 3988

原创 android中expandablelistview放在viewpager中不显示

该问题已经调试了3天,今天终于搞定,特此记录:问题说明:expandablelistview放在viewpager中无法显示,第一天抛出空指针异常,后来调试无误,却一直不显示,现记录如下:1,  空指针问题:Viewview=LayoutInflater.from(this).inflate(R.layout.tab02, null);//这一行固定了要在什么XML中寻找,而如果无

2017-02-15 22:11:53 835

原创 4412, Ubuntu,虚拟机,开发板互PING要点

开发板和主机,ubuntu虚拟机在同一个IP网段下,开发板和主机互PING一、先要关闭win7中的防火墙,允许ping,依次点击,开始---控制面板---Windows 防火墙,然后点击窗口左侧的打开或关闭Windows 防火墙,将其中两项“关闭Windows 防火墙”选择后确定。二、修改防火墙入站规则1、依次点击,开始---控制面板---Windows 防

2016-04-19 18:53:39 598

原创 【制作最小Linux系统】

【制作最小Linux系统】用Busybox开源工具,到Ubuntu中安装,1、设置交叉编译工具“arm-none-Linux-gnueabi-”,2、修改“BusyBox installation prefix”,改为../system”,这样设置之后,最终生成的二进制文件会安装到“当前目录”的“上一级目录”下的“system”目录里面3、执行“#make”命令,开始编译“Busy

2016-04-11 17:29:59 1580

原创 4412安卓操作系统编译

--编译UBOOT,前提:需要工具文件夹“CodSign4SecureBoot"夹,并同uboot 源码文件夹在同一目录下;Ubuntu命令行中编译:./create_uboot.sh, 生成:u-boot-iTop-4412.bin (其实/create-uboot.sh是一个脚本,是迅为专用的) --编译Linux内核,Ubuntu命令行中编译:make, 生成:arch/arm/bo

2016-04-11 17:27:29 331

原创 迅为4412烧写

1)将需要烧写的镜像拷贝到“USB_fastboot_tool”-->“platform-tools”文件夹下面。2)启动开发板,进入Uboot 模式(Hit any key to stop autoboot读秒的过程中如果输入任何值,将进入uboot 模式)。3)分区格式化,超级终端中fdisk,fatformat, ext3format,之前未做才需做4)连接开发板和PC的USB_

2016-04-11 17:23:46 1022

yolov3-tiny.conv.15-tingwhere.rar

利用darknet编译后生成,供yolov3自定义数据集学习训练使用

2021-03-31

TCP/IP Sockets in Java Second Edition

For years, college courses in computer networking were taught with little or no hands-on experience. For various reasons, including some good ones, instructors approached the principles of computer networking primarily through equations, analyses, and abstract descriptions of protocol stacks. Textbooks might have included code, but it would have been unconnected to anything students could get their hands on. We believe, however, that students learn better when they can see (and then build) concrete examples of the principles at work. And, fortunately, things have changed. The Internet has become a part of everyday life, and access to its services is readily available to most students (and their programs). Moreover, copious examples—good and bad—of nontrivial software are freely available. We wrote this book for the same reason we wrote TCP/IP Sockets in C: We needed a resource to support learning networking through programming exercises in our courses. Our goal is to provide a sufficient introduction so that students can get their hands on real network services without too much hand-holding. After grasping the basics, students can then move on to more advanced assignments, which support learning about routing algorithms, multimedia protocols, medium access control, and so on. We have tried to make this book equivalent to our earlier book to enable instructors to allow students to choose the language they use and still ensure that all students will come away with the same skills and understanding. Of course, it is not clear that this goal is achievable, but in any case the scope, price, and presentation level of the book are intended to be similar.

2016-12-28

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除