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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? svm_nu.cpp

?? 支持向量機(jī)(4)mySVM
?? CPP
?? 第 1 頁 / 共 2 頁
字號(hào):
      for(SVMINT i=0;i<working_set_size;i++){
	primal[i] = qp.A[i]*all_alphas[working_set[i]];
      };  
    };                                                                        
    if(parameters->verbosity>=5){	
      cout<<"WARNING: Convergence error, setting sigfig = "<<sigfig_max<<endl;
    };
  };

  if(target_count>50){
    // non-recoverable numerical error
    feasible_epsilon=1;
    convergence_epsilon*=2;
    if(parameters->verbosity>=1)
      cout<<"WARNING: reducing KKT precision to "<<convergence_epsilon<<endl;
    target_count=0;
  };

  if(parameters->verbosity>=5){	
    cout<<"Resulting values:"<<endl;
    for(SVMINT  i=0;i<working_set_size;i++){
      cout<<i<<": "<<primal[i]<<endl;
    };
  };

  time_optimize += get_time() - time_start;
};


void svm_nu_regression_c::print_special_statistics(){
  // calculate tube size epsilon
  SVMFLOAT b = examples->get_b();
  SVMFLOAT epsilon_pos = 0;
  SVMFLOAT epsilon_neg = 0;
  SVMINT pos_count = 0;
  SVMINT neg_count = 0;
  for(SVMINT i=0;i<examples_total;i++){
    if((all_alphas[i] > is_zero) && (all_alphas[i]-Cpos<-is_zero)){
      epsilon_neg += all_ys[i]-sum[i]-b;
      neg_count++;
    }
    else if((all_alphas[i] <- is_zero) && (all_alphas[i]+Cneg>+is_zero)){
      epsilon_pos += -all_ys[i]+sum[i]+b;
      pos_count++;
    };
  };
  if((parameters->Lpos == parameters->Lneg) ||
     (pos_count == 0) ||
     (neg_count == 0)){
    // symmetrical
    epsilon_pos += epsilon_neg;
    pos_count += neg_count;
    if(pos_count>0){
      epsilon_pos /= (SVMINT)pos_count;
      cout<<"epsilon = "<<epsilon_pos<<endl;
    }
    else{
      cout<<"ERROR: could not calculate epsilon."<<endl;
    };
  }
  else{
    // asymmetrical
    epsilon_pos /= (SVMINT)pos_count;
    cout<<"epsilon+ = "<<epsilon_pos<<endl;
    epsilon_neg /= (SVMINT)neg_count;
    cout<<"epsilon- = "<<epsilon_pos<<endl;
  };
};


/**
 *
 * svm_nu_pattern_c
 *
 **/

SVMFLOAT svm_nu_pattern_c::nabla(const SVMINT i){
  if(all_ys[i] > 0){
    return( sum[i]);
  }
  else{
    return(-sum[i]);
  };
};


void svm_nu_pattern_c::init(kernel_c* new_kernel, parameters_c* new_parameters){
  new_parameters->realC = 1;
  svm_nu_regression_c::init(new_kernel,new_parameters);
};


void svm_nu_pattern_c::init_optimizer(){
  // Cs are dived by examples_total in init_optimizer
  svm_nu_regression_c::init_optimizer();
  for(SVMINT i=0;i<working_set_size;i++){
    qp.l[i] = 0;
  };
};


void svm_nu_pattern_c::update_working_set(){
  svm_c::update_working_set();
  for(SVMINT i=0;i<working_set_size;i++){
    if(qp.A[i]>0){
      qp.c[i] += all_ys[working_set[i]];
    }
    else{
      qp.c[i] -= all_ys[working_set[i]];
    };
  };
};


