-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#53 - Update documentation for 2nd release
- adding documentation for variable detection module
- Loading branch information
Showing
3 changed files
with
123 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
ss-variable-detection/src/test/resources/installation/resources.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd"> | ||
<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"></bean> | ||
<bean id="wordnet-en" lazy-init="true" class="de.tudarmstadt.ukp.dkpro.lexsemresource.wordnet.WordNetResource"> | ||
<constructor-arg value="${DKPRO_HOME}/LexSemResources/wordnet/wordnet_properties.xml"/> | ||
</bean> | ||
<bean id="wiktionary-en" lazy-init="true" class="de.tudarmstadt.ukp.dkpro.lexsemresource.wiktionary.WiktionaryResource"> | ||
<constructor-arg value="ENGLISH"/> | ||
<constructor-arg value="${DKPRO_HOME}/LexSemResources/Wiktionary/jwktl_0.15.2_en20100403"/> | ||
</bean> | ||
</beans> |
56 changes: 56 additions & 0 deletions
56
ss-variable-detection/src/test/resources/installation/wordnet_properties.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<!-- This is a sample extJWNL properties file which you can adapt. --> | ||
|
||
<jwnl_properties language="en"> | ||
<version publisher="Princeton" number="3.0" language="en"/> | ||
<dictionary class="net.sf.extjwnl.dictionary.FileBackedDictionary"> | ||
<param name="morphological_processor" value="net.sf.extjwnl.dictionary.morph.DefaultMorphologicalProcessor"> | ||
<param name="operations"> | ||
<param value="net.sf.extjwnl.dictionary.morph.LookupExceptionsOperation"/> | ||
<param value="net.sf.extjwnl.dictionary.morph.DetachSuffixesOperation"> | ||
<param name="noun" value="|s=|ses=s|xes=x|zes=z|ches=ch|shes=sh|men=man|ies=y|"/> | ||
<param name="verb" value="|s=|ies=y|es=e|es=|ed=e|ed=|ing=e|ing=|"/> | ||
<param name="adjective" value="|er=|est=|er=e|est=e|"/> | ||
<param name="operations"> | ||
<param value="net.sf.extjwnl.dictionary.morph.LookupIndexWordOperation"/> | ||
<param value="net.sf.extjwnl.dictionary.morph.LookupExceptionsOperation"/> | ||
</param> | ||
</param> | ||
<param value="net.sf.extjwnl.dictionary.morph.TokenizerOperation"> | ||
<param name="delimiters"> | ||
<param value=" "/> | ||
<param value="-"/> | ||
</param> | ||
<param name="token_operations"> | ||
<param value="net.sf.extjwnl.dictionary.morph.LookupIndexWordOperation"/> | ||
<param value="net.sf.extjwnl.dictionary.morph.LookupExceptionsOperation"/> | ||
<param value="net.sf.extjwnl.dictionary.morph.DetachSuffixesOperation"> | ||
<param name="noun" value="|s=|ses=s|xes=x|zes=z|ches=ch|shes=sh|men=man|ies=y|"/> | ||
<param name="verb" value="|s=|ies=y|es=e|es=|ed=e|ed=|ing=e|ing=|"/> | ||
<param name="adjective" value="|er=|est=|er=e|est=e|"/> | ||
<param name="operations"> | ||
<param value="net.sf.extjwnl.dictionary.morph.LookupIndexWordOperation"/> | ||
<param value="net.sf.extjwnl.dictionary.morph.LookupExceptionsOperation"/> | ||
</param> | ||
</param> | ||
</param> | ||
</param> | ||
</param> | ||
</param> | ||
<param name="dictionary_element_factory" | ||
value="net.sf.extjwnl.princeton.data.PrincetonWN17FileDictionaryElementFactory"/> | ||
<param name="file_manager" value="net.sf.extjwnl.dictionary.file_manager.FileManagerImpl"> | ||
<param name="file_type" value="net.sf.extjwnl.princeton.file.PrincetonRandomAccessDictionaryFile"> | ||
<!--<param name="write_princeton_header" value="true"/>--> | ||
<!--<param name="encoding" value="UTF-8"/>--> | ||
</param> | ||
<!--<param name="cache_use_count" value="true"/>--> | ||
|
||
<!-- Change the following path to point to your WordNet installation --> | ||
<param name="dictionary_path" value="/home/local/UKP/kiaeeha/DKPRO_HOME/LexSemResources/wordnet/dict"/> | ||
|
||
</param> | ||
</dictionary> | ||
<resource class="net.sf.extjwnl.princeton.PrincetonResource"/> | ||
</jwnl_properties> |