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

Java Field类代码示例

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

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



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

示例1: getTechnicalInformation

import weka.core.TechnicalInformation.Field; //导入依赖的package包/类
/**
 * Returns an instance of a TechnicalInformation object, containing detailed
 * information about the technical background of this class, e.g., paper
 * reference or book this class is based on.
 * 
 * @return the technical information about this class
 */
@Override
public TechnicalInformation getTechnicalInformation() {
  TechnicalInformation result;
  result = new TechnicalInformation(Type.ARTICLE);
  result.setValue(Field.AUTHOR, "Y.H. Dai and Y. Yuan");
  result.setValue(Field.YEAR, "2001");
  result
    .setValue(Field.TITLE,
      "An Efficient Hybrid Conjugate Gradient Method for Unconstrained Optimization");
  result.setValue(Field.JOURNAL, "Annals of Operations Research");
  result.setValue(Field.VOLUME, "103");
  result.setValue(Field.PAGES, "33-47");

  result.add(Type.ARTICLE);
  result.setValue(Field.AUTHOR, "W.W. Hager and H. Zhang");
  result.setValue(Field.YEAR, "2006");
  result.setValue(Field.TITLE,
    "A survey of nonlinear conjugate gradient methods");
  result.setValue(Field.JOURNAL, "Pacific Journal of Optimization");
  result.setValue(Field.VOLUME, "2");
  result.setValue(Field.PAGES, "35-58");

  return result;
}
 
开发者ID:mydzigear,项目名称:repo.kmeanspp.silhouette_score,代码行数:32,代码来源:ConjugateGradientOptimization.java


示例2: getTechnicalInformation

import weka.core.TechnicalInformation.Field; //导入依赖的package包/类
/**
 * Returns an instance of a TechnicalInformation object, containing 
 * detailed information about the technical background of this class,
 * e.g., paper reference or book this class is based on.
 * 
 * @return the technical information about this class
 */
public TechnicalInformation getTechnicalInformation() {
  TechnicalInformation 	result;
  TechnicalInformation 	additional;
  
  result = new TechnicalInformation(Type.ARTICLE);
  result.setValue(Field.AUTHOR, "Y.H. Dai and Y. Yuan");
  result.setValue(Field.YEAR, "2001");
  result.setValue(Field.TITLE, "An Efficient Hybrid Conjugate Gradient Method for Unconstrained Optimization");
  result.setValue(Field.JOURNAL, "Annals of Operations Research");
  result.setValue(Field.VOLUME, "103");
  result.setValue(Field.PAGES, "33-47");
  
  additional = result.add(Type.ARTICLE);
  result.setValue(Field.AUTHOR, "W.W. Hager and H. Zhang");
  result.setValue(Field.YEAR, "2006");
  result.setValue(Field.TITLE, "A survey of nonlinear conjugate gradient methods");
  result.setValue(Field.JOURNAL, "Pacific Journal of Optimization");
  result.setValue(Field.VOLUME, "2");
  result.setValue(Field.PAGES, "35-58");
  
  return result;
}
 
开发者ID:dsibournemouth,项目名称:autoweka,代码行数:30,代码来源:ConjugateGradientOptimization.java


示例3: getTechnicalInformation

import weka.core.TechnicalInformation.Field; //导入依赖的package包/类
@Override
public TechnicalInformation getTechnicalInformation() {
	TechnicalInformation	result;
	TechnicalInformation	additional;
	
	result = new TechnicalInformation(Type.ARTICLE);
	result.setValue(Field.AUTHOR, "Jesse Read, Bernhard Pfahringer, Geoff Holmes, Eibe Frank");
	result.setValue(Field.TITLE, "Classifier Chains for Multi-label Classification");
	result.setValue(Field.JOURNAL, "Machine Learning Journal");
	result.setValue(Field.YEAR, "2011");
	result.setValue(Field.VOLUME, "85");
	result.setValue(Field.NUMBER, "3");
	result.setValue(Field.PAGES, "333-359");
	
	additional = new TechnicalInformation(Type.INPROCEEDINGS);
	additional.setValue(Field.AUTHOR, "Jesse Read, Bernhard Pfahringer, Geoff Holmes, Eibe Frank");
	additional.setValue(Field.TITLE, "Classifier Chains for Multi-label Classification");
	additional.setValue(Field.BOOKTITLE, "20th European Conference on Machine Learning (ECML 2009). Bled, Slovenia, September 2009");
	additional.setValue(Field.YEAR, "2009");

	result.add(additional);
   
	return result;
}
 
