Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
csep517p4-public
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
csep517-15au
csep517p4-public
Commits
58ee7e1b
Commit
58ee7e1b
authored
9 years ago
by
Renat Bekbolatov
Browse files
Options
Downloads
Patches
Plain Diff
added MONO_GREEDY
parent
d2933826
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
README.md
+6
-0
6 additions, 0 deletions
README.md
pom.xml
+34
-0
34 additions, 0 deletions
pom.xml
with
40 additions
and
0 deletions
README.md
+
6
−
0
View file @
58ee7e1b
...
...
@@ -16,6 +16,12 @@ mvn package
### Testing
To test decoders:
Monotonic and greedy:
```
mvn test -P MONO_GREEDY
```
Monotonic without language model:
...
...
This diff is collapsed.
Click to expand it.
pom.xml
+
34
−
0
View file @
58ee7e1b
...
...
@@ -51,6 +51,40 @@
</dependencies>
<profiles>
<profile>
<id>
MONO_GREEDY
</id>
<build>
<plugins>
<plugin>
<groupId>
org.codehaus.mojo
</groupId>
<artifactId>
exec-maven-plugin
</artifactId>
<version>
1.2.1
</version>
<executions>
<execution>
<phase>
test
</phase>
<goals>
<goal>
exec
</goal>
</goals>
<configuration>
<executable>
java
</executable>
<arguments>
<argument>
-server
</argument>
<argument>
-mx2000m
</argument>
<argument>
-classpath
</argument>
<classpath/>
<argument>
edu.berkeley.nlp.assignments.decoding.MtDecoderTester
</argument>
<argument>
-path
</argument>
<argument>
data
</argument>
<argument>
-decoderType
</argument>
<argument>
MONO_GREEDY
</argument>
</arguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>
MONO_NOLM
</id>
<build>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment