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

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

?? svm.m4

?? 一個Java實現的支持向量機(含源碼),SVM算法比較復雜
?? M4
?? 第 1 頁 / 共 4 頁
字號:
			{				int nSV = 0;				for(int j=0;j<count[i];j++)					if(nonzero[start[i]+j])					{						++nSV;						++nnz;					}				model.nSV[i] = nSV;				nz_count[i] = nSV;			}			System.out.print("Total nSV = "+nnz+"\n");			model.l = nnz;			model.SV = new svm_node[nnz][];			p = 0;			for(i=0;i<l;i++)				if(nonzero[i]) model.SV[p++] = x[i];			int[] nz_start = new int[nr_class];			nz_start[0] = 0;			for(i=1;i<nr_class;i++)				nz_start[i] = nz_start[i-1]+nz_count[i-1];			model.sv_coef = new double[nr_class-1][];			for(i=0;i<nr_class-1;i++)				model.sv_coef[i] = new double[nnz];			p = 0;			for(i=0;i<nr_class;i++)				for(int j=i+1;j<nr_class;j++)				{					// classifier (i,j): coefficients with					// i are in sv_coef[j-1][nz_start[i]...],					// j are in sv_coef[i][nz_start[j]...]					int si = start[i];					int sj = start[j];					int ci = count[i];					int cj = count[j];					int q = nz_start[i];					int k;					for(k=0;k<ci;k++)						if(nonzero[si+k])							model.sv_coef[j-1][q++] = f[p].alpha[k];					q = nz_start[j];					for(k=0;k<cj;k++)						if(nonzero[sj+k])							model.sv_coef[i][q++] = f[p].alpha[ci+k];					++p;				}		}		return model;	}		// Stratified cross validation	public static void svm_cross_validation(svm_problem prob, svm_parameter param, int nr_fold, double[] target)	{		int i;		int[] fold_start = new int[nr_fold+1];		int l = prob.l;		int[] perm = new int[l];				// stratified cv may not give leave-one-out rate		// Each class to l folds -> some folds may have zero elements		if((param.svm_type == svm_parameter.C_SVC ||		    param.svm_type == svm_parameter.NU_SVC) && nr_fold < l)		{			int[] tmp_nr_class = new int[1];			int[][] tmp_label = new int[1][];			int[][] tmp_start = new int[1][];			int[][] tmp_count = new int[1][];			svm_group_classes(prob,tmp_nr_class,tmp_label,tmp_start,tmp_count,perm);			int nr_class = tmp_nr_class[0];			int[] label = tmp_label[0];			int[] start = tmp_start[0];			int[] count = tmp_count[0]; 					// random shuffle and then data grouped by fold using the array perm			int[] fold_count = new int[nr_fold];			int c;			int[] index = new int[l];			for(i=0;i<l;i++)				index[i]=perm[i];			for (c=0; c<nr_class; c++)				for(i=0;i<count[c];i++)				{					int j = i+(int)(Math.random()*(count[c]-i));					swap(int,index[start[c]+j],index[start[c]+i]);				}			for(i=0;i<nr_fold;i++)			{				fold_count[i] = 0;				for (c=0; c<nr_class;c++)					fold_count[i]+=(i+1)*count[c]/nr_fold-i*count[c]/nr_fold;			}			fold_start[0]=0;			for (i=1;i<=nr_fold;i++)				fold_start[i] = fold_start[i-1]+fold_count[i-1];			for (c=0; c<nr_class;c++)				for(i=0;i<nr_fold;i++)				{					int begin = start[c]+i*count[c]/nr_fold;					int end = start[c]+(i+1)*count[c]/nr_fold;					for(int j=begin;j<end;j++)					{						perm[fold_start[i]] = index[j];						fold_start[i]++;					}				}			fold_start[0]=0;			for (i=1;i<=nr_fold;i++)				fold_start[i] = fold_start[i-1]+fold_count[i-1];		}		else		{			for(i=0;i<l;i++) perm[i]=i;			for(i=0;i<l;i++)			{				int j = i+(int)(Math.random()*(l-i));				swap(int,perm[i],perm[j]);			}			for(i=0;i<=nr_fold;i++)				fold_start[i]=i*l/nr_fold;		}		for(i=0;i<nr_fold;i++)		{			int begin = fold_start[i];			int end = fold_start[i+1];			int j,k;			svm_problem subprob = new svm_problem();			subprob.l = l-(end-begin);			subprob.x = new svm_node[subprob.l][];			subprob.y = new double[subprob.l];			k=0;			for(j=0;j<begin;j++)			{				subprob.x[k] = prob.x[perm[j]];				subprob.y[k] = prob.y[perm[j]];				++k;			}			for(j=end;j<l;j++)			{				subprob.x[k] = prob.x[perm[j]];				subprob.y[k] = prob.y[perm[j]];				++k;			}			svm_model submodel = svm_train(subprob,param);			if(param.probability==1 &&			   (param.svm_type == svm_parameter.C_SVC ||			    param.svm_type == svm_parameter.NU_SVC))			{				double[] prob_estimates= new double[svm_get_nr_class(submodel)];				for(j=begin;j<end;j++)					target[perm[j]] = svm_predict_probability(submodel,prob.x[perm[j]],prob_estimates);			}			else				for(j=begin;j<end;j++)					target[perm[j]] = svm_predict(submodel,prob.x[perm[j]]);		}	}	public static int svm_get_svm_type(svm_model model)	{		return model.param.svm_type;	}	public static int svm_get_nr_class(svm_model model)	{		return model.nr_class;	}	public static void svm_get_labels(svm_model model, int[] label)	{		if (model.label != null)			for(int i=0;i<model.nr_class;i++)				label[i] = model.label[i];	}	public static double svm_get_svr_probability(svm_model model)	{		if ((model.param.svm_type == svm_parameter.EPSILON_SVR || model.param.svm_type == svm_parameter.NU_SVR) &&		    model.probA!=null)		return model.probA[0];		else		{			System.err.print("Model doesn't contain information for SVR probability inference\n");			return 0;		}	}	public static void svm_predict_values(svm_model model, svm_node[] x, double[] dec_values)	{		if(model.param.svm_type == svm_parameter.ONE_CLASS ||		   model.param.svm_type == svm_parameter.EPSILON_SVR ||		   model.param.svm_type == svm_parameter.NU_SVR)		{			double[] sv_coef = model.sv_coef[0];			double sum = 0;			for(int i=0;i<model.l;i++)				sum += sv_coef[i] * Kernel.k_function(x,model.SV[i],model.param);			sum -= model.rho[0];			dec_values[0] = sum;		}		else		{			int i;			int nr_class = model.nr_class;			int l = model.l;					double[] kvalue = new double[l];			for(i=0;i<l;i++)				kvalue[i] = Kernel.k_function(x,model.SV[i],model.param);			int[] start = new int[nr_class];			start[0] = 0;			for(i=1;i<nr_class;i++)				start[i] = start[i-1]+model.nSV[i-1];			int p=0;			int pos=0;			for(i=0;i<nr_class;i++)				for(int j=i+1;j<nr_class;j++)				{					double sum = 0;					int si = start[i];					int sj = start[j];					int ci = model.nSV[i];					int cj = model.nSV[j];									int k;					double[] coef1 = model.sv_coef[j-1];					double[] coef2 = model.sv_coef[i];					for(k=0;k<ci;k++)						sum += coef1[si+k] * kvalue[si+k];					for(k=0;k<cj;k++)						sum += coef2[sj+k] * kvalue[sj+k];					sum -= model.rho[p++];					dec_values[pos++] = sum;									}		}	}	public static double svm_predict(svm_model model, svm_node[] x)	{		if(model.param.svm_type == svm_parameter.ONE_CLASS ||		   model.param.svm_type == svm_parameter.EPSILON_SVR ||		   model.param.svm_type == svm_parameter.NU_SVR)		{			double[] res = new double[1];			svm_predict_values(model, x, res);			if(model.param.svm_type == svm_parameter.ONE_CLASS)				return (res[0]>0)?1:-1;			else				return res[0];		}		else		{			int i;			int nr_class = model.nr_class;			double[] dec_values = new double[nr_class*(nr_class-1)/2];			svm_predict_values(model, x, dec_values);			int[] vote = new int[nr_class];			for(i=0;i<nr_class;i++)				vote[i] = 0;			int pos=0;			for(i=0;i<nr_class;i++)				for(int j=i+1;j<nr_class;j++)				{					if(dec_values[pos++] > 0)						++vote[i];					else						++vote[j];				}			int vote_max_idx = 0;			for(i=1;i<nr_class;i++)				if(vote[i] > vote[vote_max_idx])					vote_max_idx = i;			return model.label[vote_max_idx];		}	}	public static double svm_predict_probability(svm_model model, svm_node[] x, double[] prob_estimates)	{		if ((model.param.svm_type == svm_parameter.C_SVC || model.param.svm_type == svm_parameter.NU_SVC) &&		    model.probA!=null && model.probB!=null)		{			int i;			int nr_class = model.nr_class;			double[] dec_values = new double[nr_class*(nr_class-1)/2];			svm_predict_values(model, x, dec_values);			double min_prob=1e-7;			double[][] pairwise_prob=new double[nr_class][nr_class];						int k=0;			for(i=0;i<nr_class;i++)				for(int j=i+1;j<nr_class;j++)				{					pairwise_prob[i][j]=Math.min(Math.max(sigmoid_predict(dec_values[k],model.probA[k],model.probB[k]),min_prob),1-min_prob);					pairwise_prob[j][i]=1-pairwise_prob[i][j];					k++;				}			multiclass_probability(nr_class,pairwise_prob,prob_estimates);			int prob_max_idx = 0;			for(i=1;i<nr_class;i++)				if(prob_estimates[i] > prob_estimates[prob_max_idx])					prob_max_idx = i;			return model.label[prob_max_idx];		}		else 			return svm_predict(model, x);	}	static final String svm_type_table[] =	{		"c_svc","nu_svc","one_class","epsilon_svr","nu_svr",	};	static final String kernel_type_table[]=	{		"linear","polynomial","rbf","sigmoid",	};	public static void svm_save_model(String model_file_name, svm_model model) throws IOException	{		DataOutputStream fp = new DataOutputStream(new FileOutputStream(model_file_name));		svm_parameter param = model.param;		fp.writeBytes("svm_type "+svm_type_table[param.svm_type]+"\n");		fp.writeBytes("kernel_type "+kernel_type_table[param.kernel_type]+"\n");		if(param.kernel_type == svm_parameter.POLY)			fp.writeBytes("degree "+param.degree+"\n");		if(param.kernel_type == svm_parameter.POLY ||		   param.kernel_type == svm_parameter.RBF ||		   param.kernel_type == svm_parameter.SIGMOID)			fp.writeBytes("gamma "+param.gamma+"\n");		if(param.kernel_type == svm_parameter.POLY ||		   param.kernel_type == svm_parameter.SIGMOID)			fp.writeBytes("coef0 "+param.coef0+"\n");		int nr_class = model.nr_class;		int l = model.l;		fp.writeBytes("nr_class "+nr_class+"\n");		fp.writeBytes("total_sv "+l+"\n");			{			fp.writeBytes("rho");			for(int i=0;i<nr_class*(nr_class-1)/2;i++)				fp.writeBytes(" "+model.rho[i]);			fp.writeBytes("\n");		}			if(model.label != null)		{			fp.writeBytes("label");			for(int i=0;i<nr_class;i++)				fp.writeBytes(" "+model.label[i]);			fp.writeBytes("\n");		}		if(model.probA != null) // regression has probA only		{			fp.writeBytes("probA");			for(int i=0;i<nr_class*(nr_class-1)/2;i++)				fp.writeBytes(" "+model.probA[i]);			fp.writeBytes("\n");		}		if(model.probB != null) 		{			fp.writeBytes("probB");			for(int i=0;i<nr_class*(nr_class-1)/2;i++)				fp.writeBytes(" "+model.probB[i]);			fp.writeBytes("\n");		}		if(model.nSV != null)		{			fp.writeBytes("nr_sv");			for(int i=0;i<nr_class;i++)				fp.writeBytes(" "+model.nSV[i]);			fp.writeBytes("\n");		}		fp.writeBytes("SV\n");		double[][] sv_coef = model.sv_coef;		svm_node[][] SV = model.SV;		for(int i=0;i<l;i++)		{			for(int j=0;j<nr_class-1;j++)				fp.writeBytes(sv_coef[j][i]+" ");			svm_node[] p = SV[i];			for(int j=0;j<p.length;j++)				fp.writeBytes(p[j].index+":"+p[j].value+" ");			fp.writeBytes("\n");		}		fp.close();	}	private static double atof(String s)	{		return Double.valueOf(s).doubleValue();	}	private static int atoi(String s)	{		return Integer.parseInt(s);	}	public static svm_model svm_load_model(String model_file_name) throws IOException	{		BufferedReader fp = new BufferedReader(new FileReader(model_file_name));		// read parameters		svm_model model = new svm_model();		svm_parameter param = new svm_parameter();		model.param = param;		model.rho = null;		model.probA = null;		model.probB = null;		model.label = null;		model.nSV = null;		while(true)		{			String cmd = fp.readLine();			String arg = cmd.substring(cmd.indexOf(' ')+1);			if(cmd.startsWith("svm_type"))			{				int i;				for(i=0;i<svm_type_table.length;i++)				{					if(arg.indexOf(svm_type_table[i])!=-1)					{						param.svm_type=i;						break;					}				}				if(i == svm_type_table.length)				{					System.err.print("unknown svm type.\n");					return null;				}			}			else if(cmd.startsWith("kernel_type"))			{				int i;				for(i=0;i<kernel_type_table.length;i++)				{					if(arg.indexOf(kernel_type_table[i])!=-1)					{						param.kernel_type=i;						break;					}				}				if(i == kernel_type_table.length)				{					System.err.print("unknown kernel function.\n");					return null;				}			}			else if(cmd.startsWith("degree"))				param.degree = atof(arg);			else if(cmd.startsWith("gamma"))				param.gamma = atof(arg);			else if(cmd.startsWith("coef0"))				param.coef0 = atof(arg);			else if(cmd.startsWith("nr_class"))				model.nr_class = atoi(arg);			else if(cmd.startsWith("total_sv"))				model.l = atoi(arg);			else if(cmd.startsWith("rho"))			{				int n = model.nr_class * (model.nr_class-1)/2;				model.rho = new double[n];				StringTokenizer st = new StringTokenizer(arg);				for(int i=0;i<n;i++)					model.rho[i] = atof(st.nextToken());			}			else if(cmd.startsWith("label"))			{				int n = model.nr_class;				model.label = new int[n];				StringTokenizer st = new StringTokenizer(arg);				for(int i=0;i<n;i++)					model.label[i] = atoi(st.nextToken());								}			else if(cmd.startsWith("probA"))			{				int n = model.nr_class*(model.nr_class-1)/2;				model.probA = new double[n];				StringTokenizer st = new StringTokenizer(arg);				for(int i=0;i<n;i++)					model.probA[i] = atof(st.nextToken());								}			else if(cmd.startsWith("probB"))			{				int n = model.nr_class*(model.nr_class-1)/2;				model.probB = new double[n];				StringTokenizer st = new StringTokenizer(arg);				for(int i=0;i<n;i++)					model.probB[i] = atof(st.nextToken());								}			else if(cmd.startsWith("nr_sv"))			{				int n = model.nr_class;				model.nSV = new int[n];				StringTokenizer st = new StringTokenizer(arg);				for(int i=0;i<n;i++)					model.nSV[i] = atoi(st.nextToken());			}			else if(cmd.startsWith("SV"))			{				break;			}			else			{				System.err.print("unknown text in model file\n");				return null;			}		}		// read sv_coef and SV		int m = model.nr_class - 1;		int l = model.l;		model.sv_coef = new double[m][l];		model.SV = new svm_node[l][];		for(int i=0;i<l;i++)		{			String line = fp.readLine();			StringTokenizer st = new StringTokenizer(line," \t\n\r\f:");			for(int k=0;k<m;k++)				model.sv_coef[k][i] = atof(st.nextToken());			int n = st.countTokens()/2;			model.SV[i] = new svm_node[n];			for(int j=0;j<n;j++)			{				model.SV[i][j] = new svm_node();				model.SV[i][j].index = atoi(st.nextToken());				model.SV[i][j].value = atof(st.nextToken());			}		}		fp.close();		return model;	}	public static String svm_check_parameter(svm_problem prob, svm_parameter param)	{		// svm_type		int svm_type = param.svm_type;		if(svm_type != svm_parameter.C_SVC &&		   svm_type != svm_parameter.NU_SVC &&		   svm_type != svm_parameter.ONE_CLASS &&		   svm_type != svm_parameter.EPSILON_SVR &&		   svm_type != svm_parameter.NU_SVR)		return "unknown svm type";			// kernel_type			int kernel_type = param.kernel_type;		if(kernel_type != svm_parameter.LINEAR &&		   kernel_type != svm_parameter.POLY &&		   kernel_type != svm_parameter.RBF &&		   kernel_type != svm_parameter.SIGMOID)		return "unknown kernel type";		// cache_size,eps,C,nu,p,shrinking		if(param.cache_size <= 0)			return "cache_size <= 0";		if(param.eps <= 0)			return "eps <= 0";		if(svm_type == svm_parameter.C_SVC ||		   svm_type == svm_parameter.EPSILON_SVR ||		   svm_type == svm_parameter.NU_SVR)			if(param.C <= 0)				return "C <= 0";		if(svm_type == svm_parameter.NU_SVC ||		   svm_type == svm_parameter.ONE_CLASS ||		   svm_type == svm_parameter.NU_SVR)			if(param.nu <= 0 || param.nu > 1)				return "nu <= 0 or nu > 1";		if(svm_type == svm_parameter.EPSILON_SVR)			if(param.p < 0)				return "p < 0";		if(param.shrinking != 0 &&		   param.shrinking != 1)			return "shrinking != 0 and shrinking != 1";		if(param.probability != 0 &&		   param.probability != 1)			return "probability != 0 and probability != 1";		if(param.probability == 1 &&		   svm_type == svm_parameter.ONE_CLASS)			return "one-class SVM probability output not supported yet";				// check whether nu-svc is feasible			if(svm_type == svm_parameter.NU_SVC)		{			int l = prob.l;			int max_nr_class = 16;			int nr_class = 0;			int[] label = new int[max_nr_class];			int[] count = new int[max_nr_class];			int i;			for(i=0;i<l;i++)			{				int this_label = (int)prob.y[i];				int j;				for(j=0;j<nr_class;j++)					if(this_label == label[j])					{						++count[j];						break;					}				if(j == nr_class)				{					if(nr_class == max_nr_class)					{						max_nr_class *= 2;						int[] new_data = new int[max_nr_class];						System.arraycopy(label,0,new_data,0,label.length);						label = new_data;												new_data = new int[max_nr_class];						System.arraycopy(count,0,new_data,0,count.length);						count = new_data;					}					label[nr_class] = this_label;					count[nr_class] = 1;					++nr_class;				}			}			for(i=0;i<nr_class;i++)			{				int n1 = count[i];				for(int j=i+1;j<nr_class;j++)				{					int n2 = count[j];					if(param.nu*(n1+n2)/2 > Math.min(n1,n2))						return "specified nu is infeasible";				}			}		}		return null;	}	public static int svm_check_probability_model(svm_model model)	{		if (((model.param.svm_type == svm_parameter.C_SVC || model.param.svm_type == svm_parameter.NU_SVC) &&		model.probA!=null && model.probB!=null) ||		((model.param.svm_type == svm_parameter.EPSILON_SVR || model.param.svm_type == svm_parameter.NU_SVR) &&		 model.probA!=null))			return 1;		else			return 0;	}}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久影院视频免费| 秋霞影院一区二区| 亚洲欧美另类久久久精品| 亚洲一线二线三线视频| 国产一区在线精品| 色视频成人在线观看免| 欧美日本一区二区三区| 日本一区二区动态图| 日韩av网站免费在线| 国产99久久久国产精品潘金| 欧美在线free| 国产日韩成人精品| 蜜臀av在线播放一区二区三区| 国产精品资源在线看| 3d成人h动漫网站入口| 国产女人水真多18毛片18精品视频| 久久这里只精品最新地址| 婷婷亚洲久悠悠色悠在线播放| 国产精品1区二区.| 精品理论电影在线| 亚洲综合色区另类av| 一区二区在线观看视频在线观看| 久久er99热精品一区二区| 日本韩国精品在线| 国产精品不卡视频| 精品一区二区影视| av成人动漫在线观看| 26uuu亚洲综合色欧美| 亚洲成a人v欧美综合天堂| 日本久久电影网| 国产欧美一区二区精品婷婷 | 日本麻豆一区二区三区视频| 成人国产精品视频| 欧美va亚洲va香蕉在线| 蜜桃91丨九色丨蝌蚪91桃色| 欧美日韩高清一区二区不卡 | 久久久影院官网| 日韩高清不卡一区二区三区| 欧美美女激情18p| 夜夜爽夜夜爽精品视频| 欧美自拍偷拍一区| 亚洲靠逼com| 极品少妇xxxx偷拍精品少妇| 亚洲精品一区二区三区精华液| 天天综合网 天天综合色| 欧美丰满少妇xxxbbb| 亚洲成人一区二区在线观看| 欧美麻豆精品久久久久久| 亚洲图片欧美综合| 欧美午夜宅男影院| 日韩影院在线观看| 91 com成人网| 国产一区二区三区免费观看| 欧美精品一区二区三区四区| 国产另类ts人妖一区二区| 久久影院视频免费| 成人午夜短视频| 洋洋成人永久网站入口| 欧美日韩美女一区二区| 久久国产综合精品| 国产日韩欧美在线一区| 色激情天天射综合网| 亚洲一区二区黄色| 欧美久久久久免费| 国产成人在线网站| 综合久久综合久久| 91麻豆精品久久久久蜜臀| 强制捆绑调教一区二区| 国产亚洲欧美中文| 色综合婷婷久久| 久久久久久久精| 一本色道久久综合精品竹菊| 亚洲午夜三级在线| 26uuu另类欧美| 99国产精品久久久久久久久久| 五月婷婷综合网| 精品国精品国产| 99久久免费视频.com| 亚洲乱码一区二区三区在线观看| 555www色欧美视频| 99re亚洲国产精品| 日韩制服丝袜av| 亚洲欧美日韩在线不卡| 欧美一二三四在线| 在线看日韩精品电影| 青青青爽久久午夜综合久久午夜| 成人18视频在线播放| 蜜臀久久99精品久久久画质超高清| 亚洲精品一区二区三区蜜桃下载 | 国产精品国产成人国产三级| 欧美在线观看视频在线| 成人伦理片在线| 婷婷国产在线综合| 中文字幕在线观看一区二区| 日韩欧美在线123| 91蝌蚪porny九色| 国产一区视频网站| 亚洲一区二区三区影院| 国产亚洲成av人在线观看导航| 日韩欧美国产电影| 日本道色综合久久| 99久久亚洲一区二区三区青草| 麻豆91精品视频| 亚洲欧洲一区二区在线播放| 国产精品白丝av| 日韩在线a电影| 亚洲日本免费电影| 在线观看亚洲精品| 亚洲男人的天堂av| 日本二三区不卡| 欧美变态口味重另类| 九色|91porny| 精品久久99ma| 青青草91视频| 亚洲三级在线播放| av一区二区三区| 久久se这里有精品| 日韩影院在线观看| 蜜桃精品视频在线| 五月天丁香久久| 日韩精品一级中文字幕精品视频免费观看 | 波多野结衣一区二区三区| 日日摸夜夜添夜夜添精品视频| 亚洲一区二区三区四区五区黄| 国产午夜三级一区二区三| 精品剧情在线观看| 久久久三级国产网站| 欧美精品一区二区三区在线播放 | 欧美天堂一区二区三区| 91亚洲精品久久久蜜桃| 成人sese在线| www.av亚洲| 色噜噜狠狠色综合中国| av成人老司机| 精品视频在线免费看| 欧美色图12p| 日韩精品一区二区在线| 欧美哺乳videos| 亚洲欧洲日韩av| 一区二区三区四区精品在线视频| 亚洲电影你懂得| 日韩av一级片| 五月天欧美精品| 蜜桃视频一区二区| 国内成人免费视频| 91女厕偷拍女厕偷拍高清| 色综合天天综合| 3d成人h动漫网站入口| 欧美成人一区二区三区片免费| 亚洲国产精品ⅴa在线观看| 国产精品视频一二| 亚洲乱码国产乱码精品精的特点| 亚洲一区在线看| 五月综合激情婷婷六月色窝| 国产精品1区2区3区| 99久久国产综合精品色伊| 777午夜精品视频在线播放| 欧美一个色资源| 亚洲精品免费在线观看| 日本欧美在线观看| 波多野结衣在线aⅴ中文字幕不卡| 91色婷婷久久久久合中文| 日本高清成人免费播放| 日韩一区二区精品| 欧美xxxx老人做受| 亚洲国产精品一区二区www| 奇米综合一区二区三区精品视频| 成人美女视频在线看| 欧美日韩亚洲不卡| 国产精品青草综合久久久久99| 无码av免费一区二区三区试看| 菠萝蜜视频在线观看一区| 欧美一区二区在线视频| 99精品视频一区二区三区| 久久精品人人爽人人爽| 亚洲国产毛片aaaaa无费看| 成人精品视频一区二区三区| 欧美日韩国产美| 日韩美女视频19| 国产综合色在线| 日韩三级电影网址| 夜夜精品视频一区二区 | 国产精品一二三四| 99国产一区二区三精品乱码| 日韩丝袜美女视频| 亚洲激情图片小说视频| 粉嫩欧美一区二区三区高清影视| 欧美日韩一区二区在线视频| 亚洲精品日韩专区silk| 国产91精品精华液一区二区三区| 日韩三区在线观看| 一区二区三区四区视频精品免费 | 国产精品动漫网站| 精品一区二区三区免费观看| 欧美精品久久天天躁| 亚洲人成网站精品片在线观看 | 人人超碰91尤物精品国产| 色综合久久综合网| 亚洲精品免费在线播放| gogogo免费视频观看亚洲一|