深度学习 – NLP自然语言处理与语音识别中常用的标识符等的含义
1 NlP自然语言处理与语音识别中常用的标识符的含义 在NLP进行文本处理以及语音识别处理语音对应标签时我们经常会看到一些特殊的标识符,一些常见的标识符及其含义如下 <blank>/<BLANK>:表示空白符号; <unk>/<UNK>:低频词或未在词…
- 深度学习
- 2022-08-01
Transformer – 理解Transformer必看系列之,1 Self-Attention自注意力机制与多头注意力原理
转载自: 链接:https://www.ylkz.life/deeplearning/p10553832/ 作者:空字符 修改文章少量行文 1 引言 今天要和大家介绍的一篇论文是谷歌2017年所发表的一篇论文,名字叫做Attention is all you need,当然,网上已经有了大量的关于这…
- Transformer
- 2022-08-01
资源分享 – Foundations of Statistical Natural Language Processing 英文PDF下载
1 Foundations of Statistical Natural Language Processing 英文PDF下载 1.1 书籍简介 Statistical approaches to processing natural language text have become domin…
- AI资源
- 2022-07-31
资源分享 – Speech and Language Processing – An Introduction to Natural Language Processing, Computational Linguistics, and Speech Recognition , Third Edition draft 英文PDF下载
1 Speech and Language Processing - An Introduction to Natural Language Processing, Computational Linguistics, and Speech Recognition , Third Edition d…
- AI资源
- 2022-07-30
深度学习 – 以一个极简单的中英文翻译Demo彻底理解Transformer
转载自: 原文链接:https://zhuanlan.zhihu.com/p/360343417 作者:Algernon 少量行文修改。 Transformer并没有特别复杂,但是理解Transformer对于初学者不是件容易的事,原因因在于Transformer的解读往往没有配套的简单的demo,…
- Transformer
- 2022-07-29
Python – itertools.groupby使用详解
1 itertools.groupby 我们可以通过以下语句导入itertools.groupby from itertools import groupby 1.1 itertools.groupby函数 1.1函数形式 itertools.groupby(iterable, key=None) …
- Python
- 2022-07-28
Pytorch – torch.stack参数详解与使用
1 torch.stack参数详解与使用 1.1 torch.stack 1.函数形式 torch.stack(tensors, dim=0, *, out=None) → Tensor 2.函数功能 沿指定维度连接Tensor序列,所有的Tensor必须是同样大小 3.函数参数 tensors:T…
- Pytorch
- 2022-07-27
Pytorch – torch.cat参数详解与使用
1 torch.cat参数详解与使用 1.1 torch.cat 1.函数形式 torch.cat(tensors, dim=0, *, out=None) → Tensor 2.函数功能 在指定的维度串联指定Tensor序列,所有Tensor都必须具有相同的形状(连接维度除外),或者Tensor为…
- Pytorch
- 2022-07-25
资源分享 – Speech and Language Processing – An Introduction to Natural Language Processing, Computational Linguistics, and Speech Recognition , Second Edition 英文PDF下载
1 Speech and Language Processing - An Introduction to Natural Language Processing, Computational Linguistics, and Speech Recognition , Second Edition …
- AI资源
- 2022-07-24
资源分享 – Speech and Language Processing – An Introduction to Natural Language Processing, Computational Linguistics, and Speech Recognition , First Edition 英文PDF下载
1 资源分享 - Speech and Language Processing - An Introduction to Natural Language Processing, Computational Linguistics, and Speech Recognition , First Ed…
- AI资源
- 2022-07-23
Pytorch – torch.chunk参数详解与使用
1 torch.chunk参数详解与使用 1.1 torch.chunk 1.函数形式 torch.chunk(input, chunks, dim=0) → List of Tensors 2.函数功能 将输入Tensor拆分为特定数量的块。 如果给定维度dim上的Tensor大小不能够被整除,则…
- Pytorch
- 2022-07-22
Python – 获取当前时间字符串
1 当前时间转字符串 # -*- coding: utf-8 -*- import time if __name__ == '__main__': # 以年_月_日_时_分_秒形式输出时间字符串,示例为2022_07_21_11_26_01 current_time_str = time.strft…
- Python
- 2022-07-21
最新评论