Examples of TechnicalInformation


Examples of repository.relsys.domainmodel.ltool.interfaces.TechnicalInformation

      GeneralInformation gi = new GeneralInformationCls();
      gi.setDescription("WordPress is ...");
      gi.setToolURL("http://www.wordpress.com");

      TechnicalInformation ti = new TechnicalInformationCls();
      ti.setLaunchedTime("12-01-2001");
      ti.setVersion("2.9");
      ti.registration(true);
      ti.isOpenSource(false);

      Collection<Feature> features = new LinkedList<Feature>();
      Blog blog = new BlogCls();
      ContactList folowers = new ContactListCls();
      features.add(blog);
View Full Code Here

Examples of repository.relsys.domainmodel.ltool.interfaces.TechnicalInformation

    gi.setToolCost(ToolCostCls.FREE);
    gi.setToolAvailability(ToolAvailabilityCls.HOSTED);

    ltool.setGeneralInfo(gi);

    TechnicalInformation ti = new TechnicalInformationCls();
    ti.setLaunchedTime("12-01-2001");
    ti.setVersion("2.9");
    ti.registration(true);
    ti.isOpenSource(false);
    ti.addMD(MobileDeviceCls.BLACKBERRY);
    ti.addMD(MobileDeviceCls.ANDROID);
    ti.addMD(MobileDeviceCls.IPHONE);
    ti.addOS(OperetingSystemCls.LINUX);
    ti.addOS(OperetingSystemCls.WINDOWS);
    ti.addOS(OperetingSystemCls.MAC);

    ltool.setTechnicalInfo(ti);

    Collection<Feature> features = new LinkedList<Feature>();
    Blog blog = new BlogCls();
View Full Code Here

Examples of repository.relsys.domainmodel.ltool.interfaces.TechnicalInformation

    gi1.setToolCost(ToolCostCls.FREE);
    gi1.setToolAvailability(ToolAvailabilityCls.HOSTED);

    ltool1.setGeneralInfo(gi1);

    TechnicalInformation ti1 = new TechnicalInformationCls();
    ti1.setLaunchedTime("12-01-2001");
    ti1.setVersion("2.9");
    ti1.registration(true);
    ti1.isOpenSource(false);
    ti1.addMD(MobileDeviceCls.BLACKBERRY);
    ti1.addMD(MobileDeviceCls.ANDROID);
    ti1.addMD(MobileDeviceCls.IPHONE);
    ti1.addOS(OperetingSystemCls.LINUX);
    ti1.addOS(OperetingSystemCls.WINDOWS);
    ti1.addOS(OperetingSystemCls.MAC);

    ltool1.setTechnicalInfo(ti1);

    Collection<Feature> features = new LinkedList<Feature>();
    Blog blog = new BlogCls();
    ContactList folowers = new ContactListCls();
    features.add(blog);
    features.add(folowers);

    ltool1.setFeatures(features);

    LearningToolCls ltool2 = new LearningToolCls();
    ltool2.setTitle("Facebook");

    GeneralInformation gi2 = new GeneralInformationCls();

    gi2.setDescription("Facebook is ...");
    gi2.setToolURL("http://www.facebook.com");
    gi2.setToolCost(ToolCostCls.FREE);
    gi2.setToolAvailability(ToolAvailabilityCls.HOSTED);

    ltool2.setGeneralInfo(gi2);

    TechnicalInformation ti2 = new TechnicalInformationCls();
    ti2.setLaunchedTime("12-01-2001");
    ti2.setVersion("2.9");
    ti2.registration(true);
    ti2.isOpenSource(false);
    ti2.addMD(MobileDeviceCls.BLACKBERRY);
    ti2.addMD(MobileDeviceCls.ANDROID);
    ti2.addMD(MobileDeviceCls.IPHONE);
    ti2.addOS(OperetingSystemCls.LINUX);
    ti2.addOS(OperetingSystemCls.WINDOWS);
    ti2.addOS(OperetingSystemCls.MAC);

    ltool2.setTechnicalInfo(ti2);

    Collection<Feature> facefeatures = new LinkedList<Feature>();
    UserProfileManagement upm = new UserProfileManagementCls();
View Full Code Here