开发者ID:IsaacHaze,项目名称:meka,代码行数:25,代码来源:CC.java


示例4: getTechnicalInformation

import weka.core.TechnicalInformation.Field; //导入依赖的package包/类
@Override
public TechnicalInformation getTechnicalInformation() {
	TechnicalInformation	result;
	TechnicalInformation	additional;

	result = new TechnicalInformation(Type.INPROCEEDINGS);
	result.setValue(Field.AUTHOR, "Jesse Read and Luca Martino and David Luengo");
	result.setValue(Field.TITLE, "Efficient Monte Carlo Optimization for Multi-label Classifier Chains");
	result.setValue(Field.BOOKTITLE, "ICASSP'13: International Conference on Acoustics, Speech, and Signal Processing");
	result.setValue(Field.YEAR, "2013");

	additional = new TechnicalInformation(Type.ARTICLE);
	additional.setValue(Field.AUTHOR, "Jesse Read and Luca Martino and David Luengo");
	additional.setValue(Field.TITLE, "Efficient Monte Carlo Optimization for Multi-dimensional Classifier Chains");
	additional.setValue(Field.JOURNAL, "Elsevier Pattern Recognition");
	additional.setValue(Field.YEAR, "2013");

	result.add(additional);
	return result;
}
 
开发者ID:IsaacHaze,项目名称:meka,代码行数:21,代码来源:MCC.java


示例5: getTechnicalInformation

import weka.core.TechnicalInformation.Field; //导入依赖的package包/类
/**
 * Returns an instance of a TechnicalInformation object, containing
 * detailed information about the technical background of this class,
 * e.g., paper reference or book this class is based on.
 *
 * @return the technical information about this class
 */
public TechnicalInformation getTechnicalInformation(){
  TechnicalInformation result;

  result = new TechnicalInformation(Type.ARTICLE);
  result.setValue(Field.AUTHOR, "Leo Breiman");
  result.setValue(Field.YEAR, "2001");
  result.setValue(Field.TITLE, "Random Forests");
  result.setValue(Field.JOURNAL, "Machine Learning");
  result.setValue(Field.VOLUME, "45");
  result.setValue(Field.NUMBER, "1");
  result.setValue(Field.PAGES, "5-32");

  return result;
}
 
开发者ID:Keywords4Bytecodes,项目名称:1stclass,代码行数:22,代码来源:FastRandomForest.java


示例6: getTechnicalInformation

import weka.core.TechnicalInformation.Field; //导入依赖的package包/类
/**
 * Returns an instance of a TechnicalInformation object, containing detailed
 * information about the technical background of this class, e.g., paper
 * reference or book this class is based on.
 *
 * @return the technical information about this class
 */
public TechnicalInformation getTechnicalInformation() {
  TechnicalInformation result;
  TechnicalInformation additional;

  result = new TechnicalInformation(Type.ARTICLE);
  result
    .setValue(Field.AUTHOR, "Niels Landwehr and Mark Hall and Eibe Frank");
  result.setValue(Field.TITLE, "Logistic Model Trees");
  result.setValue(Field.BOOKTITLE, "Machine Learning");
  result.setValue(Field.YEAR, "2005");
  result.setValue(Field.VOLUME, "95");
  result.setValue(Field.PAGES, "161-205");
  result.setValue(Field.NUMBER, "1-2");

  additional = result.add(Type.INPROCEEDINGS);
  additional.setValue(Field.AUTHOR,
    "Marc Sumner and Eibe Frank and Mark Hall");
  additional.setValue(Field.TITLE,
    "Speeding up Logistic Model Tree Induction");
  additional
    .setValue(Field.BOOKTITLE,
      "9th European Conference on Principles and Practice of Knowledge Discovery in Databases");
  additional.setValue(Field.YEAR, "2005");
  additional.setValue(Field.PAGES, "675-683");
  additional.setValue(Field.PUBLISHER, "Springer");

  return result;
}
 
