深度学习 [deep learning] AI圣经 Deep Learning 英文版 ( 花书 ) ,[美] Ian,Goodfellow,[加] Yoshua,Bengio,[加] Aaron ... 著
2023-12-11 16:54:00 14.48MB 深度学习 AI圣经
1
火炬指标 PyTorch的模型评估指标 火炬指标作为自定义库,以提供Pytorch共同ML评价指标,类似于tf.keras.metrics 。 如,Pytorch没有用于模型评估指标的内置库torch.metrics 。 这类似于的指标库。 用法 pip install --upgrade torch-metrics from torch_metrics import Accuracy ## define metric ## metric = Accuracy ( from_logits = False ) y_pred = torch . tensor ([ 1 , 2 , 3 , 4 ]) y_true = torch . tensor ([ 0 , 2 , 3 , 4 ]) print ( metric ( y_pred , y_true )) ## define metri
1
深度SVDD的PyTorch实现 该存储库提供了我们的ICML 2018论文“深度一类分类”中介绍的Deep SVDD方法的实现。 引用与联系 您可以在找到《深层一类分类ICML 2018》论文的PDF。 如果您使用我们的作品,也请引用以下文章: @InProceedings{pmlr-v80-ruff18a, title = {Deep One-Class Classification}, author = {Ruff, Lukas and Vandermeulen, Robert A. and G{\"o}rnitz, Nico and Deecke, Lucas and Siddiqui, Shoaib A. and Binder, Alexander and M{\"u}ller, Emmanuel and Kloft, Marius}, bookti
2023-11-24 15:54:02 2.12MB python machine-learning deep-learning pytorch
1
– Volume 2 – 20 Deep Learning 21 Convolutional Neural Nets (CNNs) 22 Recurrent Nerual Nets (RNNs) 23 Keras Part 1 24 Keras Part 2 25 Autoencoders 26 Reinforcement Learning 27 Generative Adversarial Networks (GANs) 28 Creative Applications 29 Datasets 30 Glossary
2023-11-23 13:30:42 45.26MB 深度学习 人工智能
1
SincNet SincNet是用于处理原始音频样本的神经体系结构。 这是一种新颖的卷积神经网络(CNN),它鼓励第一个卷积层发现更多有意义的滤波器。 SincNet基于参数化的Sinc函数,这些函数实现了带通滤波器。 与学习每个滤波器的所有元素的标准CNN相比,所提出的方法只能从数据中直接学习低和高截止频率。 这提供了一种非常紧凑而有效的方式来导出专门针对所需应用进行了调整的定制滤波器组。 该项目发布了一系列代码和实用程序,可通过SincNet进行说话人识别。 使用TIMIT数据库提供了说话人识别的示例。 如果您对应用于语音识别的SincNet感兴趣,可以查看PyTorch-Kaldi
2023-11-23 13:09:20 173KB audio python deep-learning signal-processing
1
Deep Learning for Computer Vision with Python Practioner Bundle + Starter Bundle by Adrian Rosebrock of PyImageSearch
2023-11-05 06:05:26 35.15MB Deep Learning Computer Vision
1
Deep Learning with Python introduces the field of deep learning using the Python language and the powerful Keras library. Written by Keras creator and Google AI researcher François Chollet, this book builds your understanding through intuitive explanations and practical examples. You'll explore challenging concepts and practice with applications in computer vision, natural-language processing, and generative models. By the time you finish, you'll have the knowledge and hands-on skills to apply deep learning in your own projects.
2023-10-26 06:02:44 15.26MB 深度学习 Python
1
总共1000多页,很好的资料,着重讲DL4J。
2023-10-24 12:53:43 11.53MB Java Deep Learning
1
基于注意力的深度多实例学习 基于注意力的深度多实例学习可以应用于广泛的医学成像应用。 在项目“ ”@ ,我在 ICML 2018 论文“Attention-based Deep Multiple Instance Learning”( )中撰写了Keras版本这个 repo 为 Keras 用户分享解决方案。 可以在找到官方 Pytorch 实现。 我使用Tensorflow后端建造它与Keras。 我编写了论文中描述的注意力层,并在结肠图像中进行了 10 倍交叉验证的实验。 我得到了论文中描述的非常接近的平均准确率,可视化结果如下所示。 部分代码来自 。 在训练模型时,我们只使用图像级标签(0 或 1 以查看它是否是癌症图像)。 注意层可以通过仅呈现积极补丁的一小部分子集来提供对决策的解释。 我的实施结果 数据集 结肠癌数据集 已处理的补丁 我把我处理的数据放在这里,你也可以
1
deep-learning personal practice 深度学习个人练习,该项目实现了深度学习中一些常用的算法,内容包括: 四种初始化方法:zero initialize, random initialize, xavier initialize, he initialize。 深度神经网络 正则化 dropout 三种梯度下降方法:BGD, SGD, mini-batch 六种优化算法:momentum、nesterov momentum、Adagrad、Adadelta、RMSprop、Adam 梯度检验 batch normalization recurrent neural network (RNN) Note: 下列 1-10中网络架构主要为四大块: initialize parameters、forward propagation、backward propagati
2023-10-06 17:02:27 341KB 附件源码 文章源码
1