jorig

 

2014年6月4日

DWT小波变换及其在时间序列数据预测中的应用

摘要: Given data:时间序列数据。Goal:做预测方法:在滑动窗口中取DWT特征,并验证。实验验证:Load forcast 数据集。问题:小波变换的物理意义是什么?小波变换的数学意义是什么?抽取的feature的意义?为什么对预测会有帮助?滑动窗口的大小应该取多少?小波函数应该取哪个?方法1:看... 阅读全文

posted @ 2014-06-04 16:56 jorig 阅读(1245) 评论(0) 推荐(0)

[转载]卡尔曼滤波器及其基于opencv的实现

摘要: 卡尔曼滤波器及其基于opencv的实现源地址:http://hi.baidu.com/superkiki1989/item/029f65013a128cd91ff0461b这个是维基百科中的链接,比较详细了,如果想详细了解应该看下那篇开篇论文,已经有人翻译成了中文。http://zh.wikiped... 阅读全文

posted @ 2014-06-04 15:36 jorig 阅读(513) 评论(0) 推荐(0)

[转载]时间序列数据挖掘综述

摘要: 时间序列数据挖掘综述源地址:http://hi.baidu.com/superkiki1989/item/33d609ec4d936204560f1d14一、引言 时间序列是指按时间顺序排列的一组数据,是一类重要的复杂数据对象。作为数据库中的一种数据形式,它广泛存在于各种大型的商业、医学、工程和社... 阅读全文

posted @ 2014-06-04 11:16 jorig 阅读(409) 评论(0) 推荐(0)

2014年5月28日

PRML 术语

摘要: 第一章target vector tgeneralization: Once the model is trained it can then determine the identity of new digit images, which are said to comprise a test ... 阅读全文

posted @ 2014-05-28 20:13 jorig 阅读(173) 评论(0) 推荐(0)

PRML

摘要: PRML 学习之 第一章 介绍 Introduction#欢迎共同学习和讨论,由于本文将不断修改,谢绝转载模式识别问题具有重要且久远的历史。比如,16世纪开普勒发现行星运动定律,又如20世纪出发现的原子光谱规律等。模式识别领域关注通过计算机算法自动发现数据中的规律,并使用这些方法来采取行为如分类数据... 阅读全文

posted @ 2014-05-28 20:11 jorig 阅读(232) 评论(0) 推荐(0)

2014年5月27日

关于特征选择(feature selection)的一个具体工作记录

该文被密码保护。 阅读全文

posted @ 2014-05-27 11:07 jorig 阅读(6) 评论(0) 推荐(0)

2013年7月26日

study notes for python

摘要: some useful materialsPython完全新手教程http://www.cnblogs.com/taowen/articles/11239.aspx (from taowen, BITer)Note:Part 1 Basic Data StructureList, Dict(dictionary) and Turple are three main data structures in python, which are respond to set,mapping and ? in math.Listmy_list=[]my_list=[1,2]print my_listmy 阅读全文

posted @ 2013-07-26 18:11 jorig 阅读(306) 评论(0) 推荐(0)

2013年1月10日

Java Calendar 基本用法

摘要: 1.初始化//获取Calendar对象,默认值为当前时间Calendar c = Calendar.getInstance();//设置小时为8点sleep_plan.set(Calendar.HOUR_OF_DAY, 8);//设置分钟为0sleep_plan.set(Calendar.MINUTE, 0);2.比较两个时间Calendar c,c2;boolean after = c.after(c2);boolean before = c.before(c2);3.加一个月方法1:c.set(Calendar.MONTH, c.get(Calendar.MONTH) + 1);方法2:c 阅读全文

posted @ 2013-01-10 15:01 jorig 阅读(522) 评论(0) 推荐(0)

2011年2月19日

MySQL 重装笔记

摘要: 操作系统:Microsoft windows server 2003原数据库版本:mysql Ver 14.12 Distrib 5.0.22, for Win32 (ia32)新数据库版本:mysql Ver 14.14 Distrib 5.1.55, for Win32 (ia32)(数据库版本可以到mysql的bin目录下用mysql -version -uroot -p命令查询)整个重装步骤大致分四个步骤进行,第一步,备份原mysql中的所有数据库。第二步,完全卸载mysql第三步,下载安装新版mysql第四步,导入备份的所有数据库到新mysql需要注意的有3点:1.卸载旧mysql要 阅读全文

posted @ 2011-02-19 11:57 jorig 阅读(2174) 评论(0) 推荐(0)

导航