void svm_nu_pattern_c::init_working_set(){
  // calculate nu-sum 

  if(examples->initialised_alpha()){
    project_to_constraint();
  };

  sum_alpha_nu=0;
  SVMFLOAT the_nu_sum = 0;
  SVMFLOAT the_sum=0;
  SVMINT pos_count=0;
  SVMINT neg_count=0;
  for(SVMINT ni=0;ni<examples_total;ni++){
    the_sum += all_alphas[ni];
    the_nu_sum += abs(all_alphas[ni]);
    if(is_alpha_neg(ni)> 0){
      neg_count++;
    }
    else{
      pos_count++;
    };
  };

  if((abs(the_sum) > is_zero) || (abs(the_nu_sum-nu) > is_zero)){
    // set initial feasible point
    // neg alpha: -nu/2n
    // pos alpha:  nu/2p

    if((nu*(SVMFLOAT)examples_total>2*(SVMFLOAT)pos_count) ||
       (nu*(SVMFLOAT)examples_total>2*(SVMFLOAT)neg_count)){
      nu = 2*((SVMFLOAT)pos_count)/((SVMFLOAT)examples_total);
      if(nu > 2*((SVMFLOAT)neg_count)/((SVMFLOAT)examples_total)){
	nu = 2*((SVMFLOAT)neg_count)/((SVMFLOAT)examples_total);
      };
      nu -= is_zero; // just to make sure
      cout<<"ERROR: nu too large, setting nu = "<<nu<<endl;
    };

    for(SVMINT ni=0;ni<examples_total;ni++){
      if(is_alpha_neg(ni)> 0){
	examples->put_alpha(ni,nu/(2*(SVMFLOAT)neg_count));
      }
      else{
	examples->put_alpha(ni,-nu/(2*(SVMFLOAT)pos_count));
      };
    };
    examples->set_initialised_alpha();
  };

  svm_c::init_working_set();
};


void svm_nu_pattern_c::print_special_statistics(){
  // calculate margin rho
  SVMFLOAT b = examples->get_b();
  SVMFLOAT rho_pos = 0;
  SVMFLOAT rho_neg = 0;
  SVMINT pos_count = 0;
  SVMINT neg_count = 0;
  for(SVMINT i=0;i<examples_total;i++){
    if((all_alphas[i] > is_zero) && (all_alphas[i]-Cpos<-is_zero)){
      rho_neg += sum[i]+b;
      neg_count++;
    }
    else if((all_alphas[i] <- is_zero) && (all_alphas[i]+Cneg>+is_zero)){
      rho_pos += -sum[i]-b;
      pos_count++;
    };
  };
  if((parameters->Lpos == parameters->Lneg) ||
     (pos_count == 0) ||
     (neg_count == 0)){
    // symmetrical
    rho_pos += rho_neg;
    pos_count += neg_count;
    if(pos_count>0){
      rho_pos /= (SVMINT)pos_count;
      cout<<"margin = "<<rho_pos<<endl;
    }
    else{
      cout<<"ERROR: could not calculate margin."<<endl;
    };
  }
  else{
    // asymmetrical
    rho_pos /= (SVMINT)pos_count;    cout<<"margin+ = "<<rho_pos<<endl;
    rho_neg /= (SVMINT)neg_count;
    cout<<"margin- = "<<rho_pos<<endl;
  };
};


/**
 *
 * svm_distribution_c
 *
 **/

int svm_distribution_c::is_alpha_neg(const SVMINT i){
  // variable i is alpha*
  return 1;
};


SVMFLOAT svm_distribution_c::nabla(const SVMINT i){
  return( sum[i]);
};


SVMFLOAT svm_distribution_c::lambda(const SVMINT i){
  // size lagrangian multiplier of the active constraint

  SVMFLOAT alpha;
  SVMFLOAT result = 0;

  alpha=all_alphas[i];

  if(alpha>is_zero){
    // alpha*
    if(alpha-Cneg >= - is_zero){
      // upper bound active
      result = -lambda_eq-sum[i];
    }
    else{
      result = -abs(sum[i]+lambda_eq);
    };
  }
  else{
    // lower bound active
    result = sum[i] + lambda_eq;
  };

  return result;
};


int svm_distribution_c::feasible(const SVMINT i){
  // is direction i feasible to minimize the target function
  // (includes which_alpha==0)

  if(at_bound[i] >= shrink_const){ return 0; };

  SVMFLOAT alpha;
  SVMFLOAT result;

  alpha=all_alphas[i];

  if(alpha-Cneg >= - is_zero){
    // alpha* at upper bound
    result = -lambda_eq - sum[i];
    if(result>=-feasible_epsilon){
      return 0; 
    };
  }
  else if(alpha<=is_zero){
    // lower bound active
    result = sum[i]+lambda_eq;
    if(result>=-feasible_epsilon){
      return 0; 
    };
  }
  else{
    // not at bound
    result= abs(sum[i]+lambda_eq);
    if(result<=feasible_epsilon){
      return 0; 
    };
  };
  return 1;
};


