gate.plugin.python.pipelines.PipelinePythonStanfordStanza Maven / Gradle / Ivy
/*
* Copyright (c) 2019 The University of Sheffield.
*
* This file is part of gateplugin-Python
* (see https://github.com/GateNLP/gateplugin-Python).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see .
*/
package gate.plugin.python.pipelines;
import gate.creole.PackagedController;
import gate.creole.metadata.AutoInstance;
import gate.creole.metadata.AutoInstanceParam;
import gate.creole.metadata.CreoleResource;
/**
* Class for providing the ready made application.
* @author Johann Petrak, [email protected]
*/
@CreoleResource(
name = "python-stanford-stanza",
comment = "Example pipeline to run Python Stanford Stanza on documents",
icon = "gateplugin-Python",
autoinstances = @AutoInstance(parameters = {
@AutoInstanceParam(name="pipelineURL", value="resources/pipelines/python-stanford-stanza.xgapp"),
@AutoInstanceParam(name="menu", value="Python")}))
public class PipelinePythonStanfordStanza extends PackagedController {
private static final long serialVersionUID = -189219845555424276L;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy