ICode9

精准搜索请尝试: 精确搜索
  • Vgg16神经网络简介与代码实战2019-07-09 20:07:09

    1.介绍 vgg被发表在ICLR 2015上,论文作者是Goolge DeepMind,这系列model在ILSVRC-2013达到了best-performance,并且在其他以DCNN为基础的工作达到了很好的效果(例如FCN)   2.模型结构   3.模型特点 比起Alexnet,Vgg对图片有更精确的估值以及更省空间 与Alexnet对比: 相同点: 1.最后

  • 食物链2019-07-07 17:43:00

    食物链 动物王国中有三类动物A,B,C,这三类动物的食物链构成了有趣的环形。A吃B, B吃C,C吃A。 现有N个动物,以1-N编号。每个动物都是A,B,C中的一种,但是我们并不知道它到底是哪一种。 有人用两种说法对这N个动物所构成的食物链关系进行描述: 第一种说法是"1 X Y",表示X和Y是同类。 第

  • 深度学习项目-人脸表情识别2019-07-03 18:27:58

    表情识别 简介 利用卷积神经网络构建整个系统。 尝试了Gabor、LBP等传统人脸特征提取方式。 在FER2013、JAFFE和CK+数据集上进行模型评估。 环境部署 基于Python3和Keras2(TensorFlow后端) 具体依赖安装(推荐使用conda或者venv虚拟环境) git clone https://github.com/l

  • A trip through the Graphics Pipeline 2011_13 Compute Shaders, UAV, atomic, structured buffer2019-06-28 19:50:31

      Welcome back to what’s going to be the last “official” part of this series – I’ll do more GPU-related posts in the future, but this series is long enough already. We’ve been touring all the regular parts of the graphics pipeline, down to different

  • Same Tree2019-06-27 09:50:38

    Given two binary trees, write a function to check if they are equal or not. Two binary trees are considered equal if they are structurally identical and the nodes have the same value.   /** * Definition for binary tree * struct TreeNode { * int va

  • Python3解leetcode Same TreeBinary Tree Level Order Traversal II2019-06-23 14:55:06

    问题描述: Given a binary tree, return the bottom-up level order traversal of its nodes' values. (ie, from left to right, level by level from leaf to root). For example: Given binary tree [3,9,20,null,null,15,7], 3 / \ 9 20 / \ 15 7 ret

  • Python3解leetcode Same Tree2019-06-22 10:53:20

    问题描述:   Given two binary trees, write a function to check if they are the same or not.   Two binary trees are considered the same if they are structurally identical and the nodes have the same value.   Example 1:   Input: 1 1 / \

  • 方法重载2019-06-14 19:04:14

    什么是方法重载 方法重载:指在同一个类中,允许存在一个以上的同名方法,只要它们的参数列表不同即可,与修饰符和返回值类型无关。 参数列表不同是指参数的 个数不同 数据类型不同 顺序不同 重载方法调用 JVM通过方法的参数列表,调用不同的方法。 需求 比较两个数据是否相等。参数类型

  • 方法练习题2019-06-14 18:53:45

    需求: 定义一个方法,用来判断两个数字是否相同。 代码实现 package demo03;/*题目要求:定义一个方法,用来判断两个数字是否相同。 */public class Demo01MethodSame { public static void main(String[] args) { System.out.println(isSame(10, 20)); // false Syste

  • python XML文档解析--ElementTree遍历xml文档以及根据配置修改属性值2019-06-11 08:48:13

    python 中xml解析有很多种方式,本文采用ElementTree方式对xml进行解析。以下代码是对一个xml文档中具体属性值进行修改的例子(会涉及到遍历xml文本),修改的界面如下: 实际修改的代码如下: import xml.etree.ElementTree as ET import json import os import sys data_id = 1 tre

  • borderType2019-06-08 11:39:06

    决定在图像发生几何变换或者滤波操作(卷积)时边沿像素的处理方式 base.hpp (opencv4中) enum BorderTypes { BORDER_CONSTANT = 0, //!< `iiiiii|abcdefgh|iiiiiii` with some specified `i` BORDER_REPLICATE = 1, //!< `aaaaaa|abcdefgh|hhhhhhh` BORDER_REFLECT

  • HDU - 6416 :Rikka with Seam(DP & 前缀和 & 数学)2019-05-01 16:44:49

    pro:给定N*M的矩阵,现在让你在每一行删去一个位置,然后形成新N*(M-1)的矩阵,问有多少种不同的新的矩阵。需要满足相邻行删去的位置不大于K。 (题目是01矩阵,其实任意矩阵都可以做,本题算法里只关心相邻的是否相同。 sol:dp[i][j]表示从上到下删,删到第i行,第i行删去第j列的不同矩阵方案数。 

  • 并发与并行的区别2019-04-30 14:52:57

                         并发:我们在写应用程序时经常会出现并发现象。一次处理很多事情,导致一些数据存储或计算出现问题.我个人理解并发就是(双拳难敌四手) 并行:我们是可以让他出现,为了优化软件效率。同时处理多核CPU中的任务的多个子任务。我在理解并行就想到(周

  • 100.Same Tree2019-04-09 14:40:05

    class Solution { public: bool isSameTree(TreeNode *p, TreeNode *q) { if (!p && !q) return true; if ((p && !q) || (!p && q) || (p->val != q->val)) return false; return isSameTree(p->left, q->l

  • ultiple Endpoints may not be deployed to the same path2019-03-25 11:53:02

    @Configurationpublic class WebSocketConfig { //打war包启动需要注释掉此:否则报 :DeploymentException: Multiple Endpoints may not be deployed to the same path// @Bean// public ServerEndpointExporter serverEndpointExporter (){// return new ServerEndp

  • same-security-traffic2019-03-24 16:52:34

    关于Inter-interface和intra-interface: 要允许具有相同安全级别的接口之间的通信,或允许流量进入和退出同一接口,请在全局配置模式下使用same-security-traffic命令。 要禁用相同的安全流量,请使用此命令的no形式。 same-security-traffic permit {inter-interface | intra-interface}

  • Tree——No.100 Same Tree2019-03-10 17:49:44

    Problem: Given two binary trees, write a function to check if they are the same or not. Two binary trees are considered the same if they are structurally identical and the nodes have the same value. Explanation: 判断两棵树是否相等。 My Thinking: 使用递归 My So

  • iOS获取手机唯一标识2019-03-07 14:50:29

    项目需求,在用户没有登录情况下根据手机标识作为身份认证获取对应信息。 NSString *UUID = [[[UIDevice currentDevice] identifierForVendor] UUIDString]; 系统提供了获取uuid的方法作为设备唯一标识,但是存在一个缺陷。 根据官方解释 The value of this property is the same

  • 19.3.2 [LeetCode 100] Symmetric Tree2019-03-02 13:51:15

    Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center). For example, this binary tree [1,2,2,3,4,4,3] is symmetric: 1 / \ 2 2 / \ / \3 4 4 3   But the following [1,2,2,null,3,null,3] is not: 1 /

  • leetcode100_Same Tree2019-02-24 12:02:22

    Given two binary trees, write a function to check if they are the same or not. Two binary trees are considered the same if they are structurally identical and the nodes have the same value. Example 1: Input: 1 1 / \ / \

  • 2019 HZNU Winter Training Day 14 Comprehensive Training2019-02-16 18:41:43

    A - Choosing Capital for Treeland  CodeForces - 219D  题意:有一颗单向边的树,要选取一个结点作为首都。要求是这个结点到其它结点,总共需要翻转的路径数量最少(因为是单向边,翻转了才能到达另一个结点)。 做法:树形dp。 代码:待补。   B - Maximal Intersection  CodeForces - 1029

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

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

ICode9版权所有