int svm_distribution_c::feasible(const SVMINT i, SVMFLOAT* the_nabla, SVMFLOAT* the_lambda, int* atbound){
  // is direction i feasible to minimize the target function
  // (includes which_alpha==0)
  int is_feasible=1;

  if(at_bound[i] >= shrink_const){ is_feasible = 0; };

  SVMFLOAT alpha;

  alpha=all_alphas[i];
  *the_nabla = sum[i];
  //  feasible_epsilon=-1;
  if(alpha >= Cneg){ //alpha-Cneg >= - is_zero){
    // alpha* at upper bound
    *atbound = 1;
    *the_lambda = -lambda_eq - *the_nabla; //sum[i] + 1;
    if(*the_lambda >= lambda_threshold){
      at_bound[i]++;
      if(at_bound[i] == shrink_const) to_shrink++;
    }
    else{
      at_bound[i] = 0;
    };
  }
  else if(alpha <= 0){
    // lower bound active
    *atbound = -1;
    *the_lambda = lambda_eq + *the_nabla; //sum[i] + 1;
    if(*the_lambda >= lambda_threshold){
      at_bound[i]++;
      if(at_bound[i] == shrink_const) to_shrink++;
    }
    else{
      at_bound[i] = 0;
    };
  }
  else{
    // not at bound
    *atbound = 0;
    *the_lambda = -abs(*the_nabla+lambda_eq);
    at_bound[i] = 0;
  };
  if(*the_lambda >= -feasible_epsilon){
    is_feasible = 0; 
  };

  return is_feasible;
};


void svm_distribution_c::init(kernel_c* new_kernel, parameters_c* new_parameters){
  new_parameters->realC = 1;
  nu = new_parameters->nu;
  convergence_epsilon = 1e-4;
  svm_pattern_c::init(new_kernel,new_parameters);
  //  is_pattern = 1;
};

void svm_distribution_c::init_optimizer(){
  // Cs are dived by examples_total in init_optimizer
  svm_pattern_c::init_optimizer();
//   for(SVMINT i=0;i<working_set_size;i++){
//     qp.l[i] = 0;
//   };
};


void svm_distribution_c::project_to_constraint(){
  SVMINT total = 0;
  SVMFLOAT alpha_sum=sum_alpha-nu;
  SVMFLOAT alpha=0;
  for(SVMINT i=0;i<examples_total;i++){
    alpha = all_alphas[i];
    alpha_sum += alpha;
    if((alpha>is_zero) && (alpha-Cneg < -is_zero)){
      total++;
    };
  };
  if(total>0){
    // equality constraint violated
    alpha_sum /= (SVMFLOAT)total;
    for(SVMINT i=0;i<examples_total;i++){
      if((alpha>is_zero) && (alpha-Cneg < -is_zero)){
	all_alphas[i] -= alpha_sum;
      };
    };
  };
};


