码迷,mamicode.com
首页 >  
搜索关键字:diff patch    ( 4162个结果
Python 进阶
高阶函数 定义 1. 函数接受的参数是一个函数 2. 函数的返回值为一个函数 3. 满足以上2点中其中一个就是高阶函数 函数嵌套 定义 1. 函数中def定义一个函数 2. 嵌套会存在闭包, 其他情况不会有闭包(闭包闭的是变量) 装饰器 实质 1. 装饰器 == 高阶函数 + 嵌套函数 + 闭包 2 ...
分类:编程语言   时间:2019-02-10 20:37:27    阅读次数:172
U盘自动拷贝程序
描述:启动该程序后,自动检测U盘是否存在,若存在,将U盘中所有的文件拷贝到电脑的指定目录下。 注:本篇博文仅支持技术讨论,不用于数据的盗取之类的黑科技。 本程序基于Win32开发,主要是利用Win32的消息函数。也可是MFC等含有消息循环的体系。 思路: 1.WM_DEVICECHANGE,检查当前 ...
分类:其他好文   时间:2019-02-10 09:14:40    阅读次数:204
吴裕雄 python深度学习与实践(11)
import numpy as np from matplotlib import pyplot as plt A = np.array([[5],[4]]) C = np.array([[4],[6]]) B = A.T.dot(C) AA = np.linalg.inv(A.T.dot(A)) ... ...
分类:编程语言   时间:2019-02-09 15:10:52    阅读次数:128
html网页采集
UI_Less.pas: 1 unit UI_Less; 2 3 interface 4 5 uses 6 Windows, Classes, Messages, Forms, MsHtml, Urlmon, ActiveX; 7 8 const 9 WM_USER_STARTWALKING = W ...
分类:Web程序   时间:2019-02-09 11:56:00    阅读次数:661
7K - find your present (2)
In the new year party, everybody will get a "special present".Now it's your turn to get your special present, a lot of presents now putting on the des ...
分类:其他好文   时间:2019-02-09 10:47:20    阅读次数:111
[Math Review] Statistics Basic: Estimation
Two Types of Estimation One of the major applications of statistics is estimating population parameters from sample statistics. There are types of est ...
分类:其他好文   时间:2019-02-07 09:26:38    阅读次数:153
Data - Tools
00 数据工具汇总 "史上最全的大数据分析和制作工具" "全球100款大数据工具汇总 " "SQL 数据分析常用语句" 01 NumPy HomePage:http://www.numpy.org/ NumPy(数值 Python 的简称)是用Python实现的用于科技计算的基础软件包,是一个强大的 ...
分类:其他好文   时间:2019-02-05 15:39:20    阅读次数:226
git常用命令汇总
git init 创建仓库 git add filename 添加文件到缓存区 可以添加多个空格隔开 git add . 添加全部 git commit -m '本次改动说明' 提交文件到版本库 git status 可以查看仓库当前状态 例如哪些文件被修改 git diff filename 可以 ...
分类:其他好文   时间:2019-02-02 21:50:15    阅读次数:181
git 操作
git init 把当前的目录变成可以管理的git仓库,生成隐藏.git文件。 git add XX 把xx文件添加到暂存区去。 git commit –m “XX” 提交文件 –m 后面的是注释。 git status 查看仓库状态 git diff XX 查看XX文件修改了那些内容 git lo ...
分类:其他好文   时间:2019-02-01 15:56:09    阅读次数:158
神经网络(未完)
神经网络 [TOC] perceptron(了解) perceptron:最简单的ANN结构,它是一个linear threshold unit(LTU),接收wx,经过step func f,转为输出。step func通常是heaviside(返回0或1)或者sign(返回 1、0或1) 训练实 ...
分类:其他好文   时间:2019-01-31 19:13:59    阅读次数:228
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!