weka.core.TechnicalInformation Java Examples
The following examples show how to use
weka.core.TechnicalInformation.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: GeneralizedSequentialPatterns.java From tsml with GNU General Public License v3.0 | 5 votes |
/** * 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; }
Example #2
Source File: SMOTE.java From tsml with GNU General Public License v3.0 | 5 votes |
/** * 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; }
Example #3
Source File: TAA.java From tsml with GNU General Public License v3.0 | 4 votes |
@Override public TechnicalInformation getTechnicalInformation() { return null; }
Example #4
Source File: NaiveBayesUpdateable.java From tsml with GNU General Public License v3.0 | 2 votes |
/** * 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(); }