YOLOv4-tiny Darknet 目标检测训练实战:轻量模型配置、训练与推理
YOLOv4-tiny Darknet 目标检测训练实战轻量模型配置、训练与推理这篇教程根据我复现 YOLOv4-tiny Darknet 训练流程时整理重点演示 cuDNN 环境、Darknet 编译、YOLO 数据整理、配置生成和测试集推理。本文整理自我的学习和项目复现过程尽量按实操顺序保留 notebook 的关键步骤同时把数据集获取方式调整为适合中文教程发布的写法。本文会重点跑通以下流程配置 Colab CUDA/cuDNN 环境安装并编译 Darknet从数据集后台获取 YOLO Darknet 格式数据动态生成 YOLOv4-tiny 自定义配置训练模型并随机选择测试图推理如果你正在系统学习目标检测、实例分割、OCR、多目标跟踪或视觉大模型建议收藏本文配套 notebook、示例图片和运行环境说明后续会继续整理。如果环境配置卡住可以在评论区说明具体报错。 文章目录YOLOv4-tiny Darknet 目标检测训练实战轻量模型配置、训练与推理⚙️ 配置 CUDA/cuDNN 安装 Darknet 从数据集后台获取 Darknet 数据 整理训练文件 生成训练配置️ 训练 YOLOv4-tiny 推理工具函数 小结 同系列教程汇总⚙️ 配置 CUDA/cuDNNYOLOv4-tiny Darknet 对 CUDA/cuDNN 配置敏感先检查运行环境。# 检查 CUDA 是否已安装以及当前版本。!/usr/local/cuda/bin/nvcc--version# We need to install the correct cuDNN according to this output# 查看当前 GPU 型号!nvidia-smi# This cell ensures you have the correct architecture for your respective GPU# If you command is not found, look through these GPUs, find the respective# GPU and add them to the archTypes dictionary# Tesla V100# ARCH -gencode archcompute_70,code[sm_70,compute_70]# Tesla K80# ARCH -gencode archcompute_37,codesm_37# GeForce RTX 2080 Ti, RTX 2080, RTX 2070, Quadro RTX 8000, Quadro RTX 6000, Quadro RTX 5000, Tesla T4, XNOR Tensor Cores# ARCH -gencode archcompute_75,code[sm_75,compute_75]# Jetson XAVIER# ARCH -gencode archcompute_72,code[sm_72,compute_72]# GTX 1080, GTX 1070, GTX 1060, GTX 1050, GTX 1030, Titan Xp, Tesla P40, Tesla P4# ARCH -gencode archcompute_61,codesm_61# GP100/Tesla P100 - DGX-1# ARCH -gencode archcompute_60,codesm_60# For Jetson TX1, Tegra X1, DRIVE CX, DRIVE PX - uncomment:# ARCH -gencode archcompute_53,code[sm_53,compute_53]# For Jetson Tx2 or Drive-PX2 uncomment:# ARCH -gencode archcompute_62,code[sm_62,compute_62]importos os.environ[GPU_TYPE]str(os.popen(nvidia-smi --query-gpuname --formatcsv,noheader).read())defgetGPUArch(argument):try:argumentargument.strip()# All Colab GPUsarchTypes{Tesla V100-SXM2-16GB:-gencode archcompute_70,code[sm_70,compute_70],Tesla K80:-gencode archcompute_37,codesm_37,Tesla T4:-gencode archcompute_75,code[sm_75,compute_75],Tesla P40:-gencode archcompute_61,codesm_61,Tesla P4:-gencode archcompute_61,codesm_61,Tesla P100-PCIE-16GB:-gencode archcompute_60,codesm_60}returnarchTypes[argument]exceptKeyError:returnGPU must be added to GPU Commandsos.environ[ARCH_VALUE]getGPUArch(os.environ[GPU_TYPE])print(GPU Type: os.environ[GPU_TYPE])print(ARCH Value: os.environ[ARCH_VALUE]) 安装 Darknet克隆并编译 Darknet开启 GPU、cuDNN 和 OpenCV 支持。%cd/content/%rm-rf darknet# 克隆 Darknet 仓库用于 YOLOv4-tiny 训练!git clone https://github.com/AlexeyAB/darknet.git#install environment from the Makefile%cd/content/darknet/# compute_37, sm_37 for Tesla K80# compute_75, sm_75 for Tesla T4# !sed -i s/ARCH -gencode archcompute_60,codesm_60/ARCH -gencode archcompute_75,codesm_75/g Makefile#install environment from the Makefile#note if you are on Colab Pro this works on a P100 GPU#if you are on Colab free, you may need to change the Makefile for the K80 GPU#this goes for any GPU, you need to change the Makefile to inform darknet which GPU you are running on.!sed-is/OPENCV0/OPENCV1/gMakefile !sed-is/GPU0/GPU1/gMakefile !sed-is/CUDNN0/CUDNN1/gMakefile !sed-is/ARCH -gencode archcompute_60,codesm_60/ARCH ${ARCH_VALUE}/gMakefile !make#download the newly released yolov4-tiny weights%cd/content/darknet !wget https://github.com/AlexeyAB/darknet/releases/download/darknet_yolo_v4_pre/yolov4-tiny.weights !wget https://github.com/AlexeyAB/darknet/releases/download/darknet_yolo_v4_pre/yolov4-tiny.conv.29fromtypesimportSimpleNamespace# 从数据集后台下载 YOLO Darknet 格式数据集后修改 DATASET_DIR 指向解压目录。DATASET_DIR/content/dataset# 修改为数据集后台导出的数据集目录datasetSimpleNamespace(locationDATASET_DIR,version1,namecustom-dataset) 从数据集后台获取 Darknet 数据从数据集后台导出 YOLO Darknet 格式数据并接入训练目录。fromtypesimportSimpleNamespace# 从数据集后台下载 YOLO Darknet 检测 格式数据集后修改 DATASET_DIR 指向解压目录。DATASET_DIR/content/dataset# 修改为数据集后台导出的数据集目录datasetSimpleNamespace(locationDATASET_DIR,version1,namecustom-dataset)# 数据集已在上一单元配置如需更换数据请修改 DATASET_DIR。print(dataset.location) 整理训练文件复制图片、标签和类别文件生成 Darknet 训练所需的 obj.data。# 根据类别数量动态生成配置#we build iteratively from base config files. This is the same file shape as cfg/yolo-obj.cfgdeffile_len(fname):withopen(fname)asf:fori,linenumerate(f):passreturni1num_classesfile_len(dataset.location/train/_darknet.labels)max_batchesnum_classes*2000steps1.8*max_batches steps2.9*max_batches steps_strstr(steps1),str(steps2)num_filters(num_classes5)*3print(writing config for a custom YOLOv4 detector detecting number of classes: str(num_classes))#Instructions from the darknet repo#change line max_batches to (classes*2000 but not less than number of training images, and not less than 6000), f.e. max_batches6000 if you train for 3 classes#change line steps to 80% and 90% of max_batches, f.e. steps4800,5400ifos.path.exists(./cfg/custom-yolov4-tiny-detector.cfg):os.remove(./cfg/custom-yolov4-tiny-detector.cfg)#customize iPython writefile so we can write variablesfromIPython.core.magicimportregister_line_cell_magicregister_line_cell_magicdefwritetemplate(line,cell):withopen(line,w)asf:f.write(cell.format(**globals())) 生成训练配置根据类别数动态修改 filters、classes、max_batches 等配置。%%writetemplate./cfg/custom-yolov4-tiny-detector.cfg[net]# Testing#batch1#subdivisions1# Trainingbatch64subdivisions24width416height416channels3momentum0.9decay0.0005angle0saturation1.5exposure1.5hue.1learning_rate0.00261burn_in1000max_batches{max_batches}policysteps steps{steps_str}scales.1,.1[convolutional]batch_normalize1filters32size3stride2pad1activationleaky[convolutional]batch_normalize1filters64size3stride2pad1activationleaky[convolutional]batch_normalize1filters64size3stride1pad1activationleaky[route]layers-1groups2group_id1[convolutional]batch_normalize1filters32size3stride1pad1activationleaky[convolutional]batch_normalize1filters32size3stride1pad1activationleaky[route]layers-1,-2[convolutional]batch_normalize1filters64size1stride1pad1activationleaky[route]layers-6,-1[maxpool]size2stride2[convolutional]batch_normalize1filters128size3stride1pad1activationleaky[route]layers-1groups2group_id1[convolutional]batch_normalize1filters64size3stride1pad1activationleaky[convolutional]batch_normalize1filters64size3stride1pad1activationleaky[route]layers-1,-2[convolutional]batch_normalize1filters128size1stride1pad1activationleaky[route]layers-6,-1[maxpool]size2stride2[convolutional]batch_normalize1filters256size3stride1pad1activationleaky[route]layers-1groups2group_id1[convolutional]batch_normalize1filters128size3stride1pad1activationleaky[convolutional]batch_normalize1filters128size3stride1pad1activationleaky[route]layers-1,-2[convolutional]batch_normalize1filters256size1stride1pad1activationleaky[route]layers-6,-1[maxpool]size2stride2[convolutional]batch_normalize1filters512size3stride1pad1activationleaky##################################[convolutional]batch_normalize1filters256size1stride1pad1activationleaky[convolutional]batch_normalize1filters512size3stride1pad1activationleaky[convolutional]size1stride1pad1filters{num_filters}activationlinear[yolo]mask3,4,5anchors10,14,23,27,37,58,81,82,135,169,344,319classes{num_classes}num6jitter.3scale_x_y1.05cls_normalizer1.0iou_normalizer0.07iou_lossciou ignore_thresh.7truth_thresh1random0nms_kindgreedynms beta_nms0.6[route]layers-4[convolutional]batch_normalize1filters128size1stride1pad1activationleaky[upsample]stride2[route]layers-1,23[convolutional]batch_normalize1filters256size3stride1pad1activationleaky[convolutional]size1stride1pad1filters{num_filters}activationlinear[yolo]mask1,2,3anchors10,14,23,27,37,58,81,82,135,169,344,319classes{num_classes}num6jitter.3scale_x_y1.05cls_normalizer1.0iou_normalizer0.07iou_lossciou ignore_thresh.7truth_thresh1random0nms_kindgreedynms beta_nms0.6# 查看刚写入的配置文件。#you may consider adjusting certain things#like the number of subdivisions 64 runs faster but Colab GPU may not be big enough#if Colab GPU memory is too small, you will need to adjust subdivisions to 16%cat cfg/custom-yolov4-tiny-detector.cfg!./darknet detector train data/obj.data cfg/custom-yolov4-tiny-detector.cfg yolov4-tiny.conv.29-dont_show-map#If you get CUDA out of memory adjust subdivisions above!#adjust max batches down for shorter training above# 定义图片显示工具函数defimShow(path):importcv2importmatplotlib.pyplotasplt%matplotlib inline imagecv2.imread(path)height,widthimage.shape[:2]resized_imagecv2.resize(image,(3*width,3*height),interpolationcv2.INTER_CUBIC)figplt.gcf()fig.set_size_inches(18,10)plt.axis(off)#plt.rcParams[figure.figsize] [10, 5]plt.imshow(cv2.cvtColor(resized_image,cv2.COLOR_BGR2RGB))plt.show()️ 训练 YOLOv4-tiny启动 Darknet 训练。如果显存不足优先调整 subdivisions。# 检查权重是否已保存#backup houses the last weights for our detector#(file yolo-obj_last.weights will be saved to the build\darknet\x64\backup\ for each 100 iterations)#(file yolo-obj_xxxx.weights will be saved to the build\darknet\x64\backup\ for each 1000 iterations)#After training is complete - get result yolo-obj_final.weights from path build\darknet\x64\bac!ls backup#if it is empty you havent trained for long enough yet, you need to train for at least 100 iterations 推理工具函数定义图片显示工具方便查看 Darknet 推理结果。#coco.names is hardcoded somewhere in the detector%cp data/obj.names data/coco.names# test 目录中包含可用于测试的图片test_images[fforfinos.listdir(test)iff.endswith(.jpg)]importrandom img_pathtest/random.choice(test_images);#test out our detector!!./darknet detect cfg/custom-yolov4-tiny-detector.cfg backup/custom-yolov4-tiny-detector_best.weights{img_path}-dont-show imShow(/content/darknet/predictions.jpg) 小结这篇教程完整整理了YOLOv4-tiny Darknet 目标检测训练的核心复现流程。实际操作时建议先确认 GPU、依赖版本、数据集路径和模型权重路径再逐段运行 notebook。后续我会继续按源项目顺序整理同系列中的目标检测、实例分割、OCR、多目标跟踪和视觉大模型教程。 同系列教程汇总Google Gemini 3.5 Flash 零样本目标检测教程从提示词到可视化结果GLM-OCR 文档识别实战教程从验证码、公式到车牌 OCRRF-DETR ByteTrack 多目标跟踪实战教程从命令行到 Python 视频轨迹可视化SAM 3 图像分割实战教程文本、框和点提示的多种分割方式SAM 3 视频分割实战教程用文本提示分割并跟踪视频中的目标YOLOv4-tiny Darknet 目标检测训练实战轻量模型配置、训练与推理-本文