开发者ID:mydzigear,项目名称:repo.kmeanspp.silhouette_score,代码行数:36,代码来源:SimpleLogistic.java


示例7: getTechnicalInformation

import weka.core.TechnicalInformation.Field; //导入依赖的package包/类
/**
 * Returns an instance of a TechnicalInformation object, containing 
 * detailed information about the technical background of this class,
 * e.g., paper reference or book this class is based on.
 * 
 * @return 		the technical information about this class
 */
public TechnicalInformation getTechnicalInformation() {
  TechnicalInformation 	result;
  
  result = new TechnicalInformation(Type.MISC);
  result.setValue(Field.AUTHOR, "Wikipedia");
  result.setValue(Field.TITLE, "Euclidean distance");
  result.setValue(Field.URL, "http://en.wikipedia.org/wiki/Euclidean_distance");

  return result;
}
 
开发者ID:mydzigear,项目名称:repo.kmeanspp.silhouette_score,代码行数:18,代码来源:EuclideanDistance.java


示例8: getTechnicalInformation

import weka.core.TechnicalInformation.Field; //导入依赖的package包/类
/**
 * Returns an instance of a TechnicalInformation object, containing detailed
 * information about the technical background of this class, e.g., paper
 * reference or book this class is based on.
 * 
 * @return the technical information about this class
 */
@Override
public TechnicalInformation getTechnicalInformation() {
  TechnicalInformation result;

  result = new TechnicalInformation(Type.MISC);
  result.setValue(Field.AUTHOR, "Wikipedia");
  result.setValue(Field.TITLE, "Minkowski distance");
  result.setValue(Field.URL,
    "http://en.wikipedia.org/wiki/Minkowski_distance");

  return result;
}
 
开发者ID:mydzigear,项目名称:repo.kmeanspp.silhouette_score,代码行数:20,代码来源:MinkowskiDistance.java


示例9: getTechnicalInformation

import weka.core.TechnicalInformation.Field; //导入依赖的package包/类
/**
 * Returns an instance of a TechnicalInformation object, containing 
 * detailed information about the technical background of this class,
 * e.g., paper reference or book this class is based on.
 * 
 * @return 		the technical information about this class
 */
public TechnicalInformation getTechnicalInformation() {
  TechnicalInformation 	result;
  
  result = new TechnicalInformation(Type.MISC);
  result.setValue(Field.AUTHOR, "Wikipedia");
  result.setValue(Field.TITLE, "Chebyshev distance");
  result.setValue(Field.URL, "http://en.wikipedia.org/wiki/Chebyshev_distance");

  return result;
}
 
开发者ID:mydzigear,项目名称:repo.kmeanspp.silhouette_score,代码行数:18,代码来源:ChebyshevDistance.java


示例10: getTechnicalInformation

import weka.core.TechnicalInformation.Field; //导入依赖的package包/类
/**
 * Returns an instance of a TechnicalInformation object, containing 
 * detailed information about the technical background of this class,
 * e.g., paper reference or book this class is based on.
 * 
 * @return 		the technical information about this class
 */
public TechnicalInformation getTechnicalInformation() {
  TechnicalInformation 	result;
  
  result = new TechnicalInformation(Type.MISC);
  result.setValue(Field.AUTHOR, "Wikipedia");
  result.setValue(Field.TITLE, "Taxicab geometry");
  result.setValue(Field.URL, "http://en.wikipedia.org/wiki/Taxicab_geometry");

  return result;
}
 
开发者ID:mydzigear,项目名称:repo.kmeanspp.silhouette_score,代码行数:18,代码来源:ManhattanDistance.java


示例11: getTechnicalInformation

import weka.core.TechnicalInformation.Field; //导入依赖的package包/类
public static TechnicalInformation getTechnicalInformation() {
	TechnicalInformation result = new TechnicalInformation(Type.TECHREPORT);
	result.setValue(Field.AUTHOR, "Christopher Beckham, Mark Hall, Eibe Frank");
	result.setValue(Field.TITLE, "WekaPyScript: Classification, Regression, and Filter Schemes for WEKA Implemented in Python");
	result.setValue(Field.JOURNAL, "Journal of Open Research Software");
	result.setValue(Field.URL, "http://openresearchsoftware.metajnl.com/articles/10.5334/jors.108/");
	result.setValue(Field.YEAR, "2016");
	return result;
}
 
