自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

颹蕭蕭

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

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

原创 1分钟快速上手 XMind

一杯茶的时间学会 xmind,构建思维导图就靠它!

2020-06-30 15:33:16 1429

原创 求最大李雅普诺夫指数(Largest Lyapunov Exponents,LLE)的 Rosenstein 算法

文章目录原始论文原始论文M.T. Rosenstein, J.J. Collins, and C.J. De Luca. A practical method for calculating largest Lyapunov exponents from small data sets. Physica D, 65:117-134, 1993.下载地址:https://www.physionet.org/content/lyapunov/1.0.0/...

2020-06-29 10:33:29 18140 14

转载 求职简历制作工具

https://www.wondercv.com/

2020-06-26 09:57:40 1390

原创 一文带你入门 Tableau (动图预警!!!)

文章目录导入数据数据调整录屏软件:LICEcap导入数据数据调整Tableau会根据它自己的理解,自动将导入的Excel表中的各项数据进行分类,分为维度(Dimensions)和度量(measuers),同时还会根据单元格中的内容将字段标记为数字或日期信息(用“#”表示)地理数据信息(用地球仪icon表示)文本信息(用“Abc”表示)。但Tableau的默认分类可能并不是我们想要的,所以我们可以手动修改数据类型。当数据类型为“度量(measuers)”时,才可以对其进行计数、计算平均值

2020-06-24 22:14:04 5199 1

原创 豆瓣爬虫

文章目录分析网页结构目标内容网页跳转爪巴代码爪巴结果分析网页结构目标内容豆瓣的网页源代码还是挺工整的:<li> <div class="item"> <div class="pic"> <em class="">4</em> <a href="https://movie.douban.com/subject/1295644/">

2020-06-23 17:15:32 1925

原创 selenium 加载动态网页

文章目录下载 chrome 驱动python 解压缩 ziprequests 下载网络文件使用 selenium 访问百度图片在使用selenium 之前先要下载浏览器驱动下载 chrome 驱动python 解压缩 zipdef un_zip(file_name, to_dir='./'): """unzip zip file""" zip_file = zipfile.ZipFile(file_name) if os.path.isdir(to_dir):

2020-06-23 11:44:15 1647

转载 推荐系统的结果和直觉不相符,怎么办?

转载自《新闻推荐,追逐卡戴珊的“屁股”》2016年 4月 23号前一阵子,有一篇新闻文章叫“雅虎记者的困扰:与卡戴珊的屁股竞争”,讲的是雅虎公司的一群高级记者所写的文章与推荐系统所推荐的文章相互竞争协调的事情,里面提到的现象可能很多做推荐系统开发的人都感同身受,似曾相识。那么今天,我们不谈具体的公司具体的案例,而来聊一下推荐系统开发中遇到“推荐结果和自己的直觉不相符合怎么办”这个事情该怎么办。...

2020-06-23 10:23:36 1527

转载 【手撕代码】逻辑回归

用 numpy 实现逻辑回归

2020-06-23 10:22:15 1524

转载 怎样招聘一名博士毕业生?

转载自《怎样招聘一名科学家》2016年 5月 14号看了韩春雨的事迹以后,很是感动,我于是在微博上谈论一下简历背景是否等于一个人的成就和水平,里面谈及了一些在招聘科学家过程中的遇到的经历和水平的问题。后来,我感觉需要系统得总结一下招聘科学家的流程,一是为了记录下在招聘过程中的一些思考,另一方面也是为了帮助年轻学者或者博士生,能够提高自身的水平。当然,一个高水平的流程,也是对自己的一种鞭策。我时...

2020-06-23 10:20:46 2196

原创 百科词条爪巴虫

urllib,requests获取页面, beautiful soup 对 html 网页解析,根据网页引用连接随机游走,使用 pymysql 操作数据库

2020-06-23 10:10:28 1954

转载 爪巴虫简介

文章目录爬虫分类应用场景技术准备运行流程常用技术反爬机制案例讲解爬虫分类网络爬虫按照系统结构和实现技术,大致可分为一下几种类型:通用网络爬虫:就是尽可能大的网络覆盖率,如 搜索引擎(百度、雅虎和谷歌等…)聚焦网络爬虫:有目标性,选择性地访问万维网来爬取信息增量式网络爬虫:只爬取新产生的或者已经更新的页面信息。特点:耗费少,难度大深层网络爬虫:通过提交一些关键字才能获取的Web页面,如登录或注册后访问的页面实际工作中通常是几种爬虫技术结合实现。应用场景爬虫技术在科学研究、Web安全、产品

2020-06-22 20:20:17 1545

原创 手把手教你在 PPT中插入 LaTex 数学公式

安装 ppt 插件 IguanaTe

2020-06-21 22:11:01 35589 20

原创 LFR :用于社区发现算法的基准网络

论文Lancichinetti A , Fortunato S , Radicchi F . Benchmark graphs for testing community detection algorithms[J]. Physical Review E Statistical Nonlinear & Soft Matter Physics, 2008程序随便搜搜就能找到

2020-06-21 20:16:25 2906 2

转载 聚类有效性指标(CVI)

文章目录1.定义:2.聚类评估方法介绍(一)内部评估Davies-Bouldin index(戴维森堡丁指数,简称DB或DBI)Duun index(邓恩指数,简称DVI)Silhouette index(轮廓指数,简称SI)参考1.定义:聚类有效性指标(Cluster Validity Index,CVI):用于度量聚类的效果。详细介绍wiki:http://www.turingfinance.com/clustering-countries-real-gdp-growth-part2/#quali

2020-06-21 16:29:56 6971 2

原创 《Detecting sequences of system states in temporal networks》

文章目录论文地址bibtex代码地址主要内容网络的距离度量图编辑距离DeltaConThe quantum spectral Jensen-Shannon divergence其余四种频域距离论文地址https://www.nature.com/articles/s41598-018-37534-2bibtex@article{DBLP:journals/corr/abs-1803-04755, author = {Naoki Masuda and Pette

2020-06-21 15:01:49 1468 1

原创 《Using machine learning to predict extreme events in complex systems》

文章目录论文地址BibTex主要内容实验对象网络结构论文地址PNAS: https://www.pnas.org/content/117/1/52BibTex@article {Qi52, author = {Qi, Di and Majda, Andrew J.}, title = {Using machine learning to predict extreme events in complex systems}, volume = {117}, number = {1}, pa

2020-06-20 22:26:49 1548 1

原创 傅里叶变换求解 KdV 方程

% Solve KdV eq. u_t + uu_x + u_xxx = 0 on [-pi,pi] by% FFT with integrating factor v = exp(-ik^3t)*u-hat.% Set up grid and two-solution initial data:N = 256; dt = .4/N^2;x = (2*pi/N)*(-N/2:N/2-1)';A = 25; B = 16; clf, drawnowu = 3*A^2*sech(.5*(A*(

2020-06-20 09:45:10 4040 5

原创 win10 手动设置 DNS 地址

文章目录网络和共享中心网络和Internet更改适配器选项找到连上的wifi打开TCP/IPv4的属性使用下面的 DNS 服务器地址最近总是 DNS 地址被改没了,可能是 VPN 的问题记录一下手动配置 DNS 地址:网络和共享中心网络和Internet更改适配器选项找到连上的wifi更改此连接的设置打开TCP/IPv4的属性使用下面的 DNS 服务器地址8.8.8.8114.114.114.114...

2020-06-15 16:22:38 31899 4

原创 Takens 定理

@InProceedings{Takens1981, author={Takens, Floris}, editor={Rand, David and Young, Lai-Sang}, title={Detecting strange attractors in turbulence}, booktitle={Dynamical Systems and Turbulence, Warwick 1980}, year={1981}, publisher={Springer Berlin Hei.

2020-06-14 22:38:27 3125

转载 BibTex 的使用

https://wenku.baidu.com/view/8647ec2abd64783e09122bec.html

2020-06-14 18:21:00 1510

转载 科技论文的写作逻辑

2020-06-03 20:06:04 1553

原创 【pytorch】时间序列预测 —— 同时预测多个分位点

单变量的分位点损失多变量的分位点损失结果可视化模型import torchimport torch.nn as nnimport torch.nn.functional as Fclass Model(nn.Module): def __init__(self, n_val, window, hidRNN, quantiles = [0.5]): super(Model, self).__init__() self.use_cuda = True

2020-06-01 10:27:13 5630 1

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关注的人

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