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


Java TechnicalInformation类代码示例

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


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

示例1: getTechnicalInformation

import weka.core.TechnicalInformation; //导入依赖的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

示例2: getTechnicalInformation

import weka.core.TechnicalInformation; //导入依赖的package包/类
public TechnicalInformation getTechnicalInformation() {
	TechnicalInformation result = new TechnicalInformation(
			TechnicalInformation.Type.ARTICLE);
	result.setValue(TechnicalInformation.Field.AUTHOR,
			"Chen Lin, Wenqiang Chen, Cheng Qiu, Yunfeng Wu, Sridhar Krishnan, Quan Zou");
	result.setValue(TechnicalInformation.Field.TITLE,
			"LibD3C: Ensemble classifiers with a clustering and dynamic selection strategy");
	result.setValue(TechnicalInformation.Field.YEAR, "2013");
	result.setValue(TechnicalInformation.Field.JOURNAL, "Neurocomputing");
	result.setValue(TechnicalInformation.Field.VOLUME, "123");
	result.setValue(TechnicalInformation.Field.PAGES, " 424–435");

	return result;
}
 
开发者ID:guojiasheng,项目名称:LibD3C-1.1,代码行数:15,代码来源:LibD3C.java

示例3: getTechnicalInformation

import weka.core.TechnicalInformation; //导入依赖的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

示例4: getTechnicalInformation

import weka.core.TechnicalInformation; //导入依赖的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

示例5: getTechnicalInformation

import weka.core.TechnicalInformation; //导入依赖的package包/类
@Override
public TechnicalInformation getTechnicalInformation() {
	return Utility.getTechnicalInformation();
}
 
开发者ID:christopher-beckham,项目名称:weka-pyscript,代码行数:5,代码来源:PyScriptClassifier.java

示例6: getTechnicalInformation

import weka.core.TechnicalInformation; //导入依赖的package包/类
/**
 * @return {@inheritDoc}
 * @see weka.core.TechnicalInformationHandler#getTechnicalInformation()
 */
@Override
public TechnicalInformation getTechnicalInformation() {
    TechnicalInformation ti = new TechnicalInformation(TechnicalInformation.Type.BOOK, "skousen1989analogical");
    ti.setValue(TechnicalInformation.Field.TITLE, "Analogical Modeling of Language");
    ti.setValue(TechnicalInformation.Field.AUTHOR, "Skousen, R.");
    ti.setValue(TechnicalInformation.Field.ISBN13, "9780792305170");
    ti.setValue(TechnicalInformation.Field.YEAR, "1989");
    ti.setValue(TechnicalInformation.Field.PUBLISHER, "Kluwer Academic Publishers");
    ti.setValue(TechnicalInformation.Field.ABSTRACT,
                "Review: 'Skousen develops an analogical approach, which is claimed "
                + "to handle not merely cases which are problematic for tructuralist "
                + "approaches, but to be applicable equally to the cases with which "
                + "structuralism is at its best - in short, to be an Einstein to the "
                + "common Newton.This is altogether a stimulating and richly suggestive "
                + "book whose fundamental notions are presented with formal rigour. Other, "
                + "more psychologically adequate, formal analogical theories may be devised, "
                + "but Skousen has shown the way forward.' Artificial Intelligence and "
                + "Stimulation of Behaviour Quarterly, 1990, No. 72"
    );

    TechnicalInformation ti2 = new TechnicalInformation(Type.INBOOK, "skousen2002analogical");
    ti2.setValue(TechnicalInformation.Field.EDITOR, "Skousen, Royal and Lonsdale, Deryle and Parkinson, Dilworth");
    ti2.setValue(TechnicalInformation.Field.YEAR, "2002");
    ti2.setValue(TechnicalInformation.Field.PUBLISHER, "John Benjamins Publishing Company");
    ti2.setValue(TechnicalInformation.Field.TITLE, "Analogical modeling: an exemplar-based approach to language");
    ti2.setValue(TechnicalInformation.Field.AUTHOR, "Theron Stanford");
    ti2.setValue(
        TechnicalInformation.Field.ABSTRACT,
        "Analogical Modeling (AM) is an exemplar-based general theory of description "
        + "that uses both neighbors and non-neighbors (under certain well-defined conditions "
        + "of homogeneity) to predict language behavior. This book provides a basic "
        + "introduction to AM, compares the theory with nearest-neighbor approaches, and "
        + "discusses the most recent advances in the theory, including psycholinguistic "
        + "evidence, applications to specific languages, the problem of categorization, "
        + "and how AM relates to alternative approaches of language description (such as "
        + "instance families, neural nets, connectionism, and optimality theory). The book "
        + "closes with a thorough examination of the problem of the exponential explosion, "
        + "an inherent difficulty in AM (and in fact all theories of language description). "
        + "Quantum computing (based on quantum mechanics with its inherent simultaneity and "
        + "reversibility) provides a precise and natural solution to the exponential explosion "
        + "in AM. Finally, an extensive appendix provides three tutorials for running the AM "
        + "computer program (available online)."
    );
    ti2.setValue(TechnicalInformation.Field.PAGES, "385--409");
    ti2.setValue(TechnicalInformation.Field.ISBN13, "9789027223623");

    TechnicalInformation ti3 = new TechnicalInformation(Type.MISC, "wiki:AnalgocialModeling");
    ti3.setValue(TechnicalInformation.Field.AUTHOR, "Wikipedia");
    ti3.setValue(TechnicalInformation.Field.URL, "http://en.wikipedia.org/wiki/Analogical_modeling");
    ti3.setValue(TechnicalInformation.Field.NOTE, "[Online; accessed 15-June-2012]");
    ti3.setValue(TechnicalInformation.Field.YEAR, "2012");
    ti3.setValue(TechnicalInformation.Field.URL, "http://en.wikipedia.org/wiki/Analogical_modeling");
    ti.add(ti2);
    return ti;
}
 
开发者ID:garfieldnate,项目名称:Weka_AnalogicalModeling,代码行数:60,代码来源:AnalogicalModeling.java

示例7: getTechnicalInformation

import weka.core.TechnicalInformation; //导入依赖的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() {
  return super.getTechnicalInformation();
}
 
开发者ID:mydzigear,项目名称:repo.kmeanspp.silhouette_score,代码行数:11,代码来源:NaiveBayesUpdateable.java


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