自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

颹蕭蕭

苟有恒,何必三更眠、五更起。 最无益,莫过一日曝、十日寒。

  • 博客(25)
  • 资源 (36)
  • 收藏
  • 关注

原创 机器学习——无监督学习

文章目录一、有监督学习1.1 目标1.1.1回归1.1.2分类1.1.2.1 二分类1.1.2.2 多分类1.2 模型1.2.1 线性模型1.2.1.1 线性回归1.2.1.2 逻辑回归1.2.2 邻居模型1.2.2.1 k-最近邻1.2.3 树模型1.2.3.1 决策树1.2.3.2 随机森林1.2.3.3 梯度提升1.2.4 支持向量机1.2.5 神经网络二、无监督模型2.1 数据降维2.1....

2020-01-17 10:29:47 1660

原创 python 数据结构与算法——分治法

主定理分治法的核心是主定理分治法举例二分查找归并排序、快速排序等等

2020-01-15 16:29:00 1569

原创 python 数据结构与算法——动态规划

待续

2020-01-15 15:18:58 1385

原创 python 数据结构与算法——贪心算法

区间调度

2020-01-15 14:46:40 1646

原创 python 数据结构与算法——Huffman编码

目标:出现频率越高的字符编码的长度越短。步骤:1. 统计字符(词)频率,例如;2. 依次将频数最小的两个根节点合并,新的根节点记录两个子节点的频数和,只剩下一个根节点;3. 计算每个叶子节点的 huffman 编码;

2020-01-14 15:35:59 1823 1

原创 python 数据结构与算法——字符串匹配

文章目录字符串匹配暴力法Robin-Karp 字符串匹配有限状态自动机KMP 算法Boyce-Moore 算法后缀树字符串匹配问题描述:有文本 TTT,长度为 nnn;有模板(子串) PPP,长度为 mmm,检测文本 TTT 是否包含子串 PPP这个函数在 c++ 中实现为 strstr暴力法时间复杂度 O(n×m)O(n\times m)O(n×m)def strstrBruteFo...

2020-01-13 22:34:03 1510

原创 找出数组第k小的元素

k smallest,partition 方法

2020-01-12 16:23:03 1709

原创 判断数组元素是否有重复

时间复杂度是 O(n), 空间复杂度为 O(1) 的算法

2020-01-12 14:33:12 1867

原创 python 数据结构与算法——搜索(查找)

线性搜索、二分搜索、插值搜索

2020-01-12 13:12:54 1631 2

原创 python 数据结构与算法——排序

冒泡排序,选择排序,插入排序,希尔排序,归并排序,堆排序,快排, 树排序,计数排序,基数排序,桶排序

2020-01-11 15:15:39 1448

原创 python 数据结构与算法——图

妈耶,这块内容也太多了,以后再写

2020-01-10 22:26:37 1332

原创 python 数据结构与算法——并查集

并查集的原理及 python实现

2020-01-09 22:49:55 3858

原创 python 数据结构与算法——优先队列和堆

堆的 python 实现,堆的基本原理

2020-01-09 10:55:50 2264

转载 堆排序建立初始堆

例1.有一组记录的排序码为 (3,5,4,7,1,2),则利用堆排序的方法建立的初始堆为 _____________?

2020-01-08 19:35:34 54679 3

原创 python 数据结构与算法——树

二叉树的 python 实现class BinaryTree: def __init__(self, data): self._data = data # root node self._left = None # left child self._right = None @property def data(sel...

2020-01-08 14:39:32 1516

原创 python 数据结构与算法——队列

队列的 python 实现class Queue: def __init__(self): self.array = [] def size(self): return len(self.array) def isEmpty(self): return len(self.array) == 0 def fron...

2020-01-07 23:35:45 1347

原创 python 数据结构与算法——栈

栈的python实现,栈的应用场景

2020-01-07 21:15:16 1332

原创 python 数据结构与算法——链表

链表如何检测链表有环?——快慢指针如何找出链表中倒数第k个元素?——遍历时使用额外指针记录当前位置前第k个元素如何找出链表中间的元素?——快慢指针栈...

2020-01-07 20:52:15 1413

原创 python 对 List 使用乘号 * 时的 bug

大家都知道对列表使用乘号 * 可以简便的复制元素,但是需要警惕:只限用于一维列表!如果你用这种方法构造多维数组,就会出现 BUG!!

2020-01-06 18:01:16 1716

原创 python 数据结构与算法——递归与回溯