int svm_distribution_c::convergence(){
  long time_start = get_time();
  SVMFLOAT the_lambda_eq = 0;
  SVMINT total = 0;
  SVMFLOAT alpha_sum=0;
  SVMFLOAT alpha=0;
  SVMINT i;
  int result=1;

  // actual convergence-test
  total = 0; alpha_sum=0;

  for(i=0;i<examples_total;i++){
    alpha = all_alphas[i];
    alpha_sum += alpha;
    if((alpha>is_zero) && (alpha-Cneg < -is_zero)){
      // alpha^* = - nabla
      the_lambda_eq += -sum[i];
      total++;
    };
  };

  if(parameters->verbosity>= 4){
    cout<<"lambda_eq = "<<(the_lambda_eq/total)<<endl;
  };
  if(total>0){
    lambda_eq = the_lambda_eq / total;
  }
  else{
    // keep WS lambda_eq
    lambda_eq = lambda_WS;
    if(parameters->verbosity>= 4){
      cout<<"*** no SVs in convergence(), lambda_eq = "<<lambda_eq<<"."<<endl;
    };
  };

  if(target_count>2){
    if(target_count>20){
      // desperate!
      lambda_eq = ((40-target_count)*lambda_eq + (target_count-20)*lambda_WS)/20;
      if(parameters->verbosity>=5){
	cout<<"Re-Re-calculated lambda from WS: "<<lambda_eq<<endl;
      };
      if(target_count>40){
	// really desperate, kick one example out!
	i = working_set[target_count%working_set_size];
	lambda_eq = -sum[i];
	if(parameters->verbosity>=5){
	  cout<<"set lambda_eq to nabla("<<i<<"): "<<lambda_eq<<endl;
	};
      };
    }
    else{
      lambda_eq = lambda_WS;
      if(parameters->verbosity>=5){
	cout<<"Re-calculated lambda_eq from WS: "<<lambda_eq<<endl;
      };
    };
  };

  // check linear constraint
  if(abs(alpha_sum+sum_alpha-nu) > convergence_epsilon){
    // equality constraint violated
    if(parameters->verbosity>= 4){
      cout<<"No convergence: equality constraint violated: |"<<(alpha_sum+sum_alpha)<<"| >> 0"<<endl;
    };
    project_to_constraint();
    result = 0;  
  };

  i=0;
  while((i<examples_total) && (result != 0)){
    if(lambda(i)>=-convergence_epsilon){
      i++;
    }
    else{
      result = 0;
    };
  };

  time_convergence += get_time() - time_start;
  return result;
};


void svm_distribution_c::init_working_set(){
  // calculate sum
  SVMINT i,j;

  if(nu>1){
    cout<<"ERROR: nu too large, setting nu to 1"<<endl;
    nu = 1-is_zero;
  };
  SVMFLOAT the_sum=0;
  for(i=0; i<examples_total;i++){
    the_sum += all_alphas[i];
  };
  if(abs(the_sum-nu) > is_zero){
    for(i=0; i<examples_total;i++){
      examples->put_alpha(i,nu/((SVMFLOAT)examples_total));
    };
    examples->set_initialised_alpha();
  };

  if(parameters->verbosity >= 3){
    cout<<"Initialising variables, this may take some time."<<endl;
  };
  for(i=0; i<examples_total;i++){
    all_ys[i] = 1;
    sum[i] = 0;
    at_bound[i] = 0;
    for(j=0; j<examples_total;j++){
      sum[i] += all_alphas[j]*kernel->calculate_K(i,j);
    };
  };

  calculate_working_set();
  update_working_set();
};


void svm_distribution_c::print_special_statistics(){
  // calculate margin rho
  SVMFLOAT rho = 0;
  SVMINT count = 0;
  SVMFLOAT norm_x;
  SVMFLOAT max_norm_x=-infinity;
  //  SVMFLOAT xi_i;
  //  SVMINT estim_loo=examples_total;
  //  SVMINT estim_loo2=examples_total;
  SVMINT svs=0;;
  for(SVMINT i=0;i<examples_total;i++){
    if((all_alphas[i] > is_zero) && (all_alphas[i]-Cpos<-is_zero)){
      rho += sum[i];
      count++;
    };
    if(all_alphas[i] != 0){
      svs++;
      norm_x = kernel->calculate_K(i,i);
      if(norm_x>max_norm_x){
	max_norm_x = norm_x;
      };
    };
  };
  if(count == 0){
    cout<<"ERROR: could not calculate margin."<<endl;
  }
  else{
    // put -rho as b (same decision function)
    rho /= (SVMINT)count;
    examples->put_b(-rho);
    cout<<"margin = "<<rho<<endl;
  };
//   count = 0;
//   SVMFLOAT the_y;


//   cout<<"upper bound = "<<nu<<endl;
//   cout<<"lower bound = "<<1/((SVMFLOAT)(examples_total*(examples_total-1)))<<endl;
//   cout<<"max_norm_x = "<<max_norm_x<<endl;
//   for(SVMINT i=0;i<examples_total;i++){
//     the_y = predict(i);
//     if(all_alphas[i] != 0){
//       // loo error?
//       if(the_y < 0){
// 	xi_i = -the_y;
//       }
//       else{
// 	xi_i = 0;
//       };
//       // if(xi_i+(all_alphas[i]+1/((SVMFLOAT)examples_total))*max_norm_x > rho){
//       cout<<all_alphas[i]<<"\t"<<xi_i/2<<" + "<<(all_alphas[i]+nu)*max_norm_x<<" = "<<xi_i/2+(all_alphas[i]+nu)*max_norm_x<<"\t"<<rho<<endl;
//       if(xi_i/2+(all_alphas[i]+nu)*max_norm_x >= rho){
// 	estim_loo--;
// 	estim_loo2--;
//       }
//       else if(all_alphas[i]>nu){
// 	estim_loo2--;
//       }
//       else if(all_alphas[i]*(SVMFLOAT)(examples_total*(examples_total-1))<1){
// 	estim_loo2--;
//       };
//     };
//     examples->put_y(i,the_y);
//     if(the_y>=0){
//       count++;
//     };
//   };
//   examples->set_initialised_y();
//   if(nu*((SVMFLOAT)examples_total-1)>svs-1){
//     estim_loo2 = 0;
//   };
  //cout<<"opt. loo-estim. of the support   : "<<estim_loo<<" ("<<((SVMINT)(10000.0*(SVMFLOAT)estim_loo/((SVMFLOAT)examples_total)))/100.0<<"%)."<<endl;
  //cout<<"pess. loo-estim. of the support  : "<<estim_loo2<<" ("<<((SVMINT)(10000.0*(SVMFLOAT)estim_loo2/((SVMFLOAT)examples_total)))/100.0<<"%)."<<endl;
  cout<<"examples in distribution support : "<<count<<" ("<<((SVMINT)(10000.0*(SVMFLOAT)count/((SVMFLOAT)examples_total)))/100.0<<"%)."<<endl;


};


