上一页 1 2 3 4 5 6 7 8 9 ··· 15 下一页
摘要: 1、开源OCR数据集生成项目TextRecognitionDataGenerator 该项目通过 Python实现,可以通过 pip 安装: 终端: pip install trdg 进入文件夹,安装requirementspip install -r requirements.txt 安装完成 进 阅读全文
posted @ 2024-12-17 18:04 星空28 阅读(184) 评论(0) 推荐(0)
摘要: 1、查看CUDA版本 -->打开cmd -->查看CUDA版本 nvidia-smi ![](https://img2024.cnblogs.com/blog/3437857/202412/3437857-20241217115657975-986317706.jpg) 2、找到CUDA版本对应的t 阅读全文
posted @ 2024-12-17 11:59 星空28 阅读(106) 评论(0) 推荐(0)
摘要: 车牌图片 代码 # -*- coding: UTF-8 -*- import cv2 import numpy as np # 预处理 def imgProcess(path): img = cv2.imread(path) # 统一规定大小 img = cv2.resize(img, (640, 阅读全文
posted @ 2024-12-16 17:54 星空28 阅读(140) 评论(0) 推荐(0)
摘要: 数据库权限参考: https://blog.csdn.net/zgscwxd/article/details/131586286 阅读全文
posted @ 2024-11-24 16:01 星空28 阅读(15) 评论(0) 推荐(0)
摘要: 方式一:手动实现 """ drop out随机丢弃神经元 """ import torch from torch import nn from d2l import torch as d2l import torch import torchvision from torch.utils impor 阅读全文
posted @ 2024-11-07 11:44 星空28 阅读(34) 评论(0) 推荐(0)
摘要: """ 模型选择,欠拟合、过拟合 """ import math import numpy as np import torch from d2l import torch as d2l from IPython import display import matplotlib.pyplot as 阅读全文
posted @ 2024-11-06 13:53 星空28 阅读(34) 评论(0) 推荐(0)
摘要: 方法一: """ 多层感知机简单实现Fashion-MNIST分类,从零开始实现 """ import torch import torchvision from torch.utils import data from torchvision import transforms from d2l 阅读全文
posted @ 2024-11-04 12:05 星空28 阅读(71) 评论(0) 推荐(0)
摘要: 实现方式一:手动实现 # Fashion-MNIST分类 import torch import torchvision from torch.utils import data from torchvision import transforms from d2l import torch as 阅读全文
posted @ 2024-10-31 11:15 星空28 阅读(85) 评论(0) 推荐(0)
摘要: 参考: https://xiaodu.io/ctc-explained/ https://zhuanlan.zhihu.com/p/43534801 阅读全文
posted @ 2024-10-07 16:26 星空28 阅读(18) 评论(0) 推荐(0)
摘要: 1、9个中文OCR数据集 https://webx32.com/develop/datasets.html 2、8个常用中文OCR数据集,附下载链接 https://blog.csdn.net/OpenDataLab/article/details/125717052 3、OCR_DataSet共1 阅读全文
posted @ 2024-10-07 16:24 星空28 阅读(172) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 ··· 15 下一页