aboutsummaryrefslogtreecommitdiffstats
path: root/linguistics/src/main/java/com/yahoo/language/significance/SignificanceModel.java
blob: c8a31e1892c6f96eefc8b47445f4d4759181c417 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 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);

    String getId();
}