
it.unitn.disi.nlptools.pipelines.LabelPipeline Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of s-match Show documentation
Show all versions of s-match Show documentation
A version of S-Match semantic matching framework for Open Data
The newest version!
package it.unitn.disi.nlptools.pipelines;
import it.unitn.disi.common.pipelines.BasePipeline;
import it.unitn.disi.nlptools.ILabelPipeline;
import it.unitn.disi.nlptools.components.PipelineComponentException;
import it.unitn.disi.nlptools.data.ILabel;
import it.unitn.disi.nlptools.data.Label;
/**
* Label processing pipeline.
*
* @author Aliaksandr Autayeu
*/
public class LabelPipeline extends BasePipeline implements ILabelPipeline {
public ILabel process(String label) throws PipelineComponentException {
ILabel result = new Label(label);
process(result);
return result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy