[ 
https://issues.apache.org/jira/browse/CTAKES-299?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

James Joseph Masanz resolved CTAKES-299.
----------------------------------------
       Resolution: Fixed
         Assignee: James Joseph Masanz
    Fix Version/s: 4.0.0

> cannot configure ClearNLPSemanticRoleLabelerAE using XML descriptor
> -------------------------------------------------------------------
>
>                 Key: CTAKES-299
>                 URL: https://issues.apache.org/jira/browse/CTAKES-299
>             Project: cTAKES
>          Issue Type: Bug
>          Components: ctakes-dependency-parser
>    Affects Versions: 3.1.1
>            Reporter: Mats Henrikson
>            Assignee: James Joseph Masanz
>             Fix For: 4.0.0
>
>
> Due to a bug in 
> {{org.apache.ctakes.dependency.parser.ae.ClearNLPSemanticRoleLabelerAE}} it 
> is not possible to configure it using an XML descriptor file.
> Unfortunately the 3 {{@ConfigurationParameter}} fields are configure but 
> never read. For example:
> {code:java}
>   @ConfigurationParameter(
>                 name = PARAM_PARSER_MODEL_FILE_NAME,
>                 ...)
>   private String parserModelFileName;
> {code}
> The field {{parserModelFileName}} is then never read again when trying to 
> load the configured file, instead the field {{this.srlPredUri}} is checked:
> {code:java}
>       InputStream srlPred = (this.srlPredUri == null)
>                 ? FileLocator.getAsStream(DEFAULT_PRED_MODEL_FILE_NAME)
>                 : FileLocator.getAsStream(this.srlPredUri.getPath());
> {code}
> Please change the 3 {{@ConfigurationParameter}} annotations to be on the 
> fields that are then used to configure the class (similar to how 
> {{ClearNLPDependencyParserAE}} is configured.) 



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

Reply via email to