本文整理汇总了Java中weka.core.TechnicalInformation.Type.MISC属性的典型用法代码示例。如果您正苦于以下问题:Java Type.MISC属性的具体用法?Java Type.MISC怎么用?Java Type.MISC使用的例子?那么, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类weka.core.TechnicalInformation.Type
的用法示例。
在下文中一共展示了Type.MISC属性的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getTechnicalInformation
/**
* 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;
}
示例2: getTechnicalInformation
/**
* 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;
}
示例3: getTechnicalInformation
/**
* 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;
}
示例4: getTechnicalInformation
/**
* 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;
}
示例5: getTechnicalInformation
/**
* 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;
}
示例6: getTechnicalInformation
/**
* @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;
}