递归

2020-01-06 17:47:54 1852

原创 主定理 Master Theorem

主定理及其证明

2020-01-06 11:57:51 1934

原创 alpha-belta 剪枝实现棋类AI ——Tic-Tac-Toe

minimax,alpha-beta剪枝原理,TIC-TAC-TOE

2020-01-04 11:40:54 1687

原创 python 单元测试

import unittestclass XXXTestCase(unittest.TestCase): def test_func1(self): answer = ...... self.assertEqual(answer, 6) def test_func2(self): answer = ...... self.a...

2020-01-03 15:10:53 1214

原创 python 递归优化

空间换时间、递归改迭代

2020-01-03 13:23:56 1704 3

原创 mysql 8.0 在 win10 下安装及配置

win10 下安装 mysql, 修改密码

2020-01-01 15:33:46 2022

BERT-CRF 中文 ner 模型微调

BERT-CRF 中文 ner 模型微调

2024-05-09

2024年3月杭州及周边小区挂牌价格

杭州及周边小区挂牌价格 小区数量:4000+ 时间节点:2024年3月 可用于:数据分析、可视化实验 可用于:地理位置数据收集 可用于:固定资产投资参考,买房有风险,投资需谨慎!

2024-03-22

用于大模型RAG的检索语料

用于大模型RAG的检索语料

2024-03-14

Win10 左手用户的鼠标指针

Win10 左手用户的鼠标指针

2022-06-15

网络安全数据挖掘 CS259D课件

网络安全数据挖掘 CS259D课件 Data Mining for CyberSecurity

2021-09-08

利用 SIFT 实现图像拼接 python 代码

利用 SIFT 实现图像拼接:https://goodgoodstudy.blog.csdn.net/article/details/89157849

2021-01-01

python 使用摄像头监测心率

参见博文:https://blog.csdn.net/itnerd/article/details/109078291 使用 opencv 检测人体皮肤颜色变化,计算心率

2020-10-14

中图分类号.xlsx

史上最全中图分类号,史上最全中图分类号,史上最全中图分类号 45835条,45835条,45835条, 官网抓取,如假包换

2020-09-11

知网爬虫.ipynb

python 爪巴虫爪巴知网。 selenium 通过模拟鼠标点击,自动实现:选择检索词的类别、输入检索词、选择精确还是模糊查找、逻辑关系、点击检索按钮等一系列动作

2020-09-10

Python 图片中扭曲矩形的复原

博文地址:https://blog.csdn.net/itnerd/article/details/108429553 Python 实现图片中扭曲矩形的复原

2020-09-06

icml2020文章列表及下载链接.zip

icml 2020 所有文章的下载链接,全部 1086 篇文章,链接点击直接跳转到 pdf,可直接下载paper

2020-08-31

icml2020.xlsx

excel 文件,icml 2020 所有文章的下载链接,全部 1086 篇文章,链接点击直接跳转到 pdf

2020-08-31

explore_data.ipynb

时间序列论文常用数据集,下载及可视化, python https://goodgoodstudy.blog.csdn.net/article/details/106244526

2020-05-20

数据透视表分析数据.xlsx

用于练习 EXCEL 数据透视表,零售平台订单数据。用于练习 EXCEL 数据透视表,零售平台订单数据。

2020-05-16

Introduction to symmetry analysis (2002) [Brian J. Cantwell]

Introduction to symmetry analysis (2002) [Brian J. Cantwell] 对称性分析

2020-01-07

微信自动回复天气程序

https://blog.csdn.net/itnerd/article/details/103433296

2019-12-07

Feedback Control in Systems Biology

反馈控制 系统生物学 Feedback Control in Systems Biology Carlo Cosentino and Declan Bates

2019-09-18

headct_3d.ipynb

dicom 格式, mhd 格式 , 头部 CT 切片, 3D 重建 , python

2019-07-25

lung_segmentation.ipynb

肺部CT图像分割 (.raw .mhd 格式图像数据) , python 程序, 肺部 3D 可视化

2019-07-03

ICML 2019年 会议文章目录 (含论文下载链接)

international conference on machine learning(ICML) 2019年 会议文章目录 含论文下载链接

2019-06-04

《应用非线性控制》【Slotine & Weiping Li 著】MIT经典教材

《应用非线性控制》中文版【Slotine & Weiping Li 著】MIT经典教材 原名《Applied Nolinear Control》

2019-01-05

