aboutsummaryrefslogtreecommitdiffstats
path: root/linguistics/src/main/java/com/yahoo/language/significance/SignificanceModel.java
blob: a9f1e48af62301d3e71fabe85191d25b055543e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.language.significance;

import com.yahoo.api.annotations.Beta;

/**
 * @author MariusArhaug
 */
@Beta
public interface SignificanceModel {
    DocumentFrequency documentFrequency(String word);
}