[ 
https://issues.apache.org/jira/browse/OPENNLP-789?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17907085#comment-17907085
 ] 

ASF GitHub Bot commented on OPENNLP-789:
----------------------------------------

rzo1 commented on code in PR #200:
URL: https://github.com/apache/opennlp-sandbox/pull/200#discussion_r1892551223


##########
opennlp-wsd/src/main/java/opennlp/tools/disambiguator/Disambiguator.java:
##########
@@ -24,21 +24,29 @@
 import java.util.List;
 
 /**
- * A word sense disambiguator that determines which sense of a word is meant in
- * a particular context. It is a classification task, where the classes are the
- * different senses of the ambiguous word. Disambiguation can be achieved in
- * either supervised or un-supervised approaches. A {@link Disambiguator} 
returns
- * a sense ID.
+ * Describes a word sense disambiguator that determines which sense of a word 
is
+ * meant in a particular context.
+ * It is a classification task, where the classes are the different senses of
+ * the ambiguous word. Disambiguation can be achieved in either supervised or
+ * un-supervised approaches. A {@link Disambiguator} returns a sense ID.
  * <p>
  * <b>How it works:</b><br/>
- * Just supply the context as an array of tokens and the
- * index of the target word to the disambiguate method.
+ * Just supply the {@code context} as an array of tokens and the index of the
+ * {@code target word} to the disambiguate method.
  * <p>
- * Otherwise, for multiple words, you can set a word span instead of simply one
- * index. For the moment the source of sense definitions is from WordNet.
+ * Otherwise, for multiple words, you can set a word {@link Span} instead of
+ * a single target index.
  */
 public interface Disambiguator {
 
+  /**
+   * Conducts disambiguation for a {@link WSDSample} context.
+   *
+   * @param sample    The {@link WSDSample} containing the word and POS tags 
to use.

Review Comment:
   null allowed here?





> Extend JavaDoc for WSD component
> --------------------------------
>
>                 Key: OPENNLP-789
>                 URL: https://issues.apache.org/jira/browse/OPENNLP-789
>             Project: OpenNLP
>          Issue Type: Improvement
>          Components: wsd
>            Reporter: Jörn Kottmann
>            Assignee: Martin Wiesner
>            Priority: Major
>              Labels: wsd
>             Fix For: 2.5.2
>
>
> The WSDisambiguator is the main interface for the wsd component. It should 
> have much more javadocs explaining what it does and what wsd is.
> Additionally add at least short javadocs to each class and method in the 
> disambiguator package. One sentence is the minimum here.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

Reply via email to