亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? svm.cpp

?? support vector machine
?? CPP
?? 第 1 頁 / 共 5 頁
字號:
#include <math.h>#include <stdio.h>#include <stdlib.h>#include <ctype.h>#include <float.h>#include <string.h>#include <stdarg.h>#include "svm.h"typedef float Qfloat;typedef signed char schar;#ifndef mintemplate <class T> inline T min(T x,T y) { return (x<y)?x:y; }#endif#ifndef maxtemplate <class T> inline T max(T x,T y) { return (x>y)?x:y; }#endiftemplate <class T> inline void swap(T& x, T& y) { T t=x; x=y; y=t; }template <class S, class T> inline void clone(T*& dst, S* src, int n){	dst = new T[n];	memcpy((void *)dst,(void *)src,sizeof(T)*n);}inline double powi(double base, int times){        double tmp = base, ret = 1.0;        for(int t=times; t>0; t/=2)	{                if(t%2==1) ret*=tmp;                tmp = tmp * tmp;        }        return ret;}#define INF HUGE_VAL#define TAU 1e-12#define Malloc(type,n) (type *)malloc((n)*sizeof(type))#if 1void info(const char *fmt,...){	va_list ap;	va_start(ap,fmt);	vprintf(fmt,ap);	va_end(ap);}void info_flush(){	fflush(stdout);}#elsevoid info(char *fmt,...) {}void info_flush() {}#endif//// Kernel Cache//// l is the number of total data items// size is the cache size limit in bytes//class Cache{public:	Cache(int l,long int size);	~Cache();	// request data [0,len)	// return some position p where [p,len) need to be filled	// (p >= len if nothing needs to be filled)	int get_data(const int index, Qfloat **data, int len);	void swap_index(int i, int j);	// future_optionprivate:	int l;	long int size;	struct head_t	{		head_t *prev, *next;	// a cicular list		Qfloat *data;		int len;		// data[0,len) is cached in this entry	};	head_t *head;	head_t lru_head;	void lru_delete(head_t *h);	void lru_insert(head_t *h);};Cache::Cache(int l_,long int size_):l(l_),size(size_){	head = (head_t *)calloc(l,sizeof(head_t));	// initialized to 0	size /= sizeof(Qfloat);	size -= l * sizeof(head_t) / sizeof(Qfloat);	size = max(size, 2 * (long int) l);	// cache must be large enough for two columns	lru_head.next = lru_head.prev = &lru_head;}Cache::~Cache(){	for(head_t *h = lru_head.next; h != &lru_head; h=h->next)		free(h->data);	free(head);}void Cache::lru_delete(head_t *h){	// delete from current location	h->prev->next = h->next;	h->next->prev = h->prev;}void Cache::lru_insert(head_t *h){	// insert to last position	h->next = &lru_head;	h->prev = lru_head.prev;	h->prev->next = h;	h->next->prev = h;}int Cache::get_data(const int index, Qfloat **data, int len){	head_t *h = &head[index];	if(h->len) lru_delete(h);	int more = len - h->len;	if(more > 0)	{		// free old space		while(size < more)		{			head_t *old = lru_head.next;			lru_delete(old);			free(old->data);			size += old->len;			old->data = 0;			old->len = 0;		}		// allocate new space		h->data = (Qfloat *)realloc(h->data,sizeof(Qfloat)*len);		size -= more;		swap(h->len,len);	}	lru_insert(h);	*data = h->data;	return len;}void Cache::swap_index(int i, int j){	if(i==j) return;	if(head[i].len) lru_delete(&head[i]);	if(head[j].len) lru_delete(&head[j]);	swap(head[i].data,head[j].data);	swap(head[i].len,head[j].len);	if(head[i].len) lru_insert(&head[i]);	if(head[j].len) lru_insert(&head[j]);	if(i>j) swap(i,j);	for(head_t *h = lru_head.next; h!=&lru_head; h=h->next)	{		if(h->len > i)		{			if(h->len > j)				swap(h->data[i],h->data[j]);			else			{				// give up				lru_delete(h);				free(h->data);				size += h->len;				h->data = 0;				h->len = 0;			}		}	}}//// Kernel evaluation//// the static method k_function is for doing single kernel evaluation// the constructor of Kernel prepares to calculate the l*l kernel matrix// the member function get_Q is for getting one column from the Q Matrix//class QMatrix {public:	virtual Qfloat *get_Q(int column, int len) const = 0;	virtual Qfloat *get_QD() const = 0;	virtual void swap_index(int i, int j) const = 0;	virtual ~QMatrix() {}};class Kernel: public QMatrix {public:	Kernel(int l, svm_node * const * x, const svm_parameter& param);	virtual ~Kernel();	static double k_function(const svm_node *x, const svm_node *y,				 const svm_parameter& param);	virtual Qfloat *get_Q(int column, int len) const = 0;	virtual Qfloat *get_QD() const = 0;	virtual void swap_index(int i, int j) const	// no so const...	{		swap(x[i],x[j]);		if(x_square) swap(x_square[i],x_square[j]);	}protected:	double (Kernel::*kernel_function)(int i, int j) const;private:	const svm_node **x;	double *x_square;	// svm_parameter	const int kernel_type;	const int degree;	const double gamma;	const double coef0;	static double dot(const svm_node *px, const svm_node *py);	double kernel_linear(int i, int j) const	{		return dot(x[i],x[j]);	}	double kernel_poly(int i, int j) const	{		return powi(gamma*dot(x[i],x[j])+coef0,degree);	}	double kernel_rbf(int i, int j) const	{		return exp(-gamma*(x_square[i]+x_square[j]-2*dot(x[i],x[j])));	}	double kernel_sigmoid(int i, int j) const	{		return tanh(gamma*dot(x[i],x[j])+coef0);	}	double kernel_precomputed(int i, int j) const	{		return x[i][(int)(x[j][0].value)].value;	}};Kernel::Kernel(int l, svm_node * const * x_, const svm_parameter& param):kernel_type(param.kernel_type), degree(param.degree), gamma(param.gamma), coef0(param.coef0){	switch(kernel_type)	{		case LINEAR:			kernel_function = &Kernel::kernel_linear;			break;		case POLY:			kernel_function = &Kernel::kernel_poly;			break;		case RBF:			kernel_function = &Kernel::kernel_rbf;			break;		case SIGMOID:			kernel_function = &Kernel::kernel_sigmoid;			break;		case PRECOMPUTED:			kernel_function = &Kernel::kernel_precomputed;			break;	}	clone(x,x_,l);	if(kernel_type == RBF)	{		x_square = new double[l];		for(int i=0;i<l;i++)			x_square[i] = dot(x[i],x[i]);	}	else		x_square = 0;}Kernel::~Kernel(){	delete[] x;	delete[] x_square;}double Kernel::dot(const svm_node *px, const svm_node *py){	double sum = 0;	while(px->index != -1 && py->index != -1)	{		if(px->index == py->index)		{			sum += px->value * py->value;			++px;			++py;		}		else		{			if(px->index > py->index)				++py;			else				++px;		}				}	return sum;}double Kernel::k_function(const svm_node *x, const svm_node *y,			  const svm_parameter& param){	switch(param.kernel_type)	{		case LINEAR:			return dot(x,y);		case POLY:			return powi(param.gamma*dot(x,y)+param.coef0,param.degree);		case RBF:		{			double sum = 0;			while(x->index != -1 && y->index !=-1)			{				if(x->index == y->index)				{					double d = x->value - y->value;					sum += d*d;					++x;					++y;				}				else				{					if(x->index > y->index)					{							sum += y->value * y->value;						++y;					}					else					{						sum += x->value * x->value;						++x;					}				}			}			while(x->index != -1)			{				sum += x->value * x->value;				++x;			}			while(y->index != -1)			{				sum += y->value * y->value;				++y;			}						return exp(-param.gamma*sum);		}		case SIGMOID:			return tanh(param.gamma*dot(x,y)+param.coef0);		case PRECOMPUTED:  //x: test (validation), y: SV			return x[(int)(y->value)].value;		default:			return 0;  // Unreachable 	}}// An SMO algorithm in Fan et al., JMLR 6(2005), p. 1889--1918// Solves:////	min 0.5(\alpha^T Q \alpha) + p^T \alpha////		y^T \alpha = \delta//		y_i = +1 or -1//		0 <= alpha_i <= Cp for y_i = 1//		0 <= alpha_i <= Cn for y_i = -1//// Given:////	Q, p, y, Cp, Cn, and an initial feasible point \alpha//	l is the size of vectors and matrices//	eps is the stopping tolerance//// solution will be put in \alpha, objective value will be put in obj//class Solver {public:	Solver() {};	virtual ~Solver() {};	struct SolutionInfo {		double obj;		double rho;		double upper_bound_p;		double upper_bound_n;		double r;	// for Solver_NU	};	void Solve(int l, const QMatrix& Q, const double *p_, const schar *y_,		   double *alpha_, double Cp, double Cn, double eps,		   SolutionInfo* si, int shrinking);protected:	int active_size;	schar *y;	double *G;		// gradient of objective function	enum { LOWER_BOUND, UPPER_BOUND, FREE };	char *alpha_status;	// LOWER_BOUND, UPPER_BOUND, FREE	double *alpha;	const QMatrix *Q;	const Qfloat *QD;	double eps;	double Cp,Cn;	double *p;	int *active_set;	double *G_bar;		// gradient, if we treat free variables as 0	int l;	bool unshrinked;	// XXX	double get_C(int i)	{		return (y[i] > 0)? Cp : Cn;	}	void update_alpha_status(int i)	{		if(alpha[i] >= get_C(i))			alpha_status[i] = UPPER_BOUND;		else if(alpha[i] <= 0)			alpha_status[i] = LOWER_BOUND;		else alpha_status[i] = FREE;	}	bool is_upper_bound(int i) { return alpha_status[i] == UPPER_BOUND; }	bool is_lower_bound(int i) { return alpha_status[i] == LOWER_BOUND; }	bool is_free(int i) { return alpha_status[i] == FREE; }	void swap_index(int i, int j);	void reconstruct_gradient();	virtual int select_working_set(int &i, int &j);	virtual double calculate_rho();	virtual void do_shrinking();private:	bool be_shrunken(int i, double Gmax1, double Gmax2);	};void Solver::swap_index(int i, int j){	Q->swap_index(i,j);	swap(y[i],y[j]);	swap(G[i],G[j]);	swap(alpha_status[i],alpha_status[j]);	swap(alpha[i],alpha[j]);	swap(p[i],p[j]);	swap(active_set[i],active_set[j]);	swap(G_bar[i],G_bar[j]);}void Solver::reconstruct_gradient(){	// reconstruct inactive elements of G from G_bar and free variables	if(active_size == l) return;	int i;	for(i=active_size;i<l;i++)		G[i] = G_bar[i] + p[i];		for(i=0;i<active_size;i++)		if(is_free(i))		{			const Qfloat *Q_i = Q->get_Q(i,l);			double alpha_i = alpha[i];			for(int j=active_size;j<l;j++)				G[j] += alpha_i * Q_i[j];		}}void Solver::Solve(int l, const QMatrix& Q, const double *p_, const schar *y_,		   double *alpha_, double Cp, double Cn, double eps,		   SolutionInfo* si, int shrinking){	this->l = l;	this->Q = &Q;	QD=Q.get_QD();	clone(p, p_,l);	clone(y, y_,l);	clone(alpha,alpha_,l);	this->Cp = Cp;	this->Cn = Cn;	this->eps = eps;	unshrinked = false;	// initialize alpha_status	{		alpha_status = new char[l];		for(int i=0;i<l;i++)			update_alpha_status(i);	}	// initialize active set (for shrinking)	{		active_set = new int[l];		for(int i=0;i<l;i++)			active_set[i] = i;		active_size = l;	}	// initialize gradient	{		G = new double[l];		G_bar = new double[l];		int i;		for(i=0;i<l;i++)		{			G[i] = p[i];			G_bar[i] = 0;		}		for(i=0;i<l;i++)			if(!is_lower_bound(i))			{				const Qfloat *Q_i = Q.get_Q(i,l);				double alpha_i = alpha[i];				int j;				for(j=0;j<l;j++)					G[j] += alpha_i*Q_i[j];				if(is_upper_bound(i))					for(j=0;j<l;j++)						G_bar[j] += get_C(i) * Q_i[j];			}	}	// optimization step	int iter = 0;	int counter = min(l,1000)+1;	while(1)	{		// show progress and do shrinking		if(--counter == 0)		{			counter = min(l,1000);			if(shrinking) do_shrinking();			info("."); info_flush();		}		int i,j;		if(select_working_set(i,j)!=0)		{			// reconstruct the whole gradient			reconstruct_gradient();			// reset active set size and check			active_size = l;			info("*"); info_flush();			if(select_working_set(i,j)!=0)				break;			else				counter = 1;	// do shrinking next iteration		}				++iter;		// update alpha[i] and alpha[j], handle bounds carefully				const Qfloat *Q_i = Q.get_Q(i,active_size);		const Qfloat *Q_j = Q.get_Q(j,active_size);		double C_i = get_C(i);		double C_j = get_C(j);		double old_alpha_i = alpha[i];		double old_alpha_j = alpha[j];		if(y[i]!=y[j])		{			double quad_coef = Q_i[i]+Q_j[j]+2*Q_i[j];			if (quad_coef <= 0)				quad_coef = TAU;			double delta = (-G[i]-G[j])/quad_coef;			double diff = alpha[i] - alpha[j];			alpha[i] += delta;			alpha[j] += delta;						if(diff > 0)			{				if(alpha[j] < 0)				{					alpha[j] = 0;					alpha[i] = diff;				}			}			else			{				if(alpha[i] < 0)				{					alpha[i] = 0;					alpha[j] = -diff;				}			}			if(diff > C_i - C_j)			{				if(alpha[i] > C_i)				{					alpha[i] = C_i;					alpha[j] = C_i - diff;				}			}			else			{				if(alpha[j] > C_j)				{

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久综合色鬼综合色| 国产欧美精品区一区二区三区| 日韩一区二区三区四区| 国产精品免费视频一区| 老司机一区二区| 欧美色图12p| 亚洲同性同志一二三专区| 日本sm残虐另类| 日日骚欧美日韩| 蜜桃精品视频在线观看| 在线一区二区三区四区五区 | 中文字幕中文字幕在线一区 | 狠狠网亚洲精品| 欧美三级视频在线观看| 国产精品电影一区二区三区| 精品一区二区三区香蕉蜜桃 | 91啪在线观看| 久久久久国产成人精品亚洲午夜| 日韩av午夜在线观看| 欧美午夜精品一区二区三区| 亚洲欧洲一区二区三区| 国产精品一区专区| 久久免费精品国产久精品久久久久| 成人美女视频在线观看| 精品日产卡一卡二卡麻豆| 蜜臀精品一区二区三区在线观看| 欧美久久久久久久久中文字幕| 亚洲一区二区免费视频| 色婷婷精品久久二区二区蜜臂av| 亚洲免费看黄网站| 99国产精品国产精品毛片| 国产精品美女久久久久aⅴ国产馆| 国产一区二区三区综合| 国产亚洲成aⅴ人片在线观看| 国产一区二区网址| 国产日韩欧美a| 成人av动漫网站| 亚洲男人电影天堂| 欧美日韩第一区日日骚| 首页国产欧美日韩丝袜| 日韩欧美不卡一区| 高清免费成人av| 中文字幕在线不卡一区| 欧美性感一区二区三区| 日韩激情一区二区| 久久久美女毛片| 不卡一二三区首页| 亚洲国产日韩a在线播放性色| 777午夜精品免费视频| 精品综合久久久久久8888| 国产欧美一区视频| 一本色道综合亚洲| 欧美a一区二区| 欧美国产禁国产网站cc| 欧美亚洲禁片免费| 国产在线精品一区二区三区不卡| 亚洲v精品v日韩v欧美v专区| 欧美精品在线视频| 国产精品996| 亚洲人妖av一区二区| 欧美日韩国产欧美日美国产精品| 久久精品国产一区二区三 | av在线这里只有精品| 一区二区日韩电影| 日韩一区二区精品| a美女胸又www黄视频久久| 丝袜国产日韩另类美女| 日本一区二区在线不卡| 欧美日韩日日摸| 不卡区在线中文字幕| 三级不卡在线观看| 国产精品网站导航| 欧美一区二区三区免费观看视频| 粉嫩在线一区二区三区视频| 水蜜桃久久夜色精品一区的特点| 国产精品区一区二区三区| 欧美男女性生活在线直播观看| 国产精品女主播av| 久久久99免费| 色偷偷一区二区三区| 国内精品视频一区二区三区八戒| 亚洲欧美日韩中文字幕一区二区三区 | 久久99国产精品麻豆| 日韩理论电影院| 国产午夜亚洲精品理论片色戒| 91黄视频在线观看| 成人免费毛片高清视频| 蜜桃av一区二区| 性做久久久久久| 亚洲精品国产视频| 中文字幕av一区二区三区高| 日韩一区二区三| 欧美精品色综合| 91免费看视频| 午夜精品久久久久久久久| 中文字幕一区二区三中文字幕| 一区二区三区四区视频精品免费| www国产成人免费观看视频 深夜成人网 | 日韩午夜激情av| 精品视频资源站| 欧美在线色视频| 日本韩国欧美国产| 日本精品裸体写真集在线观看| 丁香啪啪综合成人亚洲小说| 国产麻豆91精品| 久久国产夜色精品鲁鲁99| 毛片av一区二区| 日韩电影在线观看网站| 肉色丝袜一区二区| 日韩精品一二三| 青青草伊人久久| 美女国产一区二区| 久久97超碰国产精品超碰| 久久精品99国产精品| 久久福利视频一区二区| 国内久久精品视频| 国产成人免费视| 亚洲欧美日韩国产手机在线 | 日韩伦理免费电影| 亚洲精品一区二区三区福利| 日韩一卡二卡三卡国产欧美| 制服丝袜亚洲播放| 欧美一区二区日韩一区二区| 3d动漫精品啪啪| 宅男在线国产精品| 日韩欧美一二三| 国产精品丝袜久久久久久app| 丝袜诱惑亚洲看片| 精品精品国产高清一毛片一天堂| 中文字幕一区二区三区色视频| 亚洲电影一级片| av欧美精品.com| 久久久高清一区二区三区| 亚洲一区在线播放| 99视频在线精品| 国产亚洲婷婷免费| 免费观看在线色综合| 色噜噜狠狠成人网p站| 国产女同互慰高潮91漫画| 蜜桃一区二区三区四区| 欧美图区在线视频| 自拍偷自拍亚洲精品播放| 国产精品69毛片高清亚洲| 欧美精品丝袜中出| 亚洲精品视频在线观看网站| 国产99久久久国产精品免费看| 日韩视频免费观看高清在线视频| 一区二区视频免费在线观看| 不卡电影一区二区三区| 国产亲近乱来精品视频| 韩国av一区二区| 欧美成人性福生活免费看| 日本最新不卡在线| 欧美精品高清视频| 亚洲高清视频中文字幕| 在线观看视频91| 亚洲最大成人综合| 色狠狠桃花综合| 一区二区三区日韩精品| 色诱视频网站一区| 亚洲综合色在线| 欧美性大战久久| 亚洲第一精品在线| 欧美日韩国产高清一区二区 | 在线播放/欧美激情| 亚洲国产精品一区二区www | 天天综合网天天综合色| 欧美三级欧美一级| 亚洲成人综合在线| 91精品国产色综合久久不卡电影| 午夜一区二区三区在线观看| 制服丝袜在线91| 亚洲成人7777| 91麻豆免费观看| 中文字幕日韩一区| 不卡高清视频专区| 亚洲精品美国一| 欧美色成人综合| 奇米影视在线99精品| 欧美mv日韩mv亚洲| 国内外成人在线| 国产精品美女一区二区| 91在线你懂得| 亚洲午夜免费电影| 日韩一区二区免费电影| 国产精品一二一区| 亚洲色图视频网站| 欧美日韩国产综合久久| 精品一区在线看| 国产精品国产三级国产三级人妇| 一本色道a无线码一区v| 日韩精品国产精品| 国产日韩欧美不卡在线| 色欧美88888久久久久久影院| 国产成人av影院| 亚洲精品videosex极品| 欧美一区二区三区四区久久| 韩国成人在线视频| 国产三级精品三级在线专区| 94色蜜桃网一区二区三区|