• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java TestSerializable类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中cc.mallet.types.tests.TestSerializable的典型用法代码示例。如果您正苦于以下问题:Java TestSerializable类的具体用法?Java TestSerializable怎么用?Java TestSerializable使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



TestSerializable类属于cc.mallet.types.tests包,在下文中一共展示了TestSerializable类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: ignoreTestSerialization

import cc.mallet.types.tests.TestSerializable; //导入依赖的package包/类
public void ignoreTestSerialization () throws IOException, ClassNotFoundException
{
  Variable v1 = new Variable (2);
  Variable v2 = new Variable (3);
  Variable[] vars = { v1, v2 };
  double[] vals = new double[]{ 2.0, 4.0, 6.0, 3, 5, 7 };
  TableFactor ptl = new TableFactor (vars, vals);
  TableFactor ptl2 = (TableFactor) TestSerializable.cloneViaSerialization (ptl);

  Set varset1 = ptl.varSet();
  Set varset2 = ptl2.varSet();
  assertTrue (!varset1.contains (varset2)); // Variables deep-cloned

  // There's not way to get directly at the matrices...!
  comparePotentialValues (ptl, ptl2);

  TableFactor marg1 = (TableFactor) ptl.marginalize (v1);
  TableFactor marg2 = (TableFactor) ptl2.marginalize (ptl2.findVariable (v1.getLabel ()));
  comparePotentialValues (marg1, marg2);
}
 
开发者ID:mimno,项目名称:GRMM,代码行数:21,代码来源:TestTableFactor.java


示例2: ignoreTestSerialization

import cc.mallet.types.tests.TestSerializable; //导入依赖的package包/类
public void ignoreTestSerialization () throws IOException, ClassNotFoundException
{
  Variable v1 = new Variable (2);
  Variable v2 = new Variable (3);
  Variable[] vars = { v1, v2 };
  double[] vals = new double[]{ 2.0, 4.0, 6.0, 3, 5, 7 };
  LogTableFactor ptl = LogTableFactor.makeFromLogValues (vars, vals);
  LogTableFactor ptl2 = (LogTableFactor) TestSerializable.cloneViaSerialization (ptl);

  Set varset1 = ptl.varSet();
  Set varset2 = ptl2.varSet();
  assertTrue (!varset1.contains (varset2)); // Variables deep-cloned

  // There's not way to get directly at the matrices...!
  comparePotentialValues (ptl, ptl2);

  LogTableFactor marg1 = (LogTableFactor) ptl.marginalize (v1);
  LogTableFactor marg2 = (LogTableFactor) ptl2.marginalize (ptl2.findVariable (v1.getLabel ()));
  comparePotentialValues (marg1, marg2);
}
 
开发者ID:mimno,项目名称:GRMM,代码行数:21,代码来源:TestLogTableFactor.java


示例3: testSerializationForAlg

import cc.mallet.types.tests.TestSerializable; //导入依赖的package包/类
private void testSerializationForAlg (Inferencer alg)
        throws IOException, ClassNotFoundException
{
  for (int mdlIdx = 0; mdlIdx < models.length; mdlIdx++) {
    FactorGraph mdl = models [mdlIdx];
    // Copy the inferencer before calling b/c of random seed issues.
    Inferencer alg2 = (Inferencer) TestSerializable.cloneViaSerialization (alg);

    alg.computeMarginals(mdl);
    Factor[] pre = collectAllMarginals (mdl, alg);

    alg2.computeMarginals (mdl);
    Factor[] post2 = collectAllMarginals (mdl, alg2);
    compareMarginals ("Error comparing marginals after serialzation on model "+mdl,
                      pre, post2);
  }
}
 
开发者ID:mimno,项目名称:GRMM,代码行数:18,代码来源:TestInference.java


示例4: testSpaceSerializable