网络优化:连续和离散模型(英文文字版)【Dimitri P. Bertsekas】

网络优化:连续和离散模型 英文文字版 Dimitri P. Bertsekas

2018-10-12

系统与控制理论中的线性代数 【黄琳】

系统与控制理论中的线性代数 【黄琳】

2018-10-11

凸优化习题答案【Boyd】

凸优化习题答案【Boyd】

2018-10-07

线性代数与解析几何(郑广平)复旦大学出版社

线性代数与解析几何

2018-09-27

遗传算法java小程序(吃豆人)

遗传算法 java 小程序,可以看成吃豆人的简化版! Model类和Display类里的main函数都可以运行! 谢谢支持!

2018-09-27

Handbook of Matrices

handbook of matrices handbook of matrices handbook of matrices handbook of matrices

2018-09-22

All of Statistics

all of statistics

2018-09-20

算法设计(英文文字版)by Jon_Kleinberg & Eva_Tardos

英文版 算法设计 Preface Algorithmic ideas are pervasive, and their reach is apparent in examples both within computer science and beyond. Some of the major shifts in Internet routing standards can be viewed as debates over the deficiencies of one shortest-path algorithm and the relative advantages of another. The basic notions used by biologists to express similarities among genes and genomes have algorithmic definitions. The concerns voiced by economists over the feasibility of combinatorial auctions in practice are rooted partly in the fact that these auctions contain computationally intractable search problems as special cases. And algorithmic notions aren’t just restricted to well-known and longstanding problems; one sees the reflections of these ideas on a regular basis, in novel issues arising across a wide range of areas. The scientist from Yahoo! who told us over lunch one day about their system for serving ads to users was describing a set of issues that, deep down, could be modeled as a network flow problem. So was the former student, now a management consultant working on staffing protocols for large hospitals, whom we happened to meet on a trip to New York City. The point is not simply that algorithms have many applications. The deeper issue is that the subject of algorithms is a powerful lens through which to view the field of computer science in general. Algorithmic problems form the heart of computer science, but they rarely arrive as cleanly packaged, mathematically precise questions. Rather, they tend to come bundled together with lots of messy, application-specific detail, some of it essential, some of it extraneous. As a result, the algorithmic enterprise consists of two fundamental components: the task of getting to the mathematically clean core of a problem, and then the task of identifying the appropriate algorithm design techniques, based on the structure of the problem. These two components interact: the more comfortable one is with the full array of possible design techniques, the more one starts to recognize the clean formulations that lie within messy problems out in the world. At their most effective, then, algorithmic ideas do not just provide solutions to well-posed problems; they form the language that lets you cleanly express the underlying questions. The goal of our book is to convey this approach to algorithms, as a design process that begins with problems arising across the full range of computing applications, builds on an understanding of algorithm design techniques, and results in the development of efficient solutions to these problems. We seek to explore the role of algorithmic ideas in computer science generally, and relate these ideas to the range of precisely formulated problems for which we can design and analyze algorithms. In other words, what are the underlying issues that motivate these problems, and how did we choose these particular ways of formulating them? How did we recognize which design principles were appropriate in different situations? In keeping with this, our goal is to offer advice on how to identify clean algorithmic problem formulations in complex issues from different areas of computing and, from this, how to design efficient algorithms for the resulting problems. Sophisticated algorithms are often best understood by reconstructing the sequence of ideas—including false starts and dead ends—that led from simpler initial approaches to the eventual solution. The result is a style of exposition that does not take the most direct route from problem statement to algorithm, but we feel it better reflects the way that we and our colleagues genuinely think about these questions.

2018-09-19

icml 2016年 会议文章目录

international conference on machine learning(ICML) 会议文章目录,含论文下载链接

2018-09-17

icml 2017年 会议文章目录

international conference on machine learning (ICML)2017年会议文章目录,含论文下载链接

2018-09-17

icml 2018年 会议文章目录(含文章下载链接)

international conference on machine learning (ICML) 2018年会议文章目录, 含论文下载链接

2018-09-17

the art of human hacking

在强大的系统也离不开管理维护他们的人员,人往往是该系统最脆弱的一环

2018-05-26

link prediction in social networks: law of power distribution

link prediction in social networks: law of power distribution

2018-01-23

《Combinatorial Optimization》Cook, Cunningham, Pulleyblank, Schrijver

《Combinatorial Optimization》Cook, Cunningham, Pulleyblank, Schrijver

2017-11-14

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除