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

/**
 * @author MariusArhaug
 */
@Beta
public interface SignificanceModelRegistry {
    SignificanceModel getModel(Language language);
}