Michael Nielsen的Neural Networks and Deep Learning,由Xiaohu Zhu,Freeman Zhang等人提供中文翻译的开源版本,这个是最新的v0.5中文版。
2022-10-09 10:20:25 3.09MB 深度学习
1
深刺 使用深度学习纠正拼写错误 动机 该项目的灵感来自在上发表的文章。 可以在Github上找到他的代码。 2017年1月,我开始了并且从第一堂课开始就迷上了。 以前,我曾多次听到过“神经网络”一词,并且对它们可以完成的事情有一个大致的了解,但从未对它们的“工作原理”有所了解。 自完成课程以来,我没有太多机会来尝试这项技术,但是我一直在考虑它的用途,尤其是在信息检索领域,这是我过去十年来一直致力于的领域。 除非您是Google,否则纠正拼写错误的典型技术是,或者它的近亲是。 魏斯先生很好地解释了为什么这些方法效果不佳。 目标 使用Tensorflow重新实现Weiss先生的递归神经网络(RNN),并达到相同的准确性水平。 他建议尝试实施某些探索领域以及其他领域,以查看是否可以获得进一步的改进。 编码 该代码的第一部分主要涉及下载Google发布的并对其进行设置,以进行培训,而这主要是
2022-10-04 17:29:45 93.39MB deep-learning neural-network rnn spelling
1
Neural-Data-Science-A-Primer-with-MATLAB-and-Python-.pdf
2022-09-30 21:07:57 7.03MB 综合文档
1
In this paper we propose acoustic direction of arrival (DOA) estimation with neural networks. Conventional signal processing tasks such as DOA estimation have benefited from recent advancements in deep learning, which leads to a data-driven approach that allows neural networks to be employed in a black-box manner. From traditional aspects, modern network models often lack interpretability when directly employed in signal processing realm. As an alternative, we introduce a learnable network from
2022-09-30 16:05:17 368KB doa tdoa cnn 神经网络
1
纸 论文“深度融合集群网络”的源代码 图W.涂,周S.,刘X.,郭X,蔡Z. 被AAAI2021接受。 安装 克隆此仓库。 git clone https://github.com/WxTu/DFCN.git Windows 10或Linux 18.04 的Python 3.7.5 脾气暴躁的1.18.0 斯克莱恩0.21.3 火炬视觉0.3.0 Matplotlib 3.2.1 准备 我们总共采用了六个数据集,包括三个图形数据集(ACM,DBLP和CITE)和三个非图形数据集(USPS,HHAR和REUT)。 要在这些数据集上训练模型,请从(访问代码:4622)或下载它们。 代码结构与用法 在这里,我们提供了PyTorch中的深度融合集群网络(DFCN)的实现,以及DBLP数据集上的执行示例(由于文件大小的限制)。 该存储库的组织方式如下: load_data.py
1
神经网络和深度学习(Neural Networks and Deep Learning) Michael Nielsen 中文版
2022-09-14 15:50:12 3.37MB 神经网络 深度学习 Michael Nielsen
1
EGNN-Pytorch(WIP) 中的实现。 最终可用于Alphafold2复制。 安装 $ pip install egnn-pytorch 用法 import torch from egnn_pytorch import EGNN layer1 = EGNN ( dim = 512 ) layer2 = EGNN ( dim = 512 ) feats = torch . randn ( 1 , 16 , 512 ) coors = torch . randn ( 1 , 16 , 3 ) feats , coors = layer1 ( feats , coors ) feats , coors = layer2 ( feats , coors ) # (1, 16, 512), (1, 16, 3) 带边 import torch from egnn_pytorch impo
1
Most 3D shape classification and retrieval algorithms were based on rigid 3D shapes, deploying these algorithms directly to nonrigid 3D shapes may lead to poor performance due to complexity and changeability of non-rigid 3D shapes. To address this challenge, we propose a fusion view convolutional neural networks (FVCNN) framework to extract the deep fusion features for non-rigid 3D shape classification and retrieval. We first propose a projection module to transform the nonrigid 3D shape into a
2022-09-08 23:41:05 3.62MB 研究论文
1
Neural Networks and Deep Learning神经网络与深度学习 中文版.pdf 个人收集电子书,仅用学习使用,不可用于商业用途,如有版权问题,请联系删除!
2022-09-06 15:15:54 3.06MB 深度学习 中文版
1