
算法层--深度学习
文章平均质量分 95
深度学习(DL, Deep Learning)是机器学习(ML, Machine Learning)领域中一个新的研究方向,它被引入机器学习使其更接近于最初的目标——人工智能(AI, Artificial Intelligence)。
路途…
Reading is a long investment.During this process, find the entertainment and enjoy life while treasure the present to compound interest.
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
【技术知识】WordEmbedding
title: date: 2020-10-20 07:56:09 author: liudongdong1 img: https://gitee.com/github-25970295/blogImage/raw/master/img/view-of-coffee-beans.jpg cover: false categories: NLP tags: - embedding TEXT processing deals with humongous amount of text to per.原创 2021-06-08 15:28:09 · 1117 阅读 · 0 评论 -
【Pytorch】Learning Rate Policy Function
1.lr_scheduler.StepLR class torch.optim.lr_scheduler.StepLR(optimizer, step_size, gamma=0.1, last_epoch=-1) 功能:等间隔调整学习率,调整倍数为gamma倍,调整间隔为step_size。间隔单位是step。需要注意的是,step通常是指epoch,不要弄成iteration了。 参...原创 2020-04-25 12:36:26 · 559 阅读 · 0 评论 -
【Pytorch】PytorchSegmentCode
0. 基础配置 0.1. 设置随机种子 def set_seeds(seed, cuda): """ Set Numpy and PyTorch seeds. """ np.random.seed(seed) torch.manual_seed(seed) if cuda: torch.cuda.manual_seed_all(seed) print ("==> Set NumPy and PyTorch seeds.") 0.2. 张原创 2021-02-11 08:50:37 · 726 阅读 · 0 评论 -
【Dataset】 Chardataset Generate
1. 根据不同字体生成字符图片数据集 from PIL import Image, ImageDraw, ImageFont, ImageFilter import random import matplotlib.pyplot as plt import numpy as np import os #数据集根目录 rootpath="./data/" #windows上字体文件路径 fontpath='C:/windows/fonts/' #图片旋转角度 rotateAngel=[-20,-15,-原创 2020-10-05 23:19:12 · 661 阅读 · 0 评论 -
【Paper】CTC Introduce
x1x2xTy1y2yU′sto Y′s′sY∣X)YXY∗argmaxpY∣Xϵy1ϵy2ϵyUϵzs−1ZZ(XYϵD∑−logPY∣X)Y∗argmaxYpY∣XA∗argmaxAt1∏Tptat∣Xmonotonic。原创 2020-07-12 15:03:15 · 404 阅读 · 1 评论 -
【Paper】GRU_LSTM introduce
外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-qBCwLxYr-1595001102796)(C:/Users/dell/AppData/Roaming/Typora/typora-user-images/image-20200715153213869.png)]Ft表示遗忘门限,It表示输入门限, ̃Ct表示前一时刻cell状态、Ct表示cell状态(这里就是循环发生的地方),Ot表示输出门限,Ht表示当前单元的输出,Ht-1表示前一时刻单元的输出。原创 2020-07-17 23:54:35 · 633 阅读 · 1 评论