?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲sss视频在线视频| 日韩av一区二| 日韩一区二区免费高清| 粉嫩久久99精品久久久久久夜| 亚洲乱码中文字幕综合| 亚洲精品一区二区在线观看| 91欧美一区二区| 国产九色sp调教91| 午夜精品成人在线视频| 亚洲日本va午夜在线电影| 精品国一区二区三区| 在线观看国产一区二区| 粉嫩嫩av羞羞动漫久久久| 日本不卡中文字幕| 一区二区三区四区高清精品免费观看| 精品捆绑美女sm三区| 欧美三级日韩在线| 91理论电影在线观看| 成人午夜视频在线| 国产乱人伦偷精品视频免下载| 午夜天堂影视香蕉久久| 亚洲人成影院在线观看| 国产精品美女久久久久久久网站| 欧美tickling挠脚心丨vk| 91麻豆精品国产自产在线观看一区 | 性感美女极品91精品| 中文字幕日韩欧美一区二区三区| 精品盗摄一区二区三区| 91精品免费观看| 欧美日韩精品一区二区三区| 色爱区综合激月婷婷| 99国产精品一区| 99久久久久久| av综合在线播放| 99在线精品一区二区三区| 高清在线成人网| 成人性生交大片免费看视频在线| 国产精品影视在线观看| 麻豆一区二区在线| 久久99日本精品| 国产在线一区观看| 韩国午夜理伦三级不卡影院| 久久福利视频一区二区| 国产综合色精品一区二区三区| 秋霞午夜av一区二区三区| 日本v片在线高清不卡在线观看| 亚洲成人av一区二区| 日韩高清中文字幕一区| 免费久久99精品国产| 久久精品国产亚洲a| 国产一区二区三区最好精华液| 九一久久久久久| 国产高清一区日本| 懂色av一区二区三区免费观看| 风间由美一区二区av101| 波波电影院一区二区三区| av一二三不卡影片| 在线观看不卡一区| 在线播放/欧美激情| 精品日产卡一卡二卡麻豆| 久久九九国产精品| 日韩久久一区二区| 亚洲第一精品在线| 激情亚洲综合在线| 成人黄色片在线观看| 色哟哟欧美精品| 91精品国产综合久久久久久漫画 | 中文字幕免费不卡在线| 亚洲人成网站色在线观看| 五月天视频一区| 精品制服美女丁香| 成人免费看片app下载| 99综合电影在线视频| 欧美高清视频www夜色资源网| 欧美一区二区三区电影| 欧美经典一区二区| 日韩欧美国产一区在线观看| 中文字幕 久热精品 视频在线| 一区二区高清免费观看影视大全| 99久久精品国产麻豆演员表| 欧美激情综合五月色丁香小说| 中文字幕欧美国产| 亚洲一区在线播放| 狠狠色综合色综合网络| av在线不卡免费看| 91精品免费观看| 久久精品视频一区二区| 亚洲成人www| 风间由美一区二区av101| 欧美日本在线一区| 国产欧美一区二区精品久导航| 亚洲一区二区三区在线播放| 国产另类ts人妖一区二区| 欧美三级视频在线播放| 日本一区二区免费在线| 日韩成人免费电影| www.日本不卡| 欧美成人乱码一区二区三区| 亚洲精品视频一区二区| 国产福利一区二区三区在线视频| 欧美年轻男男videosbes| 国产精品久久久一区麻豆最新章节| 午夜精品福利在线| 91麻豆.com| 中文字幕精品一区二区精品绿巨人 | 亚洲国产日韩精品| 国产99久久久久久免费看农村| 欧美另类变人与禽xxxxx| 国产精品久久毛片av大全日韩| 久久精品国产免费| 欧美理论片在线| 亚洲精品欧美二区三区中文字幕| 激情五月婷婷综合网| 欧美精品丝袜中出| 一区二区三区四区国产精品| 成人国产一区二区三区精品| 国产午夜亚洲精品羞羞网站| 久久精品国产亚洲5555| 91精品中文字幕一区二区三区| 亚洲三级在线看| 成人av片在线观看| 国产女主播在线一区二区| 国产在线精品一区二区夜色| 这里只有精品免费| 天天色综合天天| 欧美日韩另类一区| 亚洲已满18点击进入久久| 91捆绑美女网站| 亚洲欧洲av在线| www.在线欧美| 国产精品久久久久久久久免费桃花 | 国产综合色视频| 精品国产欧美一区二区| 免费在线观看不卡| 制服.丝袜.亚洲.中文.综合| 三级在线观看一区二区| 欧美日韩成人一区二区| 五月天中文字幕一区二区| 欧美丰满少妇xxxxx高潮对白 | 成人综合婷婷国产精品久久蜜臀 | 色就色 综合激情| 亚洲免费看黄网站| 91国产成人在线| 婷婷国产在线综合| 欧美一卡二卡三卡| 久草中文综合在线| 精品国产乱码久久久久久蜜臀 | 欧美亚洲另类激情小说| 亚洲成av人片在线观看无码| 欧美日韩不卡视频| 久久99久久99小草精品免视看| 日韩一级精品视频在线观看| 久久国产精品99精品国产| 久久久电影一区二区三区| 成人美女视频在线观看18| 亚洲色图自拍偷拍美腿丝袜制服诱惑麻豆| 93久久精品日日躁夜夜躁欧美| 亚洲一区免费在线观看| 欧美一区二区三区四区在线观看| 蜜臀精品久久久久久蜜臀| 久久久电影一区二区三区| 99精品视频一区二区三区| 亚洲香肠在线观看| 日韩欧美在线网站| 成人免费av在线| 亚洲丰满少妇videoshd| 精品日韩一区二区| 91最新地址在线播放| 视频一区欧美日韩| 国产日韩精品一区| 91久久精品一区二区| 蓝色福利精品导航| 国产精品毛片无遮挡高清| 欧美日韩电影在线播放| 国产黑丝在线一区二区三区| ㊣最新国产の精品bt伙计久久| 欧美色涩在线第一页| 国产一区二区精品久久| 亚洲一区二区黄色| 久久久99精品久久| 欧美日韩中文字幕一区二区| 国产一区二区毛片| 亚洲午夜羞羞片| 久久精品这里都是精品| 欧美亚洲另类激情小说| 国产精品白丝jk白祙喷水网站| 亚洲已满18点击进入久久| 国产亚洲成av人在线观看导航| 欧美丝袜自拍制服另类| 国产精品一区二区三区乱码| 亚洲图片欧美一区| 国产精品久久三区| www国产精品av| 欧美日韩在线播放一区| www.一区二区| 国产自产v一区二区三区c| 亚洲国产人成综合网站| 国产精品久久久久久久久图文区| 日韩一区二区免费电影| 欧美色综合久久|