Yes, ofcourse. The file is axEntClassificationEDA_Base+OpenNLP_EN.xml and following is the content:
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE configuration [
<!ENTITY myVar "Some common #PCDATA that can be reused... ">
]>
<!--
Description: Given a certain configuration, the EDA - named MaxEntClassificationEDA -
can be trained over a specific data set in order to optimize its performance based on Maximum Entropy Modeling.
MaxEntClassificationEDA learns a binary classifier for deciding the entailment problem. The supervised learner
receives a number of features which are provided through the interplay of different processing components and
knowledge sources. A configuration file, like this, specifies these components and knowledge sources together
with settings of the learner.
The common structure of a configuration file for MaxEntClassificationEDA is as follows (for further detail
- It begins with a specification of platform specific settings in the section "PlatformConfiguration" for
selecting the EDA, the language and eventually the LPA (Linguistic Pipeline Analysis).
- It follows the names of the processing components to use, where for each component a separate section is
defined.
- As minimal configuration the base processing components named "BagOfWordsScoring" and "BagOfLemmasScoring"
have to be specified, which provide bag of words and bag of lemmas features.
- If a processing component also makes use of a knowledge base, then this knowledge base has to be introduced
via its own section and referenced via the "name" parameter in the corresponding processing component
that uses this knowledge base.
- Finally, the parameters for the learning and application phases of the activated EDA have to be specified viz.
the model file, locations of training and test data, control parameters for the classifier,
and the list of components to run.
Note, that the name of the EDA in the "activatedEDA" property of the "PlatformConfiguration" and the name
of this last section must be equal.
-->
<configuration>
<section name="PlatformConfiguration">
<property name="activatedEDA">eu.excitementproject.eop.core.MaxEntClassificationEDA</property>
<property name="language">EN</property>
<property name="activatedLAP">eu.excitementproject.eop.lap.dkpro.OpenNLPTaggerEN</property>
</section>
<section name="BagOfWordsScoring">
</section>
<section name="eu.excitementproject.eop.core.MaxEntClassificationEDA">
<property name="modelFile">eop-resources-1.2.3/model/MaxEntClassificationEDAModel_Base+OpenNLP_EN</property>
<property name="trainDir">/tmp/EN/dev1/</property>
<property name="testDir">/tmp/EN/test1/</property>
<property name="classifier">10000,1</property>
<property name="Components">BagOfWordsScoring</property>
</section>
</configuration>