开发者ID:christopher-beckham,项目名称:weka-pyscript,代码行数:10,代码来源:Utility.java


示例12: getTechnicalInformation

import weka.core.TechnicalInformation.Field; //导入依赖的package包/类
/**
 * Returns an instance of a TechnicalInformation object, containing 
 * detailed information about the technical background of this class,
 * e.g., paper reference or book this class is based on.
 * 
 * @return 		the technical information about this class
 */
public TechnicalInformation getTechnicalInformation() {
  TechnicalInformation 	result;
  
  result = new TechnicalInformation(Type.MISC);
  result.setValue(Field.AUTHOR, "Wikipedia");
  result.setValue(Field.TITLE, "Minkowski distance");
  result.setValue(Field.URL, "http://en.wikipedia.org/wiki/Minkowski_distance");

  return result;
}
 
开发者ID:dsibournemouth,项目名称:autoweka,代码行数:18,代码来源:MinkowskiDistance.java


示例13: getTechnicalInformation

import weka.core.TechnicalInformation.Field; //导入依赖的package包/类
@Override
public TechnicalInformation getTechnicalInformation() {
	TechnicalInformation	result;

	result = new TechnicalInformation(Type.INPROCEEDINGS);
	result.setValue(Field.AUTHOR, "Jesse Read, Concha Blieza, Pedro Larranaga");
	result.setValue(Field.TITLE, "Multi-Dimensional Classification with Super-Classes");
	result.setValue(Field.JOURNAL, "IEEE Transactions on Knowledge and Data Engineering");
	result.setValue(Field.YEAR, "2013");
	
	return result;
}
 
开发者ID:IsaacHaze,项目名称:meka,代码行数:13,代码来源:SCC.java


示例14: getTechnicalInformation

import weka.core.TechnicalInformation.Field; //导入依赖的package包/类
@Override
public TechnicalInformation getTechnicalInformation() {
	TechnicalInformation	result;
	
	result = new TechnicalInformation(Type.ARTICLE);
	result.setValue(Field.AUTHOR, "Robert E. Schapire, Yoram Singer ");
	result.setValue(Field.TITLE, "Improved Boosting Algorithms Using Confidence-rated Predictions");
	result.setValue(Field.JOURNAL, "Machine Learning Journal");
	result.setValue(Field.YEAR, "1999");
	result.setValue(Field.VOLUME, "37");
	result.setValue(Field.NUMBER, "3");
	result.setValue(Field.PAGES, "297-336");
	
	return result;
}
 
开发者ID:IsaacHaze,项目名称:meka,代码行数:16,代码来源:SubsetMapper.java


示例15: getTechnicalInformation

import weka.core.TechnicalInformation.Field; //导入依赖的package包/类
@Override
public TechnicalInformation getTechnicalInformation() {
	TechnicalInformation	result;

	result = new TechnicalInformation(Type.INPROCEEDINGS);
	result.setValue(Field.AUTHOR, "Jesse Read and Jaako Hollmen");
	result.setValue(Field.TITLE, "A Deep Interpretation of Classifier Chains");
	result.setValue(Field.BOOKTITLE, "Advances in Intelligent Data Analysis {XIII} - 13th International Symposium, {IDA} 2014");
	result.setValue(Field.PAGES, "251--262");
	result.setValue(Field.YEAR, "2014");

	return result;
}
 
开发者ID:IsaacHaze,项目名称:meka,代码行数:14,代码来源:DeepML.java


示例16: getTechnicalInformation

import weka.core.TechnicalInformation.Field; //导入依赖的package包/类
@Override
public TechnicalInformation getTechnicalInformation() {
	TechnicalInformation	result;

	result = new TechnicalInformation(Type.ARTICLE);
	result.setValue(Field.AUTHOR, "Geoffrey Hinton and Ruslan Salakhutdinov"); 
	result.setValue(Field.TITLE, "Reducing the Dimensionality of Data with Neural Networks");
	result.setValue(Field.JOURNAL, "Science");
	result.setValue(Field.VOLUME, "313");
	result.setValue(Field.NUMBER, "5786");
	result.setValue(Field.PAGES, "504-507");
	result.setValue(Field.YEAR, "2006");

	return result;
}
 
