/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.lucene.classification; import org.apache.lucene.analysis.Analyzer; import org.apache.lucene.index.AtomicReader; import org.apache.lucene.search.Query; import java.io.IOException; /** * A classifier, see <code>http://en.wikipedia.org/wiki/Classifier_(mathematics)</code>, which assign classes of type * <code>T</code> * @lucene.experimental */ public interface Classifier<T> { /** * Assign a class (with score) to the given text String * @param text a String containing text to be classified * @return a {@link ClassificationResult} holding assigned class of type <code>T</code> and score * @throws IOException If there is a low-level I/O error. */ public ClassificationResult<T> assignClass(String text) throws IOException; /** * Train the classifier using the underlying Lucene index * @param atomicReader the reader to use to access the Lucene index * @param textFieldName the name of the field used to compare documents * @param classFieldName the name of the field containing the class assigned to documents * @param analyzer the analyzer used to tokenize / filter the unseen text * @throws IOException If there is a low-level I/O error. */ public void train(AtomicReader atomicReader, String textFieldName, String classFieldName, Analyzer analyzer) throws IOException; /** * Train the classifier using the underlying Lucene index * @param atomicReader the reader to use to access the Lucene index * @param textFieldName the name of the field used to compare documents * @param classFieldName the name of the field containing the class assigned to documents * @param analyzer the analyzer used to tokenize / filter the unseen text * @param query the query to filter which documents use for training * @throws IOException If there is a low-level I/O error. */ public void train(AtomicReader atomicReader, String textFieldName, String classFieldName, Analyzer analyzer, Query query) throws IOException; /** * Train the classifier using the underlying Lucene index * @param atomicReader the reader to use to access the Lucene index * @param textFieldNames the names of the fields to be used to compare documents * @param classFieldName the name of the field containing the class assigned to documents * @param analyzer the analyzer used to tokenize / filter the unseen text * @param query the query to filter which documents use for training * @throws IOException If there is a low-level I/O error. */ public void train(AtomicReader atomicReader, String[] textFieldNames, String classFieldName, Analyzer analyzer, Query query) throws IOException; }