Python – opencv-python保存视频时出现Failed to load OpenH264 library: openh264-1.8.0-win64.dll错误
1 opencv-python保存视频时出现Failed to load OpenH264 library: openh264-1.8.0-win64.dll,Please check environment and/or download library错误 今天在使用opencv-python库…
- Python
- 2022-07-04
资源分享 – Real-Time 3D Graphics with WebGL 2 , Second Edition 英文PDF下载
1 Real-Time 3D Graphics with WebGL 2 , Second Edition 英文PDF下载 1.1 书籍简介 随着高度交互的应用程序已成为用户体验中越来越重要的一部分,WebGL 是一种独特的尖端技术,可将硬件加速的3D图形引入 Web。 本书包含80多个示例,引导读…
- 计算几何与计算机图形学资源
- 2022-07-03
深度学习 – 我的深度学习项目代码文件组织结构
1 我的深度学习项目代码文件组织结构 一般来说,深度学习项目需要包含以下内容: 数据集预处理与加载 深度学习模型定义 模型训练 模型推理 根据以上的功能描述,我的深度学习项目代码文件组织结构如下: ├─bin ├─configs ├─data_loader ├─data_preprocess ├─m…
- Pytorch
- 2022-07-02
Pytorch – 为什么要设置随机数种子?
1 Pytorch的随机种子 最近在看一些开源的Pytorch项目时,几乎每一个项目都会设置随机数种子,比如下面这种 class RandomState(object): def __init__(self, seed): torch.set_num_threads(1) torch.backend…
- Pytorch
- 2022-07-01
Python – list与字符串str相互转换方法总结
1 字符串str转list的方法总结 # -*- coding: utf-8 -*- if __name__ == '__main__': temp_str = '1once time is wasted2'; temp_list = list(temp_str) print(temp_list) …
- Python
- 2022-06-30
深度学习 – 图解Transformer,小白也能看懂的Transformer处理过程
译自:https://jinglescode.github.io/2020/05/27/illustrated-guide-transformer/ 1 前言 Transformer是encoder-decoder架构的进一步演变,其在论文Attention is All You Need中提出。虽…
- Transformer
- 2022-06-29
Pytorch – torch.nn.Conv1d参数详解与使用
1 torch.nn.Conv1d torch.nn.Conv1d主要是对一维输入Tensor应用一维卷积。 如果一维卷积输入为(N,C_{in},L),输出为(N,C_{out},L_{out}),那么这两者的关系可描述为 \operatorname{out}\left(N_{i}, C_{\te…
- Pytorch
- 2022-06-28
Pytorch – 使用torchsummary/torchsummaryX/torchinfo库打印模型结构、输出维度和参数信息
1 torchsummary/torchsummaryX torchsummary Github地址:https://github.com/sksq96/pytorch-summary torchsummaryX Github地址:https://github.com/nmhkahn/torchsu…
- Pytorch
- 2022-06-27
Pytorch – 内置的LSTM网络torch.nn.LSTM参数详解与使用示例
1 torch.nn.LSTM torch.nn.LSTM是pytorch内置的LSTM模块。 对于torch.nn.LSTM输入序列的每一个元素,都使用以下经典的LSTM计算过程: \begin{array}{c} i_{t}=\sigma\left(W_{i i} x_{t}+b_{i i}+W…
- Pytorch
- 2022-06-26
深度学习 – 理解LSTM网络[翻译]
翻译自:http://colah.github.io/posts/2015-08-Understanding-LSTMs/ 1 Recurrent Neural Networks 循环神经网络 人类并不是每秒钟都从零开始思考。当你读这篇文章时,你根据对前面单词的理解来理解每个单词。你不会把一切都扔掉…
- 深度学习
- 2022-06-25
Python – 字典dict遍历方法总结
1 字典dict遍历的方法 在Python中,可以使用遍历键、遍历值、遍历键值对字典进行遍历。 1.1 遍历字典的键 (1) for key in dict遍历字典的键 # -*- coding: utf-8 -*- if __name__ == '__main__': test_dict = { …
- Python
- 2022-06-24
Python – glob模块详解以及glob.glob、glob.iglob函数的使用
1 python中的glob 官方文档地址:https://docs.python.org/3/library/glob.html python中的glob模块按类Unix Shell的查找规则和匹配模式查找所有匹配的路径名。 该glob模块包含三个函数glob.glob、glob.iglob、gl…
- Python
- 2022-06-23
最新评论