Examples of weka.core.TechnicalInformation

   * 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, "Ron Kohavi and George H. John");
    result.setValue(Field.YEAR, "1997");
    result.setValue(Field.TITLE, "Wrappers for feature subset selection");
    result.setValue(Field.JOURNAL, "Artificial Intelligence");
    result.setValue(Field.VOLUME, "97");
    result.setValue(Field.NUMBER, "1-2");
    result.setValue(Field.PAGES, "273-324");
    result.setValue(Field.NOTE, "Special issue on relevance");
    result.setValue(Field.ISSN, "0004-3702");
   
    return result;
  }
View Full Code Here

Examples of weka.core.TechnicalInformation

   * 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, "R.C. Holte");
    result.setValue(Field.YEAR, "1993");
    result.setValue(Field.TITLE, "Very simple classification rules perform well on most commonly used datasets");
    result.setValue(Field.JOURNAL, "Machine Learning");
    result.setValue(Field.VOLUME, "11");
    result.setValue(Field.PAGES, "63-91");
   
    return result;
  }
View Full Code Here

Examples of weka.core.TechnicalInformation

   * 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.INPROCEEDINGS);
    result.setValue(Field.AUTHOR, "R. Agrawal and R. Srikant");
    result.setValue(Field.TITLE, "Fast Algorithms for Mining Association Rules in Large Databases");
    result.setValue(Field.BOOKTITLE, "20th International Conference on Very Large Data Bases");
    result.setValue(Field.YEAR, "1994");
    result.setValue(Field.PAGES, "478-499");
    result.setValue(Field.PUBLISHER, "Morgan Kaufmann, Los Altos, CA");

    additional = result.add(Type.INPROCEEDINGS);
    additional.setValue(Field.AUTHOR, "Bing Liu and Wynne Hsu and Yiming Ma");
    additional.setValue(Field.TITLE, "Integrating Classification and Association Rule Mining");
    additional.setValue(Field.BOOKTITLE, "Fourth International Conference on Knowledge Discovery and Data Mining");
    additional.setValue(Field.YEAR, "1998");
    additional.setValue(Field.PAGES, "80-86");
    additional.setValue(Field.PUBLISHER, "AAAI Press");
   
    return result;
  }
View Full Code Here

Examples of weka.core.TechnicalInformation

   * 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;
  }
View Full Code Here

Examples of weka.core.TechnicalInformation

   * 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.BOOK);
    result.setValue(Field.AUTHOR, "Peter J. Rousseeuw and Annick M. Leroy");
    result.setValue(Field.YEAR, "1987");
    result.setValue(Field.TITLE, "Robust regression and outlier detection");
   
    return result;
  }
View Full Code Here

Examples of weka.core.TechnicalInformation

   * 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.PHDTHESIS);
    result.setValue(Field.AUTHOR, "Wang, Y");
    result.setValue(Field.YEAR, "2000");
    result.setValue(Field.TITLE, "A new approach to fitting linear models in high dimensional spaces");
    result.setValue(Field.SCHOOL, "Department of Computer Science, University of Waikato");
    result.setValue(Field.ADDRESS, "Hamilton, New Zealand");

    additional = result.add(Type.INPROCEEDINGS);
    additional.setValue(Field.AUTHOR, "Wang, Y. and Witten, I. H.");
    additional.setValue(Field.YEAR, "2002");
    additional.setValue(Field.TITLE, "Modeling for optimal probability prediction");
    additional.setValue(Field.BOOKTITLE, "Proceedings of the Nineteenth International Conference in Machine Learning");
    additional.setValue(Field.YEAR, "2002");
    additional.setValue(Field.PAGES, "650-657");
    additional.setValue(Field.ADDRESS, "Sydney, Australia");
   
    return result;
  }
View Full Code Here

Examples of weka.core.TechnicalInformation

   * 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(TechnicalInformation.Field.AUTHOR, "Rong-En Fan and Kai-Wei Chang and Cho-Jui Hsieh and Xiang-Rui Wang and Chih-Jen Lin");
    result.setValue(TechnicalInformation.Field.TITLE, "LIBLINEAR - A Library for Large Linear Classification");
    result.setValue(TechnicalInformation.Field.YEAR, "2008");
    result.setValue(TechnicalInformation.Field.URL, "http://www.csie.ntu.edu.tw/~cjlin/liblinear/");
    result.setValue(TechnicalInformation.Field.NOTE, "The Weka classifier works with version 1.33 of LIBLINEAR");

    return result;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.