Package org.terrier.terms

Examples of org.terrier.terms.SkipTermPipeline


      }
    }
    String skipTerms = null;
    //add SkipTermPipeline as the first pipeline step to allow for special terms to skip the pipeline processing sequence
    if ((skipTerms = ApplicationSetup.getProperty("termpipelines.skip", null)) != null && skipTerms.trim().length() > 0)
      pipeline_first = new SkipTermPipeline(next, last);
    else
      pipeline_first = next;
  }
View Full Code Here

TOP

Related Classes of org.terrier.terms.SkipTermPipeline

Copyright © 2018 www.massapicom. 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.