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