Skip to content

Commit

Permalink
fixed javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
sven-h committed Sep 10, 2023
1 parent 32da424 commit 7c750bd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ public class LLMBinaryFilter extends LLMBase implements Filter {
private static final Logger LOGGER = LoggerFactory.getLogger(LLMBinaryFilter.class);

/**
* Set of positive words to use. Default is "yes" (and some variations of it (generated with {@link #includeMoreVariations(java.util.Set))
* Set of positive words to use. Default is "yes" (and some variations of it (generated with {@link #includeMoreVariations(java.util.Set)})
*/
protected Set<String> positiveWords;

/**
* Set of negative words to use. Default is "no" (and some variations of it (generated with {@link #includeMoreVariations(java.util.Set))
* Set of negative words to use. Default is "no" (and some variations of it (generated with {@link #includeMoreVariations(java.util.Set)})
*/
protected Set<String> negativeWords;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ public int getMaximumPerDeviceTrainBatchSize (File trainingFile){
/**
* This will add (potencially multiple) training parameters to the current {@link TransformersBase#trainingArguments trainingArguments}
* to make the training faster. Thus do not change the trainingArguments object afterwards
* (with {@link TransformersBase#setTrainingArguments(de.uni_mannheim.informatik.dws.melt.matching_ml.python.nlptransformers.TransformersTrainerArguments) setTrainingArguments} ).
* (with {@link TransformersBase#setTrainingArguments(de.uni_mannheim.informatik.dws.melt.matching_ml.python.nlptransformers.TransformersArguments) setTrainingArguments} ).
* What you can do is to add more training arguments via getTrainingArguments.addParameter (as long as you do not modify any parameters added by this method).
* The following parameters are set:
* <ul>
Expand Down

0 comments on commit 7c750bd

Please sign in to comment.