当前位置: 首页>>代码示例>>C++>>正文


C++ FVector::size方法代码示例

本文整理汇总了C++中FVector::size方法的典型用法代码示例。如果您正苦于以下问题:C++ FVector::size方法的具体用法?C++ FVector::size怎么用?C++ FVector::size使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在FVector的用法示例。


在下文中一共展示了FVector::size方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: inner_product

FValue inner_product(const FVector& lhs, const FVector& rhs)
{
  if (lhs.size() >= rhs.size()) {
    return rhs.inner_product(lhs);
  } else {
    return lhs.inner_product(rhs);
  }
}
开发者ID:Kitton,项目名称:mosesdecoder,代码行数:8,代码来源:FeatureVector.cpp

示例2: fabs

		void
SvmSgd::get_delta_w(FVector w2, map <double, int> & delta_w)
{
		double value;
		cout << "w2.size(): " << w2.size() << endl;
		cout << "w2[0] value: " << w2[0] << endl;
		for(int i = 1; i < w2.size(); i++){
				value = fabs(w2[i] - w[i]);
				delta_w.insert(pair<double, int>(value, i - 1));
		}
}
开发者ID:shanil-puri,项目名称:SysResearchLab,代码行数:11,代码来源:init_svmsgd.cpp

示例3: output_w

void SvmSgd::output_w(const char* filename)
{
		//TODO: output parameter w!!!
		VFloat *f1 = w;
		cout << "\n Prepare to output w: \n" ;
		int m = w.size();
		cout << "size of m: " << m << endl;

		ofstream outwfd(filename);
		if(outwfd){

				outwfd << t << endl;
				outwfd << wDivisor << endl;
				outwfd << wBias << endl;
				while(--m >= 0){
						outwfd << *f1++ << "\t" ;
				}
		}
		else{

				cout << t << endl;
				cout << wDivisor << endl;
				cout << wBias << endl;
				while(--m >= 0){
						cout << *f1++ << "\t" ;
				}
		}

}
开发者ID:shanil-puri,项目名称:SysResearchLab,代码行数:29,代码来源:init_svmsgd.cpp

示例4: c

void 
SvmSgd::calibrate(int imin, int imax, 
                const xvec_t &xp, const yvec_t &yp)
{
  cout << "Estimating sparsity and bscale." << endl;
  int j;

  // compute average gradient size
  double n = 0;
  double m = 0;
  double r = 0;
  FVector c(w.size());
  for (j=imin; j<=imax && m<=1000; j++,n++)
    {
      const SVector &x = xp.at(j);
      n += 1;
      r += x.npairs();
      const SVector::Pair *p = x;
      while (p->i >= 0 && p->i < c.size())
        {
          double z = c.get(p->i) + fabs(p->v);
          c.set(p->i, z);
          m = max(m, z);
          p += 1;
        }
    }

  // bias update scaling
  bscale = m/n;

  // compute weight decay skip
  skip = (int) ((8 * n * w.size()) / r);
  cout << " using " << n << " examples." << endl;
  cout << " skip: " << skip 
       << " bscale: " << setprecision(6) << bscale << endl;
}
开发者ID:AnryYang,项目名称:cpp_algorithms,代码行数:36,代码来源:svmsgd2.cpp

示例5: assert

static void
dLogSum(double g, const FVector &v, FVector &r)
{
  assert(v.size() <= r.size());
  dLogSum(g, v, r, v.size());
}
开发者ID:DavidGrangier,项目名称:svmsparse,代码行数:6,代码来源:crfasgd.cpp

示例6: logSum

static double
logSum(const FVector &v)
{
  return logSum(v, v.size());
}
开发者ID:DavidGrangier,项目名称:svmsparse,代码行数:5,代码来源:crfasgd.cpp


注:本文中的FVector::size方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。