相关新闻

音频视觉融合新突破:DLA课程Wav2Lip与SadTalker实现会说话的人脸

音频视觉融合新突破:DLA课程Wav2Lip与SadTalker实现会说话的人脸

音频视觉融合新突破:DLA课程Wav2Lip与SadTalker实现会说话的人脸 【免费下载链接】dla Deep learning for audio processing 项目地址: https://gitcode.com/gh_mirrors/dla/dla DLA(Deep Learning for Audio)课程是一个专注于音频深度…

2026/7/22 21:37:56 阅读更多 →
CLIP 零样本图像分类实战:无需训练的多类别识别流程

CLIP 零样本图像分类实战:无需训练的多类别识别流程

CLIP 零样本图像分类实战:无需训练的多类别识别流程 这篇教程根据我复现 OpenAI CLIP 分类流程时整理,重点演示依赖安装、分类数据准备、文本 prompt 配置和零样本推理。 本文整理自我的学习和项目复现过程,尽量按实操顺序保留 notebook 的关…

2026/7/22 21:37:56 阅读更多 →
Subdomain3性能优化指南:低资源消耗下实现百万级子域名爆破的配置方案

Subdomain3性能优化指南:低资源消耗下实现百万级子域名爆破的配置方案

Subdomain3性能优化指南:低资源消耗下实现百万级子域名爆破的配置方案 【免费下载链接】subdomain3 A new generation of tool for discovering subdomains( ip , cdn and so on) 项目地址: https://gitcode.com/gh_mirrors/su/subdomain3 Subdomain3是新一代…

