自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(18)
  • 收藏
  • 关注

转载 偶尔转帖:AI会议的总结(by南大周志华)

说明: 纯属个人看法, 仅供参考. tier-1的列得较全, tier-2的不太全, tier-3的很不全.同分的按字母序排列. 不很严谨地说, tier-1是可以令人羡慕的, tier-2是可以令人尊敬的,由于AI的相关会议非常多, 所以能列进tier-3的也是不错的tier-1:IJCAI (1+): International Joint Conference

2014-03-19 13:10:37 1130

转载 数据挖掘领域十大经典算法初探

数据挖掘领域十大经典算法初探 译者:July   二零一一年一月十五日-----------------------------------------参考文献:国际权威的学术组织ICDM,于06年12月年评选出的数据挖掘领域的十大经典算法:C4.5, k-Means, SVM, Apriori, EM, PageRank, AdaBoost, kN

2014-03-14 23:52:23 645

转载 unix编程艺术中的17点编程原则--设计开发者的至高准则

Unix编程艺术中的17点编程哲学原则          ---设计开发者的至高准则 译者:July   二零一一年一月十三日。参考文献:The Art of Unix Programming By Eric Steven Raymond博主说明:本文是依据unix编程艺术一书的英文版,第一章部分章节,所做的翻译。翻译过程中,参考了其中文

2014-03-14 23:51:35 594

转载 经典算法研究系列:七、深入浅出遗传算法

经典算法研究系列:七、深入浅出遗传算法             作者:July    二零一一年一月十二日。本文参考:维基百科  华南理工大学电子讲义  互联网------------------------------------------------------------------------------- 一、初探遗传算法

2014-03-14 23:50:46 1093 1

转载 计算机视觉数据集

Pedestrian dataset from MIT: 行人图片背景简单INRIA 数据集 :行人检测图片,背景复杂WallFlower dataset: 用于评价背景建模算法的好坏. Ground-truth foreground provided.Foreground/Background segmentation and Stereo dataset: from Mic

2014-03-14 07:14:13 6051

转载 Simulated Annealing Minimization: Single variable polynomial C++ source code.

Finding the minimum of x^2-9x+20 through simulated annealing:This is a very simple example problem. Most people that are interested in simulated annealing probably could figure out the answer withou

2014-03-12 03:28:44 815

转载 3.5 模拟退火算法

模拟退火算法来源于固体退火原理,将固体加温至充分高,再让其徐徐冷却,加温时,固体内部粒子随温升变为无序状,内能增大,而徐徐冷却时粒子渐趋有序,在每个温度都达到平衡态,最后在常温时达到基态,内能减为最小。根据Metropolis准则,粒子在温度T时趋于平衡的概率为e-ΔE/(kT),其中E为温度T时的内能,ΔE为其改变量,k为Boltzmann常数。用固体退火模拟组合优化问题,将内能E模拟为目标函数

2014-03-12 02:21:41 1427

转载 模拟退火算法总结(含例子)

一.模拟退火算法概述  模拟退火算法来源于固体退火原理,将固体加温至充分高,再让其徐徐冷却,加温时,固体内部粒子随温升变为无序状,内能增大,而徐徐冷却时粒子渐趋有序,在每个温度都达到平衡态,最后在常温时达到基态,内能减为最小。根据Metropolis准则,粒子在温度T时趋于平衡的概率为e-ΔE/(kT),其中E为温度T时的内能,ΔE为其改变量,k为Boltzmann常数。用固体退火模拟组合

2014-03-12 02:17:46 21852

转载 大白话解析模拟退火算法

优化算法入门系列文章目录(更新中):  1. 模拟退火算法  2. 遗传算法 一. 爬山算法 ( Hill Climbing )         介绍模拟退火前,先介绍爬山算法。爬山算法是一种简单的贪心搜索算法,该算法每次从当前解的临近解空间中选择一个最优解作为当前解,直到达到一个局部最优解。         爬山算法实现很简单,其主要缺点是会陷入局

2014-03-12 02:13:08 1531

转载 深入理解模拟退火算法(Simulated Annealing)

本文将对模拟退火算法(Simulated Annealing)进行介绍,深入理解这个算法。模拟退火算法和上一篇文章随机模拟算法中的Metropolis算法有着紧密的联系,在这里将详细探讨这种关系。我们先从这个算法要解决的问题出发,逐步引出相应的算法。(pku, sewm,shinning)一. 问题人们经常遇到这样的问题:在某个定义域S内,求某个函数f(x)的最小值

2014-03-12 02:11:28 1362

转载 模拟退火

模拟退火是一种通用概率算法,用来在固定时间内寻求在一个大的搜寻空间内找到的最优解。模拟退火是 S. Kirkpatrick, C. D. Gelatt 和 M. P. Vecchi 在1983年所发明。而 V. Černý 在1985年也独立发明此算法。目录  [隐藏] 1 简介2 演算步骤3 虚拟码4 参见5 外部链接简介模拟退

2014-03-12 02:10:41 1126

转载 DataTable C# Class

RemarksThe DataTable is a central object in the ADO.NET library. Other objects that use the DataTable include the DataSet and the DataView.When accessing DataTable objects, note that t

2014-03-07 00:31:04 1382

转载 how to save array in file in c#

Question0Sign in to votehi all,i have single table and i want to save it in file EX:1  a  b  c   d2  q  r   t   j  3  w  j  

2014-03-06 05:44:23 810

转载 SortedList Class

.NET Framework 4.5Other Versions2 out of 7 rated this helpful - Rate this topicRepresents a collection of key/value pairs that are sorted by the keys

2014-03-06 00:18:58 851

转载 How to sort an array by its index? (SortIndex)

I have a long[] with its values. The thing I need is to have a sorted array that contains the indices of my first array.For example:INPUT:long[ ] values = {1 , 3 , 2 , 5 , 4};OUTPUT:

2014-03-06 00:14:19 841

转载 yield (C# Reference)

Visual Studio 2013Other Versions7 out of 8 rated this helpful - Rate this topicWhen you use the yield keyword in a statement, you indicate that the method,

2014-03-06 00:13:18 679

转载 params (C# Reference)

Visual Studio 2013Other Versions5 out of 8 rated this helpful - Rate this topicBy using the params keyword, you can specify a method parameter that takes

2014-03-06 00:07:29 596

转载 Using Properties (C# Programming Guide)

Properties combine aspects of both fields and methods. To the user of an object, a property appears to be a field, accessing the property requires the same syntax. To the implementer of a class, a pro

2014-03-05 05:35:51 1024

空空如也

空空如也

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

TA关注的人

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