Examples of printInfo()


Examples of ca.carleton.gcrc.couch.date.impl.SerializableToInfo.printInfo()

  }

  public void getInfo(PrintWriter pw) throws Exception {
    if( dateSource instanceof SerializableToInfo ){
      SerializableToInfo infoSource = (SerializableToInfo)dateSource;
      infoSource.printInfo(pw);
    }
  }

  public void getDotInfo(PrintWriter pw) throws Exception {
    if( dateSource instanceof SerializableToDot ){
View Full Code Here

Examples of com.clearnlp.classification.model.StringModelAD.printInfo()

    for (i=0; i<modelSize; i++)
    {
      eTrain = (Element)eTrains.item(i);
      model = models[i];
      model.build(getLabelCutoff(eTrain), getFeatureCutoff(eTrain), getRandomSeed(eTrain), true);
      model.printInfo(LOG);
     
      nIterations = getNumberOfIterations(eTrain, boot);
      algorithm = getAlgorithm(eTrain);
      trainOnline(model, algorithm, nIterations);
    }
View Full Code Here

Examples of com.clearnlp.classification.model.StringModelAD.printInfo()

    for (i=0; i<modelSize; i++)
    {
      eTrain = (Element)eTrains.item(i);
      model = models[i];
      model.build(getLabelCutoff(eTrain), getFeatureCutoff(eTrain), getRandomSeed(eTrain), true);
      model.printInfo(LOG);
     
      algorithm = getAlgorithm(eTrain);
      output = developOnline(developFiles, reader, component, model, algorithm, bootstrapScore, flag);
    }
   
View Full Code Here

Examples of edu.pitt.dbmi.nlp.noble.terminology.Concept.printInfo()

    long time = System.currentTimeMillis();
    // ZFA_0001234 | C0025202
    System.out.println("--- lookup ---");
    Concept c = term.lookupConcept("C0025202");
    if(c != null){
      c.printInfo(System.out);
    }
   
    System.out.println("lookup time "+(System.currentTimeMillis()-time));
   
    System.out.println("--- search ---");
View Full Code Here

Examples of edu.pitt.dbmi.nlp.noble.terminology.Concept.printInfo()

      System.out.println(ont.getRoot()+" : "+Arrays.toString(ont.getRootClasses()));
      IClass [] clses = new IClass [] { ont.getClass("Melanoma") };
      for(IClass cls :clses){
        System.out.println(cls+" "+cls.getLocation());
        Concept c = cls.getConcept();
        c.printInfo(System.out);
      }
    }
  }
 
 
View Full Code Here

Examples of edu.pitt.dbmi.nlp.noble.terminology.Concept.printInfo()

    long time = System.currentTimeMillis();
    // ZFA_0001234 | C0025202
    System.out.println("--- lookup ---");
    Concept c = term.lookupConcept("C0025202");
    if(c != null){
      c.printInfo(System.out);
    }
    System.out.println("lookup time "+(System.currentTimeMillis()-time));
   
    System.out.println("--- search ---");
   
View Full Code Here

Examples of edu.pitt.dbmi.nlp.noble.terminology.Concept.printInfo()

    Terminology term = new UMLSTerminology("oracle.jdbc.driver.OracleDriver",
        "jdbc:oracle:thin:@lnx01.dbmi.pitt.edu:1521:dbmi01", "umls","dbmi09umls");
   
    // lookup concept
    Concept melanoma = term.lookupConcept("C0025202");
    melanoma.printInfo(System.out);
    term.setFilterSources(term.getSources("NCI"));
    System.out.println("--");
    // do search
    long time = System.currentTimeMillis();
    for(String text: new String [] {"blue tumor"}){
View Full Code Here

Examples of edu.pitt.terminology.lexicon.Concept.printInfo()

    long time = System.currentTimeMillis();
    // ZFA_0001234 | C0025202
    System.out.println("--- lookup ---");
    Concept c = term.lookupConcept("C0025202");
    if(c != null){
      c.printInfo(System.out);
    }
    System.out.println("lookup time "+(System.currentTimeMillis()-time));
   
    System.out.println("--- search ---");
   
View Full Code Here

Examples of edu.pitt.terminology.lexicon.Concept.printInfo()

    Terminology term = new UMLSTerminology("oracle.jdbc.driver.OracleDriver",
        "jdbc:oracle:thin:@lnx01.dbmi.pitt.edu:1521:dbmi01", "umls","dbmi09umls");
   
    // lookup concept
    Concept melanoma = term.lookupConcept("C0025202");
    melanoma.printInfo(System.out);
    term.setFilterSources(term.getSources("NCI"));
    System.out.println("--");
    // do search
    long time = System.currentTimeMillis();
    for(String text: new String [] {"blue tumor"}){
View Full Code Here

Examples of edu.pitt.terminology.lexicon.Concept.printInfo()

    long time = System.currentTimeMillis();
    // ZFA_0001234 | C0025202
    System.out.println("--- lookup ---");
    Concept c = term.lookupConcept("C0025202");
    if(c != null){
      c.printInfo(System.out);
    }
   
    System.out.println("lookup time "+(System.currentTimeMillis()-time));
   
    System.out.println("--- search ---");
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.