Uses of Class
org.languagetool.rules.spelling.suggestions.SuggestionChangesExperiment
-
Packages that use SuggestionChangesExperiment Package Description org.languagetool.rules.spelling.suggestions -
-
Uses of SuggestionChangesExperiment in org.languagetool.rules.spelling.suggestions
Fields in org.languagetool.rules.spelling.suggestions declared as SuggestionChangesExperiment Modifier and Type Field Description private SuggestionChangesExperiment
SuggestionsChanges. currentExperiment
Fields in org.languagetool.rules.spelling.suggestions with type parameters of type SuggestionChangesExperiment Modifier and Type Field Description private java.util.concurrent.ConcurrentMap<SuggestionChangesExperiment,java.lang.Long>
SuggestionsChanges. computationTime
private java.util.concurrent.ConcurrentMap<SuggestionChangesExperiment,java.lang.Integer>
SuggestionsChanges. correctSuggestions
private java.util.concurrent.ConcurrentMap<org.apache.commons.lang3.tuple.Pair<SuggestionChangesExperiment,SuggestionChangesDataset>,java.lang.Long>
SuggestionsChanges. datasetComputationTime
private java.util.concurrent.ConcurrentMap<org.apache.commons.lang3.tuple.Pair<SuggestionChangesExperiment,SuggestionChangesDataset>,java.lang.Integer>
SuggestionsChanges. datasetCorrectSuggestions
private java.util.concurrent.ConcurrentMap<org.apache.commons.lang3.tuple.Pair<SuggestionChangesExperiment,SuggestionChangesDataset>,java.lang.Integer>
SuggestionsChanges. datasetNotFoundSuggestions
private java.util.concurrent.ConcurrentMap<org.apache.commons.lang3.tuple.Pair<SuggestionChangesExperiment,SuggestionChangesDataset>,java.lang.Integer>
SuggestionsChanges. datasetNumSamples
private java.util.concurrent.ConcurrentMap<org.apache.commons.lang3.tuple.Pair<SuggestionChangesExperiment,SuggestionChangesDataset>,java.lang.Integer>
SuggestionsChanges. datasetSuggestionPosSum
private java.util.concurrent.ConcurrentMap<org.apache.commons.lang3.tuple.Pair<SuggestionChangesExperiment,SuggestionChangesDataset>,java.lang.Integer>
SuggestionsChanges. datasetTextSize
private java.util.List<SuggestionChangesExperiment>
SuggestionsChanges. experiments
private java.util.concurrent.ConcurrentMap<SuggestionChangesExperiment,java.lang.Integer>
SuggestionsChanges. notFoundSuggestions
private java.util.concurrent.ConcurrentMap<SuggestionChangesExperiment,java.lang.Integer>
SuggestionsChanges. numSamples
private java.util.concurrent.ConcurrentMap<SuggestionChangesExperiment,java.lang.Integer>
SuggestionsChanges. suggestionPosSum
private java.util.concurrent.ConcurrentMap<SuggestionChangesExperiment,java.lang.Integer>
SuggestionsChanges. textSize
Methods in org.languagetool.rules.spelling.suggestions that return SuggestionChangesExperiment Modifier and Type Method Description @Nullable SuggestionChangesExperiment
SuggestionsChanges. getCurrentExperiment()
Methods in org.languagetool.rules.spelling.suggestions that return types with arguments of type SuggestionChangesExperiment Modifier and Type Method Description private java.util.List<SuggestionChangesExperiment>
SuggestionsChanges. generateExperiments(java.util.List<SuggestionChangesExperimentRuns> experimentSpecs)
java.util.List<SuggestionChangesExperiment>
SuggestionsChanges. getExperiments()
Methods in org.languagetool.rules.spelling.suggestions with parameters of type SuggestionChangesExperiment Modifier and Type Method Description void
SuggestionsChanges. setCurrentExperiment(@Nullable SuggestionChangesExperiment experiment)
For testing changes to suggestion ordering using a data corpus; iterate over experiments (including grid search for parameters) original behavior (for A/B testing) can be modeled by an experiment without parameters and an arbitrary nameMethod parameters in org.languagetool.rules.spelling.suggestions with type arguments of type SuggestionChangesExperiment Modifier and Type Method Description void
SuggestionsChanges. trackExperimentResult(org.apache.commons.lang3.tuple.Pair<SuggestionChangesExperiment,SuggestionChangesDataset> source, int position, int resultTextSize, long resultComputationTime)
-