You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@joshua.apache.org by mj...@apache.org on 2016/04/24 22:53:32 UTC

[11/18] incubator-joshua git commit: too much stderr!

too much stderr!


Project: http://git-wip-us.apache.org/repos/asf/incubator-joshua/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-joshua/commit/2fa4b42a
Tree: http://git-wip-us.apache.org/repos/asf/incubator-joshua/tree/2fa4b42a
Diff: http://git-wip-us.apache.org/repos/asf/incubator-joshua/diff/2fa4b42a

Branch: refs/heads/morph
Commit: 2fa4b42abdfa554ae6f04c791e38f468bf6851d0
Parents: c30bddb
Author: Matt Post <po...@cs.jhu.edu>
Authored: Fri Apr 22 23:55:56 2016 -0400
Committer: Matt Post <po...@cs.jhu.edu>
Committed: Fri Apr 22 23:55:56 2016 -0400

----------------------------------------------------------------------
 src/joshua/decoder/ff/LexicalSharpener.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/2fa4b42a/src/joshua/decoder/ff/LexicalSharpener.java
----------------------------------------------------------------------
diff --git a/src/joshua/decoder/ff/LexicalSharpener.java b/src/joshua/decoder/ff/LexicalSharpener.java
index b8f0c39..22662a8 100644
--- a/src/joshua/decoder/ff/LexicalSharpener.java
+++ b/src/joshua/decoder/ff/LexicalSharpener.java
@@ -166,7 +166,7 @@ public class LexicalSharpener extends StatelessFF {
       String sourceWord = Vocabulary.word(sourceToken.getWord());
       String featureString = sourceToken.getAnnotationString().replace('|', ' ');
       
-      System.err.println(String.format("%s: %s -> %s?",  name, sourceWord, targetWord));
+//      System.err.println(String.format("%s: %s -> %s?",  name, sourceWord, targetWord));
       Classification result = predict(sourceWord, targetWord, featureString);
       if (result != null) {
         Labeling labeling = result.getLabeling();