2026/7/22 21:36:55 阅读更多 →

最新新闻

Linus Torvalds谈开源技术:Linux、Git、Rust与AI,开源世界如何应对新技术浪潮?

Linus Torvalds谈开源技术:Linux、Git、Rust与AI,开源世界如何应对新技术浪潮?

Linus Torvalds谈开源技术:Linux、Git、Rust与AI,开源世界如何应对新技术浪潮?如果只看技术履历,Linus Torvalds是Linux和Git的创造者,是过去三十多年开源世界绕不开的人物。但在这场对谈里,更值得看的并不…

2026/7/22 22:21:11 阅读更多 →
上海如韵 CN3300 4.5-32V/40W PFM升压型多节电池充电控制器 SOT23-6 技术解析

上海如韵 CN3300 4.5-32V/40W PFM升压型多节电池充电控制器 SOT23-6 技术解析

在多节锂电池、磷酸铁锂电池或铅酸电池的充电应用中,当输入电压低于电池组电压时,需要一款升压型充电控制器来实现高效充电。CN3300是一款工作于4.5V至32V的PFM升压型多节电池充电控制集成电路,采用SOT23-6封装,通过外部N沟道MOSF…

2026/7/22 22:21:11 阅读更多 →
5分钟掌握OBS Studio专业级色彩校正:从新手到高手的完整指南

