ICode9

精准搜索请尝试: 精确搜索
  • Jumpserver docker-compose 随手记2019-09-30 10:04:03

    wget  或  git clone   docker  build  -t   jumpserver:v1   .     #构建镜像   docker images   vim  jumpserver-dockercompose.yml version: '3'networks: jumpserver:services: mysql: image: mysql:5.7 container_name: jms__mysql restart: a

  • 深度残差收缩网络:(五)实验验证2019-09-29 23:03:56

      实验部分将所提出的两种深度残差收缩网络,即“通道之间共享阈值的深度残差收缩网络(Deep Residual Shrinkage Networks with Channel-shared Thresholds,简称DRSN-CS)”,和“逐通道不同阈值的深度残差收缩网络(Deep Residual Shrinkage Networks with Channel-wise Thresholds,简

  • Paper | Densely Connected Convolutional Networks2019-09-29 11:52:32

    目录 论文:Densely Connected Convolutional Networks,CVPR 2017 摘要 Recent work has shown that convolutional networks can be substantially deeper, more accurate, and efficient to train if they contain shorter connections between layers close to the input and

  • 计算机网络【Computer Networks】学习记录012019-09-15 16:06:16

    教材使用:计算机网络 英文版·第五版 课程目标 1.运用计算机网络中的计算机和通信相关基础理论知识,结合计算机网络体系结构的分层思想,通过掌握的网络参考模型及其设计原理分析实际网络,对比不同网络系统的解决方案,从而可以对复杂网络及其应用系统进行优化和改进。 2.能通过掌握

  • 深度学习 专项课程 (一) —— Neural Networks and Deep Learning2019-09-13 17:42:10

    Coursera - Neural Networks and Deep Learning - Andrew Ng 学习随笔 Part 1 Introduction to deep learning Part 2 Neural Networks Basics Part 3 Shallow neural networks Part 4 Deep Neural Networks

  • Graph Neural Networks for Computer Vision2019-09-07 22:04:19

    Graph Neural Networks for Computer Vision I was attracted by this image: This is an inspiring image and it was posted in this article: Tutorial on Graph Neural Networks for Computer Vision and Beyond (Part 1) written by Boris, a PhD student at University

  • 35. docker swarm dockerStack 部署 投票应用2019-08-27 14:02:56

    1. 编写 docker-compose.yml # docker-compose.yml version: "3" services:     redis:     image: redis:alpine     ports:       - "6379"     networks:       - frontend     deploy:       replicas: 2       update_config:         parallelis

  • 胶囊网络 -- Capsule Networks2019-08-26 16:02:05

    胶囊网络是 vector in vector out的结构,最后对每个不同的类别,输出不一个向量,向量的模长表示属于该类别的概率。 例如,在数字识别中,两个数字虽然重叠在一起,Capsule中的两个向量能完整表达两个数字的特征,虽然有些特征重叠在一起导致难以分辨。 因为胶囊网络中:用向量模的大小衡量某个

  • Convolutional Neural Networks2019-08-25 18:51:39

    原文引用https://www.dazhuanlan.com/2019/08/25/5d625a7694a88/ Convolutional Neural Networks 白雪峰 — xfbai@mtlab.hit.edu.cn.这是一篇关于CNN的总结 Outline CNN栗子镇楼 What is CNN 什么是卷积 什么是池化 Why CNN 对CNN的其他一些理解 CNN实现(接口) 1. CNN栗

  • 使用docker-compose搭建WordPress2019-08-17 17:56:59

    今天博主使用typecho各种不爽,索性干掉typecho,使用WordPress 依赖 mysql nginx yml 文件 version: '3' services: nginx: image: nginx:1.13.9-alpine ports: - "80:80" - "443:443" restart: always volumes: - ./wordpre

  • tencent_2.4_deep_neural_networks2019-08-12 21:06:46

    课程地址:https://cloud.tencent.com/developer/labs/lab/10313/console   首先我们需要先下载 MNIST 的数据集。使用以下的命令进行下载: wget https://devlab-1251520893.cos.ap-guangzhou.myqcloud.com/t10k-images-idx3-ubyte.gzwget https://devlab-1251520893.cos.ap-guang

  • DSX-600 CableAnalyzer™ 入门级铜缆认证仪2019-08-07 11:36:47

    福禄克网络推出适用于电气安装人员的 DSX-600 CableAnalyzer™ 入门级铜缆认证 步骤简化,效率提升 中国北京,2017年6月12日—— Fluke Networks 近日推出 一款经济型入门级铜缆认证仪DSX-600 CableAnalyzer,可提升小规模电缆安装工作的生产力、提高投资回报率(ROI)。DSX-600设

  • [论文笔记] (CVPR2019) Panoptic Feature Pyramid Networks2019-08-04 09:44:17

    [论文笔记] (CVPR2019) Panoptic Feature Pyramid Networks

  • End-To-End Memory Networks【论文笔记】2019-07-22 15:03:28

    一、摘要   作者介绍了引入可能很大的外部存储器的递归注意力模型。这种架构是记忆网络的一种形式,但与之前的不同,它是可以端到端训练的。模型的灵活性使得我们能够将其应用于各种任务,如问答、语言建模。在实验中,作者介绍的多条机制提升了模型效果。 二、介绍   AI研究的

  • Pass 200-601 Exam Using 200 601 Exam Cram2019-07-20 20:04:18

    Tired of doing the same job? Get your hands on 200-601 exam It is the nature of the human being that he/she will get tired of doing the same task over and over, same is the case of the Cisco Specialist professionals. If you are an individual who is seekin

  • 你绝对值得一看的经典教材!神经网络和深度学习(迈克尔·尼尔逊)2019-07-12 13:35:47

    Neural networks and deep learning 神经网络和深度学习 Michael Nielsen/Jun 2019 迈克尔 尼尔逊/更新至2019年6月 Chapters 章节 1 using neural nets to recognize handwtritten digits 用神经网识别手写数字 2 how the back propagation works 后向传播算法工作原理 3

  • [C1W4] Neural Networks and Deep Learning - Deep Neural Networks2019-07-09 21:00:32

    第四周:深层神经网络(Deep Neural Networks) 深层神经网络(Deep L-layer neural network) DLI(深度学习学院 deep learning institute)已经意识到有一些函数,只有非常深的神经网络能学会,而更浅的模型则办不到。尽管对于任何给定的问题很难去提前预测到底需要多深的神经网络,所以先去尝试逻辑

  • Palo Alto签署并购协议买下两家专攻新兴技术资安公司2019-05-31 16:55:50

    美国的网络安全业者Palo Alto Networks近日宣布已与两家业者签署并购协议,一是专精于容器安全的Twistlock,另一为无服务器运算(Serverless)安全业者PureSec。Twistlock定位为全面性的云端原生安全平台,宣称可保护任何环境的任务,从主机、容器到无服务器。该公司所打造的Cloud Discovery开

  • 循环神经网络 RNN Recurrent Neural Networks 介绍2019-05-16 18:54:16

                                               循环神经网络(RNN, Recurrent Neural Networks)介绍   这篇文章很多内容是参考:http://www.wildml.com/2015/09/recurrent-neural-networks-tutorial-part-1-introduction-to-rnns/,在

  • 复杂网络-标准公开数据集2019-05-16 12:52:10

    http://vlado.fmf.uni-lj.si/pub/networks/data/   SNAP(Stanford Large Network Dataset Collection)实验数据集 主要包含以下数据集   Social networks : online social networks, edges represent interactions between people Networks with ground-truth communities :

  • 循环神经网络 RNN Recurrent Neural Networks 介绍2019-05-15 21:50:30

                                               循环神经网络(RNN, Recurrent Neural Networks)介绍   这篇文章很多内容是参考:http://www.wildml.com/2015/09/recurrent-neural-networks-tutorial-part-1-introduction-to-rnns/,在

  • 循环神经网络 RNN Recurrent Neural Networks 介绍2019-05-13 12:56:38

                                循环神经网络(RNN, Recurrent Neural Networks)介绍   这篇文章很多内容是参考:http://www.wildml.com/2015/09/recurrent-neural-networks-tutorial-part-1-introduction-to-rnns/,在这篇文章中,加入了一些新的内容

  • 论文阅读-可变形卷积网络:Deformable Convolutional Networks2019-05-13 09:54:58

    论文地址 :Deformable Convolutional Networks 工程地址:github 链接 0. 摘要   卷积神经网络对位置变化的建模存在天然缺陷,这是由于网络固定的位置结构。该论文提出两个新的模块来增强CNNs的这种建模能力,称为deformable convolution and deformable RoI pooling,两个模块的基

  • ICLR 2019最佳论文出炉:微软、MILA、MIT获奖2019-05-07 08:48:38

    本文由机器之心整理一年一度的深度学习盛会 ICLR 将于当地时间 5 月 6 日-9 日在新奥尔良举行。据统计,ICLR 2019 共收到 1591 篇论文投稿,相比去年的 996 篇增长了 60%,其中 oral 论文 24 篇,poster 论文 476 篇。目前,ICLR 2019 的最佳论文已经发布。来自蒙特利尔大学 MILA 研究

  • 「Computer Vision」Note on Double Attention Networks2019-05-01 09:54:50

    QQ Group: 428014259 Tencent E-mail:403568338@qq.com http://blog.csdn.net/dgyuanshaofeng/article/details/89735429 [1] A2-Nets: Double Attention Networks NIPS 2018 [paper]

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有