Gluon CV工具包 | | | | GluonCV提供了计算机视觉中最先进的(SOTA)深度学习模型的实现。 它是为工程师,研究人员和学生设计的,用于基于这些模型快速制作原型产品和研究思路。 该工具包提供四个主要功能: 训练脚本以重现研究论文中报告的SOTA结果 同时支持PyTorch和MXNet 大量的预训练模型 精心设计的API,可大大降低实施复杂性 社区支持 演示版 在或检查高清视频。 支持的应用 应用 插图 可用型号 识别图像中的物体。 50多个模型,包括 , , , ,... 用它们的检测多个对象图像中的边界框。 , , 关联图像的每个像素带有分类标签。 , , , , , , 检测物体并关联对象区域内的每个像素都有一个实例标签。 检测人体姿势从图像。 认识人类的行为在视频中。 MXNet: , , , , , , ,, PyTorch: , , , ,, , , 预测深度图从图像。 生成视觉欺骗性图像 , , 重新识别场景中的行人 安装 GluonCV构建在MXNe
1
弱监督定位调查:使用PyTorch中预先训练的CNN进行弱监督对象定位的各种算法的调查
2023-02-23 22:59:47 2.59MB visualization image localization deep-learning
1
拟无监督的颜色恒定性 本文所述方法的实现: 西蒙妮·比安科(Simone Bianco),克劳迪奥·库萨诺(Claudio Cusano),“准无监督色彩恒定性”-CVPR 2019 该文件可。 另请参见或尝试。
1
MATLAB Deep Learning With Machine Learning, Neural Networks and Artificial Intelligence 英文无水印pdf pdf所有页面使用FoxitReader和PDF-XChangeViewer测试都可以打开 本资源转载自网络,如有侵权,请联系上传者或csdn删除 本资源转载自网络,如有侵权,请联系上传者或csdn删除
2023-02-22 22:21:44 3.66MB MATLAB Deep Learning Machine
1
深度语义角色标签 该存储库包含用于训练和使用Deep SRL模型的代码,该代码在以下内容中进行了描述: 如果您使用我们的代码,请按以下方式引用我们的论文: @inproceedings {he2017deep, title = {深层语义角色标签:什么起作用,下一步是什么}, 作者= {他,鲁恒和李,肯顿和刘易斯,迈克和Zettlemoyer,卢克}, booktitle = {计算语言学协会年会论文集}, 年= {2017} } 入门 先决条件: python应该使用Python2。您可以使用virtualenv进行模拟。 点安装numpy pip install theano ==
2023-02-22 10:44:24 54KB nlp theano deep-learning tagging
1
在Tensorflow中使用记忆增强神经网络进行一枪学习。 更新:添加了对Tensorflow v1 *的支持。 本文采用记忆增强神经网络的一站式学习的Tensorflow实现。 目前的执行进度: 实用功能: 图像处理器 指标(精度) 相似度(余弦相似度) LSTM控制器和存储单元 批处理发生器 Omniglot测试人员代码 通过自动编码器进行无监督功能学习 牛/新出生识别 基准数据集是。 所有数据集都应放置在文件夹中。 亚当·桑托罗,谢尔盖Bartunov,马修Botvinick,大安Wierstra,蒂莫西Lillicrap,一次性学习与记忆,增强神经网络,[ ]
1
相对论的甘 它是什么? 此仓库具有相对论GAN的简单实现。 相对论修改了GAN目标,从而大大提高了训练的稳定性。 这两个目标是: 对于发电机培训步骤: err_d = ( torch.mean((y_real - torch.mean(y_gene) - 1) ** 2) + torch.mean((y_gene - torch.mean(y_real) + 1) ** 2) ) 凡y_real是鉴别得分的真实数据和y_gene是鉴别得分假数据 对于鉴别器: err_g = ( torch.mean((y_real - torch.mean(y_gene) + 1) ** 2) + torch.mean((y_gene - torch.mean(y_real) - 1) ** 2)
2023-02-19 23:44:37 27KB machine-learning deep-learning torch pytorch
1
TensorFlow2中的分布式RL 是一个使用实现各种流行的分布增强学习算法的存储库。 分布式RL是适用于随机环境的算法。 如果您想研究Distribution RL,则此存储库将是最佳选择。 dist-rl-tf2包含由领先的AI研究机构发布的三种Distribution RL算法。 演算法 C51 论文作者Marc G.Bellemare,Will Dabney,RémiMunos 方法OFF政策/时间差异/无模型仅限离散操作 观念的核心 # idea01. The output of the Q Network is a Distribution Vector, not a Scalar Value. def create_model ( self ): input_state = Input (( self . state_dim ,)) h1 = Dens
2023-02-19 23:32:48 458KB machine-learning deep-learning tensorflow dqn
1
Deep Learning with Python A Hands-on Introduction Authors: Ketkar, Nihkil Discover the practical aspects of implementing deep-learning solutions using the rich Python ecosystem. This book bridges the gap between the academic state-of-the-art and the industry state-of-the-practice by introducing you to deep learning frameworks such as Keras, Theano, and Caffe. The practicalities of these frameworks is often acquired by practitioners by reading source code, manuals, and posting questions on community forums, which tends to be a slow and a painful process. Deep Learning with Python allows you to ramp up to such practical know-how in a short period of time and focus more on the domain, models, and algorithms.
2023-02-19 16:59:46 5.47MB Python Deep Learnin
1
TimeSformer-Pytorch 实现,是一种基于关注点的纯净,简单的解决方案,可以在视频分类上达到SOTA。 该存储库将仅存储性能最佳的变体“时空分散注意力”,无非就是沿空间之前的时间轴的注意力。 安装 $ pip install timesformer-pytorch 用法 import torch from timesformer_pytorch import TimeSformer model = TimeSformer ( dim = 512 , image_size = 224 , patch_size = 16 , num_frames = 8 , num_classes = 10 , depth = 12 , heads = 8 , dim_head = 64 , attn_dropout =
1