5分钟掌握OBS Studio专业级色彩校正:从新手到高手的完整指南

5分钟掌握OBS Studio专业级色彩校正:从新手到高手的完整指南 【免费下载链接】obs-studio OBS Studio - Free and open source software for live streaming and screen recording 项目地址: https://gitcode.com/GitHub_Trending/ob/obs-studio OBS Studio作…

2026/7/22 22:21:11 阅读更多 →
NocoBase开发实战:从零构建你的第一个AI+无代码业务系统

NocoBase开发实战:从零构建你的第一个AI+无代码业务系统

NocoBase开发实战:从零构建你的第一个AI无代码业务系统 【免费下载链接】nocobase NocoBase is an open-source AI no-code platform for building business systems fast. Instead of generating everything from scratch, AI works on top of production-proven …

2026/7/22 22:21:11 阅读更多 →
PY32 定时器中断回调不执行的解决办法

PY32 定时器中断回调不执行的解决办法

一,发现问题 我在调试 PY32 的定时器中断时,按 HAL 库的流程配好了定时器,也写了回调函数,但全速运行后回调就是不执行。 void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim) {if (htim->Instance TIM14) {// 这里…

2026/7/22 22:21:11 阅读更多 →
【线性代数实战】向量组等价与 B=AK 矩阵乘法的深度解析(附 Python 代码实现)

【线性代数实战】向量组等价与 B=AK 矩阵乘法的深度解析(附 Python 代码实现)

前言 在机器学习和数据科学的面试或实战中,我们常常听到“向量空间”、“降维”、“基向量”等词汇。很多初学者在死记硬背线性代数的定理时,往往忽略了一个关键事实:线性代数是计算机处理高维数据的底层语言。 今天,我们就深入剖析线性代数中 “向量组等价” 与核心矩阵…

2026/7/22 22:20:10 阅读更多 →

日新闻

TI DSP系统配置模块SYSCFG详解:中断机制与主设备优先级配置实战

TI DSP系统配置模块SYSCFG详解:中断机制与主设备优先级配置实战

1. 项目概述与SYSCFG模块的核心价值在嵌入式系统,尤其是像TI C6000系列这样的高性能DSP开发中,我们常常会与芯片手册里那些密密麻麻的寄存器打交道。很多开发者可能更关注算法实现、内存优化或者外设驱动,但对于一个稳定、高效的系统而言&…

2026/7/22 0:00:26 阅读更多 →
微信Server酱:高到达率的应急通知方案实践

微信Server酱:高到达率的应急通知方案实践

1. 为什么我们需要"最次"的通知方案? 在数字化协作环境中,消息通知系统的重要性不言而喻明。但现实情况是,企业级通知方案往往需要复杂的API对接(如企业微信、钉钉、飞书),个人开发者的小项目又经…

2026/7/22 0:00:26 阅读更多 →
甲方要的“简洁“PPT,到底是简洁还是省事?

甲方要的“简洁“PPT,到底是简洁还是省事?

甲方说"简洁一点",乙方听到的是"少做几页"。甲方说"不要太复杂",乙方理解成"别放图表了"。结果交过去,甲方说"我说的简洁不是这个意思"。"简洁"这个词在PPT语境里,是…

2026/7/22 0:00:26 阅读更多 →

周新闻

Go语言静态资源打包方案对比与实践指南

Go语言静态资源打包方案对比与实践指南

1. 项目背景与核心需求在Go语言开发中,我们经常需要处理静态资源文件的打包问题。无论是Web应用的模板文件、前端资源,还是配置文件、证书等,都需要随程序一起分发。传统做法是将这些文件与编译后的二进制文件放在同一目录下,但这…

2026/7/22 8:58:19 阅读更多 →
Go语言实现高性能LDAP认证服务的架构与实践

Go语言实现高性能LDAP认证服务的架构与实践

1. 项目背景与核心价值LDAP(轻量级目录访问协议)作为企业级身份认证的黄金标准,已经服务了超过80%的财富500强公司。我在金融科技领域实施统一认证体系时,发现传统Java方案存在启动慢、内存占用高等痛点。而Go语言凭借其协程并发模…

2026/7/22 19:43:43 阅读更多 →
【AI面试官实战指南】:用ChatGPT模拟10类高频技术岗面试,3天提升应答精准度92%

【AI面试官实战指南】:用ChatGPT模拟10类高频技术岗面试,3天提升应答精准度92%

更多请点击: https://intelliparadigm.com 第一章:AI面试官实战指南的核心价值与适用场景 AI面试官并非替代人类HR的“黑箱工具”,而是以可解释、可审计、可迭代的方式,赋能招聘全链路的关键基础设施。其核心价值在于将主观经验沉…

2026/7/22 12:54:44 阅读更多 →

月新闻