import cc.mallet.types.tests.TestSerializable; //导入依赖的package包/类
public void testSpaceSerializable () throws IOException, ClassNotFoundException
{
  Pipe p = makeSpacePredictionPipe ();
  InstanceList training = new InstanceList (p);
  training.addThruPipe (new ArrayIterator (data));

  MEMM memm = new MEMM (p, null);
  memm.addFullyConnectedStatesForLabels ();
  memm.addStartState();
  memm.setWeightsDimensionAsIn(training);
 MEMMTrainer memmt = new MEMMTrainer (memm);
  memmt.train (training, 10);

  MEMM memm2 = (MEMM) TestSerializable.cloneViaSerialization (memm);

  Optimizable.ByGradientValue mcrf1 = memmt.getOptimizableMEMM(training);
  double val1 = mcrf1.getValue ();
  Optimizable.ByGradientValue mcrf2 = memmt.getOptimizableMEMM(training);
  double val2 = mcrf2.getValue ();

  assertEquals (val1, val2, 1e-5);
}
 
开发者ID:kostagiolasn,项目名称:NucleosomePatternClassifier,代码行数:23,代码来源:TestMEMM.java


示例5: testMultiTagSerialization

import cc.mallet.types.tests.TestSerializable; //导入依赖的package包/类
public static void testMultiTagSerialization () throws IOException, ClassNotFoundException
{
  Pipe origPipe = new SerialPipes (new Pipe[] {
          new SimpleTaggerSentence2TokenSequence (),
          new TokenText (),
          new RegexMatches ("digits", Pattern.compile ("[0-9]+")),
          new RegexMatches ("ampm", Pattern.compile ("[aApP][mM]")),
          new OffsetFeatureConjunction ("time",
                  new String[] { "digits", "ampm" },
                  new int[] { 0, 1 },
                  true),
          new PrintInputAndTarget (),
  });

  Pipe mtPipe = (Pipe) TestSerializable.cloneViaSerialization (origPipe);
  InstanceList mtLst = new InstanceList (mtPipe);
  mtLst.addThruPipe (new ArrayIterator (doc1));
  Instance mtInst = mtLst.get (0);
  TokenSequence mtTs = (TokenSequence) mtInst.getData ();
  assertEquals (6, mtTs.size ());
  assertEquals (1.0, mtTs.get (3).getFeatureValue ("time"), 1e-15);
  assertEquals (1.0, mtTs.get (4).getFeatureValue ("time"), 1e-15);
}
 
开发者ID:kostagiolasn,项目名称:NucleosomePatternClassifier,代码行数:24,代码来源:TestOffsetFeatureConjunctions.java


示例6: ignoretestSpaceSerializable

import cc.mallet.types.tests.TestSerializable; //导入依赖的package包/类
public void ignoretestSpaceSerializable () throws IOException, ClassNotFoundException
{
  Pipe p = makeSpacePredictionPipe ();
  InstanceList training = new InstanceList (p);
  training.addThruPipe (new ArrayIterator (data));

  MEMM memm = new MEMM (p, null);
  memm.addFullyConnectedStatesForLabels ();
  memm.addStartState();
  memm.setWeightsDimensionAsIn(training);
 MEMMTrainer memmt = new MEMMTrainer (memm);
  memmt.train (training, 10);

  MEMM memm2 = (MEMM) TestSerializable.cloneViaSerialization (memm);

  Optimizable.ByGradientValue mcrf1 = memmt.getOptimizableMEMM(training);
  double val1 = mcrf1.getValue ();
  Optimizable.ByGradientValue mcrf2 = memmt.getOptimizableMEMM(training);
  double val2 = mcrf2.getValue ();

  assertEquals (val1, val2, 1e-5);
}
 
开发者ID:cmoen,项目名称:mallet,代码行数:23,代码来源:TestMEMM.java



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java LeveledManifest类代码示例发布时间:2022-05-22
下一篇:
Java CompilationParticipant类代码示例发布时间:2022-05-22
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap