aboutsummaryrefslogtreecommitdiffstats
path: root/model-evaluation/src/test/java/ai/vespa/models/evaluation/TinyBertTest.java
blob: dd240454928d7f65b1f00ec1f7dd22eb816389ec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package ai.vespa.models.evaluation;

import org.junit.Test;

import static org.junit.Assert.assertEquals;

/**
 * @author arnej
 */
public class TinyBertTest {

    @Test
    public void testTinyBert() {
        ModelTester tester = new ModelTester("src/test/resources/config/tinybert/");
        assertEquals(3, tester.models().size());
    }

}