Java Code Examples for weka.core.TechnicalInformation.Type#MISC
The following examples show how to use
weka.core.TechnicalInformation.Type#MISC .
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: EuclideanDistance.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 */ @Override 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; }
Example 2
Source File: MinkowskiDistance.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; 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; }
Example 3
Source File: ChebyshevDistance.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; 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; }
Example 4
Source File: ManhattanDistance.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; 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; }