A Primer with MATLAB® and Python™ present important information on the emergence of the use of Python, a more general purpose option to MATLAB, the preferred computation language for scientific computing and analysis in neuroscience. This book addresses the snake in the room by providing a beginner’s introduction to the principles of computation and data analysis in neuroscience, using both Python and MATLAB, giving readers the ability to transcend platform tribalism and enable coding versatility. Includes discussions of both MATLAB and Python in parallel Introduces the canonical data analysis cascade, standardizing the data analysis flow Presents tactics that strategically, tactically, and algorithmically help improve the organization of code
2021-07-16 17:06:55 13.54MB 神经数据科学 matlab python
1
Neural Network Design第二版英文原版
2021-07-16 13:51:11 11.27MB Neural Network Design
1
该PPT为阅读Neural Relation Extraction with Selective Attention over Instances论文后所做的笔记,总结了论文中的主要技术,并大致梳理了论文思路
2021-07-14 17:21:56 800KB Attention Relation Extraction
1
neuro-ode:具有Pytorch神经常微分方程实现的Jupyter笔记本
2021-07-14 15:48:43 2.18MB jupyter-notebook pytorch vae neural-ode
1
神经常微分方程的元解法 使用参数化求解器实现鲁棒的神经ODE。 大意 每个具有s级且为p阶的Runge-Kutta(RK)求解器均由一个系数表( Butcher tableau )定义。 对于s=p=2 , s=p=3和s=p=4 ,表中的所有系数都可以使用不超过两个变量的参数设置[1]。 通常,在神经ODE训练期间,使用具有固定Butcher表的RK解算器,并且仅训练右侧(RHS)功能。 我们建议使用RK解算器的整个参数族来提高神经ODE的鲁棒性。 要求 pytorch == 1.7 顶点== 0.1(用于训练) 例子 对于CIFAR-10和MNIST演示,请检查examples文件夹。 元求解器制度 在笔记本examples/cifar10/Evaluate model.ipynb我们展示了如何使用不同类型的Meta Solver机制(即: 单机版 解算器切换/平滑 求解器集成
2021-07-14 13:40:46 10.53MB neural-network parametrized solver pytorch
1
原文作者:Binh-Son Hua、Minh-Khoi Tran、Sai-Kit Yeung。 文章地址:https://arxiv.org/abs/1712.05245 github项目地址:https://github.com/scenenn/pointwise 在本文中,我们提出了一种用于3D点云的语义分割和目标识别的卷积神经网络。 我们网络的核心是逐点卷积,这是一种新的卷积算子,可以作用于点云的每个点。我们的全卷积网络设计实现起来惊人地简单,在语义分割和目标识别任务方面都可以提供具有竞争力的准确性。
1
SampleNet:可微分的点云采样 由特拉维夫大学的Itai Lang,Asaf Manor和Shai Avidan创建。 介绍 这项工作基于我们的。请阅读它以获取更多信息。也欢迎您观看CVPR 2020的。 直接在点云上工作的任务越来越多。随着点云大小的增加,这些任务的计算需求也随之增加。一个可能的解决方案是首先对点云进行采样。经典采样方法(例如,最远点采样(FPS))不考虑下游任务。最近的一项工作表明,学习针对特定任务的采样可以显着改善结果。但是,提出的技术并未处理采样操作的不可微性,而是提供了一种解决方法。 我们为点云采样引入了一种新颖的微分松弛。我们的方法采用了一种软投影操作,该操作将采样点近似为主要输入云中的混合点。近似值由温度参数控制,并在温度变为零时收敛到常规采样。在训练过程中,我们使用投影损耗来鼓励温度下降,从而使每个采样点都靠近输入点之一。 这种近似方案可在各种应用(例
2021-07-08 23:36:11 1.12MB deep-learning neural-network point-cloud pytorch
1
Keras注意机制 Keras的多对一注意力机制。 通过pip安装 pip install attention 导入源代码 from attention import Attention # [...] m = Sequential ([ LSTM ( 128 , input_shape = ( seq_length , 1 ), return_sequences = True ), Attention (), # <--------- here. Dense ( 1 , activation = 'linear' ) ]) 例子 在运行示例之前,请先
1
此仓库仅实现GhostNet的演示代码。 请移至以获取更多详细信息。 幽灵网 此存储库提供了CVPR 2020论文Pytorch演示实现。 带有预训练模型的TensorFlow / PyTorch实现可在。 要求 该代码已在Python3 PyTorch 1.0+上进行了验证。 用法 用法示例: import torch from ghost_net import ghost_net model = ghost_net(width_mult=1.0) input = torch.randn(32,3,224,224) y = model(input) print(y) GhostNet简介 GhostNet:廉价运营带来的更多功能。 CVPR2020。 韩开,王云和,田琦,郭建元,徐春景,徐昌。 方法 表现 GhostNet击败了其他SOTA轻量级CNN,例如MobileNetV
1
Manning.Grokking.Deep.Reinforcement.Learning.无水印版pdf
2021-07-08 09:09:33 72.5MB computerscience artificial neural network
1