摘要: ImageNet2012分train、val两部分, 训练集1000个文件夹1281159个文件,136GB. 测试集1000个文件夹50000给文件,6.24GB. 阅读全文
posted @ 2024-06-26 20:44 彭城老朽 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 2024年6月21日华为开发者网站发布了HarmonyOS NEXT的开发者文档。 今天【2024.6.22】抽空浏览了一下AI模块文档和新的编程语言仓颉。 从speech vision 等AI功能直接调用系统API来看, 未来各种手机、边缘终端、操作系统内置常用大小模型会是发展趋势, 开发者可以不 阅读全文
posted @ 2024-06-22 18:01 彭城老朽 阅读(36) 评论(0) 推荐(0) 编辑
摘要: https://developer.nvidia.com/cuda-toolkit-archive https://developer.nvidia.com/rdp/cudnn-archive https://docs.nvidia.com/deeplearning/cudnn/latest/ref 阅读全文
posted @ 2024-06-21 10:45 彭城老朽 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 在Improving neural networks by preventing co-adaptation of feature detectors论文中,Hinton提出 Random “dropout” gives big improvements on many benchmark task 阅读全文
posted @ 2024-06-14 11:18 彭城老朽 阅读(2) 评论(0) 推荐(0) 编辑
摘要: This dataset is just like the CIFAR-10, except it has 100 classes containing 600 images each. There are 500 training images and 100 testing images per 阅读全文
posted @ 2024-06-13 16:19 彭城老朽 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 修改为:class RotateLabelConverter(BaseLabelConverter): def custom_to_dota(self, input_file, output_file): with open(input_file, "r", encoding="utf-8") as 阅读全文
posted @ 2024-05-29 10:08 彭城老朽 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 如果项目TestApp中同时存在.c和.cpp文件,可以使用两种方式指定编译器: 1: project(TestApp LANGUAGES C CXX) 2: project(TestApp LANGUAGES C ) project(TestApp LANGUAGES CXX ) 这样可以解决编译 阅读全文
posted @ 2024-05-08 10:08 彭城老朽 阅读(27) 评论(0) 推荐(0) 编辑
摘要: cmake_minimum_required(VERSION 3.16.3) project(TestCVDNN VERSION 1.0) set(CMAKE_CXX_STANDARD 11) set(CMAKE_CXX_STANDARD_REQUIRED True) set(OpenCV_DIR 阅读全文
posted @ 2024-04-13 10:01 彭城老朽 阅读(49) 评论(0) 推荐(0) 编辑
摘要: sudo apt update sudo apt install vsftpd sudo vi /etc/vsftpd.conf local_enable=YES 允许本地用户通过 FTP 登录到服务器 取消注释并将其设置为: chroot_local_user=YES 这将限制本地用户的 FTP 阅读全文
posted @ 2024-02-28 11:06 彭城老朽 阅读(41) 评论(0) 推荐(0) 编辑
摘要: 参考: https://blog.csdn.net/weixin_43863869/article/details/128552342 https://blog.csdn.net/weixin_39956356/article/details/102643415 https://blog.csdn. 阅读全文
posted @ 2024-02-28 10:52 彭城老朽 阅读(21) 评论(0) 推荐(0) 编辑