ICode9

精准搜索请尝试: 精确搜索
  • CppCon笔记--Back to Basics: RAII and the Rule of Zero2020-07-25 05:31:41

    C++编程很多时候需要手动管理资源,其中包括资源的获取,使用和释放,而手动对资源释放是很容易出错的一个环节。 根据C++的特性,当局部对象的生命周期结束时,会调用析构函数,因此借由类的析构函数对资源进行释放就是RAII的工作原理。 但是这段代码仍然存在问题,如果对vector进行复制,此

  • Python Basics with Numpy2020-04-06 21:55:08

    原链接 1 - Building basic functions with numpy 1.1 - sigmoid function \(sigmoid(x) = \frac{1}{1+e^{-x}}\) is sometimes also known as the logistic function. It is a non-linear function used not only in Machine Learning (Logistic Regression), but also in De

  • 《ffmpeg basics》中文版 -- 24. 网络中的视频2020-01-11 17:37:40

    24. 网络中的视频 ​ 注:本章和 FFmpeg 本身毫无关系,主要讲了 HTML5 或 Flash 中如何添加音视频,以及一些视频分享网站,和为上传视频付费等信息。如对 HTML5 熟悉,大致浏览一下即可,而对 HTML5 更深如的了解和学习,请出门右走,自行查阅。 ​ 由于互联网无处不在,因此它是显示我们使

  • 《ffmpeg basics》中文版 -- 15.图片处理2020-01-11 16:35:51

    15.图片处理 ​ 尽管 FFmpeg 工具设计的主要目的是处理音频和视频,但 ffmpeg 也能编解码多种图片格式,很多图片相关的任务也可以快速完成。在一个 web服务器中使用 ffmpeg 可以创建一个网页图片编辑器,如何在 web 主机中支持 FFmpeg 将在 《Video on Web》一节中介绍。 支持的

  • 《ffmpeg basics》中文版 -- 8.模糊、锐化和去噪2020-01-11 13:43:03

    8.模糊、锐化和去噪 ​ 当输入的视频中含有噪声时,我们可以使用去噪声的 filter 或 选项 来执行降噪处理,以便优化该视频。降噪处理是视频预处理的一部分,一般在视频编码输出之前完成。 ​ denoising:降噪声处理 ​ 备注:在视频或者图片上有时会出现一些颗粒状的,明显不属于原图的

  • [Deep Learning] 神经网络编程基础 (Basics of Neural Network Programming)2019-11-29 21:57:01

        在神经网络中,假如有m个训练集,我们想把他们加入训练,第一个想到得就是用一个for循环来遍历训练集,从而开始训练。但是在神经网络中,我们换一个计算方法,这就是 前向传播和反向传播。  对于逻辑回归,就是找出合适得参数w和b,在二分类中,输出得结果是0或者1,所以我们得假设函数得输出

  • C#编程之C#基础(三)2019-11-13 11:59:58

    今天我们讲解一下命名空间与using语句: 命名空间提供了一种组织相关类和其他类型的方式。命名空间是一种逻辑组合。命名空间可以嵌套其他的命名空间,为类型创建层次结构,如下: 1 namespace a 2 { 3 namespace b 4 { 5 public class string str 6 {

  • Redis_Basics2019-11-01 20:00:56

      redis特点: 基于C语言开发的程序 操作速度回很快 能够支持每秒30万次/集合运行 Redis是基于内存的.并且可以支持将内存数据持久化到磁盘中 Redis中的数据是key-value的形式,并且支持多个数据类型 String Set List 对象   redis搭建:    redis使用时不要安装JDK,可以直接

  • Chapter 5 Machine Learning Basics2019-10-22 10:02:18

    《Deep Learning》 读书笔记写这个笔记的目的有两个:一是以高层的角度把整个章节的内容联系起来,从而加深自己的理解,同时也可以供日后复习使用;二是在日后的组会中可能会降到的时候,有东西可以讲(好偷懒 -_-)。 因为是刚入门的新手,有很多东西还不了解,或者了解的不透彻,肯定会有错误和疏

  • 深度学习 专项课程 (一) —— 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

  • Python Basics with Numpy2019-08-30 18:00:11

    Welcome to your first assignment. This exercise gives you a brief introduction to Python. Even if you've used Python before, this will help familiarize you with functions we'll need. Instructions: You will be using Python 3. Avoid using for-loo

  • Basics_04 input()函数2019-08-07 15:42:03

    input()函数 【输入】自己的信息【回应】计算机 input('请在以下四个选项【武大;理工大学;华师;华科】中,输入你想去的学院名字:') input()函数是输入函数。就上面例子来讲,它需要你输入针对括号内’请在以下四个选项【武大;理工大学;华师;华科】中,输入你想去的学院名字:’ 的答案

  • [Python For Data Analysis] Numpy Basics2019-08-02 18:03:24

    创建数组 import numpy as np # np.array 将一个iterable object转换为 ndarray data2 = [[2, 3, 4], [5, 6, 7]] arr2 = np.array(data2, dtype = np.float64) #[[2. 3. 4.] # [5. 6. 7.]] arr3 = np.array(data2, dtype = np.int32) #[[2 3 4] # [5 6 7]] # astype 方式将一种

  • 机器学习 Sparsity and Some Basics of L1 Regularization2019-07-19 16:00:44

    转载:http://freemind.pluskid.org/machine-learning/sparsity-and-some-basics-of-l1-regularization/#67364f6b44ff80f9f952d5a46f2307425d2ee9ac Sparsity 是当今机器学习领域中的一个重要话题。John Lafferty 和 Larry Wasserman 在 2006 年的一篇评论中提到: Some curr

  • Basics of Map Algebra2019-07-18 18:01:52

    1. Integrated analysis of spatial and attribute data a) Retrieval/Classification/ Measurement 检索/分类/测量 ratrieval: 应用于多段线和多边形,确定覆盖该特征的最小矩形,其边与空间参照系的轴平行 classification: sometimes called re-coding, involves 'comparison' ope

  • The basics of How to use Linux (如何使用Linux,基础笔记一)2019-07-16 15:42:18

    The basics of How to use Linux (Note One) Outline: ls - list contents of the directory file - check the file type less - look through contents of the file 1. ls “ls” is a common command used by people, and we can use it to see contents of the directo

  • Swift Note 1 - The Basics2019-07-06 21:38:51

    The Basics print("Hello, world!") Constants and Variables Constatnts and variables must be declared before they are used let myConstant = 42 var myVariable = 42 Constants need to be assigned a value instantly at creation. You can declare multi

  • 03 Tutorial: basics2019-05-25 10:52:40

      Usage of computations All reikna computation classes are derived from the Computation class and therefore share the same API and behavior. A computation object is an opaque typed function-like object containing all the information necessary to generate

  • c++ code:(1) basics2019-05-17 20:51:18

             .   #include<iostream> using namespace std; int main() { int x, y, z; cin >> x >> y >> z; cout << y; return 0; }   2.      #include<iostream> using namespace std; int main() { char a; int b; cin >

  • linux process-info-basics驱动模块2019-05-06 13:56:10

    ./pinfo.ko process_id="1876"源码:https://github.com/haidragon/linux-rootkits-red-blue-teams/blob/master/006-process-info-basics/pinfo.c

  • 萌新向Python数据分析及数据挖掘 第二章 pandas 第二节 Python Language Basics, IPython, and Jupyter Notebooks2019-04-06 12:37:53

    Python Language Basics, IPython, and Jupyter Notebooks In [5]: import numpy as np #导入numpynp.random.seed(12345)#设定再现的的随机数np.set_printoptions(precision=4, suppress=True) #设置打印设置   Signature: np.set_printoptions(precision=None

  • Learn the Basics - RN22019-03-21 13:40:53

    使用Image 1. 引用 import { Image } from 'react-native'; 2. 使用     format:     <Image source={{}} style{{}} /> 例如: <Image source={{uri: 'https://upload.wikimedia.org/wikipedia/commons/d/de/Bananavarieties.jpg'}} style

  • StackExchange.Redis 官方文档(一) Basics2019-02-19 11:52:19

    原文:StackExchange.Redis 官方文档(一) Basics基本使用方法: StackExchange.Redis的核心是 StackExchange.Redis 命名空间的 ConnectionMultiplexer 类;它隐藏了多服务器的实现细节.ConnectionMultiplexer被设计成可以在多个客户端之间分享和复用.不用每次操作都创建一个对象实例.

  • [Math Review] Statistics Basics: A/B Testing2019-02-12 12:48:38

    I learned A/B testing from a Youtube vedio. The link is https://www.youtube.com/watch?v=Bu7OqjYk0jM.                     True Predict T(H1) F(H0) T(H1) TP FP F(H0) FN TN  

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

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

ICode9版权所有