开发者ID:IsaacHaze,项目名称:meka,代码行数:16,代码来源:DBPNN.java


示例17: getTechnicalInformation

import weka.core.TechnicalInformation.Field; //导入依赖的package包/类
@Override
public TechnicalInformation getTechnicalInformation() {
	TechnicalInformation	result;
	
	result = new TechnicalInformation(Type.ARTICLE);
	result.setValue(Field.AUTHOR, "Jesse Read, Bernhard Pfahringer, Geoff Holmes, Eibe Frank");
	result.setValue(Field.TITLE, "Classifier Chains for Multi-label Classification");
	result.setValue(Field.JOURNAL, "Machine Learning Journal");
	result.setValue(Field.YEAR, "2011");
	result.setValue(Field.VOLUME, "85");
	result.setValue(Field.NUMBER, "3");
	result.setValue(Field.PAGES, "333-359");
	
	return result;
}
 
开发者ID:IsaacHaze,项目名称:meka,代码行数:16,代码来源:BRq.java


示例18: getTechnicalInformation

import weka.core.TechnicalInformation.Field; //导入依赖的package包/类
/**
 * Returns an instance of a TechnicalInformation object, containing detailed
 * information about the technical background of this class, e.g., paper
 * reference or book this class is based on.
 *
 * @return the technical information about this class
 */
@Override
public TechnicalInformation getTechnicalInformation() {
    TechnicalInformation result;

    result = new TechnicalInformation(Type.BOOK);
    result.setValue(Field.AUTHOR, "Ross Quinlan");
    result.setValue(Field.YEAR, "1993");
    result.setValue(Field.TITLE, "C4.5: Programs for Machine Learning");
    result.setValue(Field.PUBLISHER, "Morgan Kaufmann Publishers");
    result.setValue(Field.ADDRESS, "San Mateo, CA");

    return result;
}
 
开发者ID:machine-learning-scala,项目名称:mls,代码行数:21,代码来源:J48.java


示例19: getTechnicalInformation

import weka.core.TechnicalInformation.Field; //导入依赖的package包/类
/**
 * Returns TechnicalInformation about the paper related to the algorithm.
 * 
 * @return 			the TechnicalInformation
 */
public TechnicalInformation getTechnicalInformation() {	
  TechnicalInformation paper = new TechnicalInformation(Type.PROCEEDINGS);

  paper.setValue(Field.AUTHOR, "Ramakrishnan Srikant and Rakesh Agrawal");
  paper.setValue(Field.TITLE, "Mining Sequential Patterns: Generalizations and Performance Improvements");
  paper.setValue(Field.BOOKTITLE, "Advances in Database Technology EDBT '96");
  paper.setValue(Field.YEAR, "1996");
  paper.setValue(Field.PUBLISHER, "Springer");

  return paper;
}
 
开发者ID:williamClanton,项目名称:jbossBA,代码行数:17,代码来源:GeneralizedSequentialPatterns.java


示例20: getTechnicalInformation

import weka.core.TechnicalInformation.Field; //导入依赖的package包/类
/**
 * Returns an instance of a TechnicalInformation object, containing detailed
 * information about the technical background of this class, e.g., paper
 * reference or book this class is based on.
 * 
 * @return the technical information about this class
 */
public TechnicalInformation getTechnicalInformation() {
  TechnicalInformation result = new TechnicalInformation(Type.ARTICLE);

  result.setValue(Field.AUTHOR, "Nitesh V. Chawla et. al.");
  result.setValue(Field.TITLE, "Synthetic Minority Over-sampling Technique");
  result.setValue(Field.JOURNAL,
      "Journal of Artificial Intelligence Research");
  result.setValue(Field.YEAR, "2002");
  result.setValue(Field.VOLUME, "16");
  result.setValue(Field.PAGES, "321-357");

  return result;
}
 
开发者ID:williamClanton,项目名称:jbossBA,代码行数:21,代码来源:SMOTE.java



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


鲜花

握手

雷人

路过

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

请发表评论

全部评论

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

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

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

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

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