- 博客(40)
- 收藏
- 关注
原创 pip install git+https://github.com/...下载问题
pip install git+https://github.com 下载安装方法
2023-04-23 15:43:32
2237
1
原创 Conditional Positional Encodings for Vision Transformers(论文阅读笔记)
Conditional Positional Encodings for Vision Transformers(论文阅读笔记)
2022-11-21 09:48:31
1336
2
原创 CrossViT: Cross-Attention Multi-Scale Vision Transformer for Image Classification(论文阅读笔记)
CrossViT: Cross-Attention Multi-Scale Vision Transformer for Image Classification(论文阅读笔记)
2022-11-19 18:17:54
2620
1
原创 AN IMAGE IS WORTH 16X16 WORDS: TRANSFORMERS FOR IMAGE RECOGNITION AT SCALE(阅读笔记)
AN IMAGE IS WORTH 16X16 WORDS: TRANSFORMERS FOR IMAGE RECOGNITION AT SCALE(阅读笔记)
2022-11-18 17:29:58
834
原创 dataset.py中应用的函数、方法汇总
这篇文档中包含 Road Surface Classification/dataset.py 中全部的未知函数及关键字的解析
2022-10-26 11:38:22
1150
原创 train.py中应用的函数、方法汇总
这篇文档中包含 Road Surface Classification/train.py 中全部的未知函数及关键字的解析
2022-10-25 22:04:54
642
原创 test.py中的全部函数、方法汇总
这篇文档中包含 Road Surface Classification/test.py 中全部的未知函数的解析
2022-10-25 16:22:35
666
原创 GnuTLS recv error (-110): The TLS connection was non-properly terminated
GnuTLS recv error (-110): The TLS connection was non-properly terminated
2022-10-14 11:00:00
8596
3
原创 RuntimeError: unexpected EOF. The file might be corrupted.
报错:**RuntimeError: unexpected EOF. The file might be corrupted.**真是解决方案
2022-10-12 11:00:00
878
原创 command ‘gcc‘ failed with exit status 1
报错:command 'gcc' failed with exit status 1解决方法
2022-10-11 11:00:00
687
原创 RuntimeError: nms is not compiled with GPU support
报错:**RuntimeError: nms is not compiled with GPU support**未解决,求助
2022-10-11 11:00:00
1774
4
原创 RuntimeError: cuDNN error: CUDNN_STATUS_INTERNAL_ERROR
报错:**Runtime Error: cuDNN error: CUDNN_STATUS_INTERNAL_ERROR**
2022-10-10 11:00:00
781
原创 TypeError: load() missing 1 required positional argument: ‘Loader‘
报错:TypeError: load() missing 1 required positional argument: ‘Loader‘实际解决方法
2022-10-10 09:52:45
1133
原创 RuntimeError: result type Float can‘t be cast to the desired output type long int
报错:RuntimeError: result type Float can‘t be cast to the desired output type long int完美解决
2022-10-09 12:00:00
4970
4
原创 warnings.warn(‘User provided device_type of ‘cuda‘, but CUDA is not available)
报错:warnings.warn(‘User provided device_type of ‘cuda‘, but CUDA is not available)完美解决
2022-10-09 11:00:00
10214
2
原创 _pickle.UnpicklingError: STACK_GLOBAL requires str
报错:_pickle.UnpicklingError: STACK_GLOBAL requires str的解决办法
2022-10-08 10:00:09
14168
6
原创 将服务器端口映射到本地端口
在服务器上运行的结果有的时候会直接显示在服务器的端口上,如:http://localhost:6006/,但是服务器的端口无法直接查看,那如何在自己的电脑上查看呢。
2022-10-05 21:55:13
7900
原创 华为CV比赛
0.赛前准备0.1 平台注册点击:华为赛事官网注册网址,进入官网,点击右上角:注册。图片: https://uploader.shimo.im/f/px0hYqAnKEM9qGxl.png!thumbnail?accessToken=eyJhbGciOiJIUzI1NiIsImtpZCI6ImRlZmF1bHQiLCJ0eXAiOiJKV1QifQ.eyJleHAiOjE2NjM1MDk3NTYsImZpbGVHVUlEIjoiemRreUI5ZUtyZGhOMGFBNiIsImlhdCI6MTY2M
2022-09-18 22:00:40
1198
原创 重新划分数据集
用于统计全部数据集中的不同序列由多少帧图片组成,因为数据集是由数个视频序列经过分帧组成的,并不知道共有多少视频序列,多少帧图片。但是对数据集进行训练需要合理划分训练集和验证集(6:2:2),因此需要对数据集进行特殊的统计。
2022-09-18 12:00:00
168
原创 Python 根据label文件夹中的文件对应提取image文件夹中的数据
需要从数据集中划分重新训练集和验证集合,根据labels文件夹中的文件名,提取images文件夹中的相对应图片文件,创建验证集。
2022-09-17 20:33:12
1299
原创 Windows环境 C++ 安装OpenCV-contrib
Windows环境 C++ 安装OpenCV-contrib前言:1.本文基于以下环境:Windows10 /C++ /OpenCV4.5.4 /Visual Studio2019 /OpenCV-contrib4.5.42.如果是版本不同,不用担心,每一步的思想都是相同的,如果又具体大家不会处理可以评论你的问题大家一起解决。0 了解OpenCV-contrib前言:安装OpenCV-contrib之前我们首先要了解它是什么,干嘛用的,知己知彼百战不殆嘛。之后胡在慢慢了解怎么用它。0.1 Ope
2022-03-12 10:57:02
8383
1
原创 Win10 Visual Studio 2019 安装配置opencv4全过程(超详细,实测成功)
OpenCV4 C++版在Win10上的部署全过程,全网最详细
2022-03-06 17:07:47
8019
11
原创 高人才能看出来最后的显示结果有问题!!
//mytime1.h#ifndef MYTIME_H_#define MYTIME_H_class Time{private: int hours; int minutes;public: Time(); ~Time(); Time(int h, int m = 0); void Addmin(int m); void Addhr(int h); void Reset(int h = 0, int m = 0); Time operator +(const Time&
2021-03-25 18:44:47
125
原创 C++ Primer Plus课后编程答案第五章
5.9编程练习共用头文件#include<iostream>#include<string>#include<array>#include<cstring>int main(){ using namespace std; int i, j, sum; sum = 0; cout << "i= "; cin >> i; cout<< "j= "; cin >> j; for (
2020-12-14 18:54:53
149
原创 C++ Primer Plus第四章课后编程
C++ Primer Plus第四章课后编程4.12 复习题*4.13 编程练习*三句话,希望读者可以先看*4.12 复习题*#include<iostream>#include<vector>#include<array>#include<string>#include<cstring>//所有头文件为所用复习题+编程练习公用//1.ausing namespace std;struct stt1{ char name;
2020-12-04 11:22:56
257
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人