-
Notifications
You must be signed in to change notification settings - Fork 5
/
table_question_answering_test.go
123 lines (111 loc) · 2.93 KB
/
table_question_answering_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
package hfapigo_test
import (
"encoding/json"
"testing"
"github.com/Kardbord/hfapigo/v3"
"github.com/google/go-cmp/cmp"
)
func TestMarshalUnMarshalTQARequest(t *testing.T) {
// No options
{
tqaExpected := hfapigo.TableQuestionAnsweringRequest{
Inputs: hfapigo.TableQuestionAnsweringInputs{
Query: "What is the population of Anytown?",
Table: map[string][]string{
"City": {"Anytown"},
"Population": {"12345"},
},
},
}
jsonBuf, err := json.Marshal(tqaExpected)
if err != nil {
t.Fatal(err)
}
tqaActual := hfapigo.TableQuestionAnsweringRequest{}
err = json.Unmarshal(jsonBuf, &tqaActual)
if err != nil {
t.Fatal(err)
}
if !cmp.Equal(tqaExpected, tqaActual) {
t.Fatalf("Expected %v, got %v", tqaExpected, tqaActual)
}
}
// Options
{
tqaExpected := hfapigo.TableQuestionAnsweringRequest{
Inputs: hfapigo.TableQuestionAnsweringInputs{
Query: "What is the population of Anytown?",
Table: map[string][]string{
"City": {"Anytown", "Someplace"},
"Population": {"12345", "7890"},
},
},
}
jsonBuf, err := json.Marshal(tqaExpected)
if err != nil {
t.Fatal(err)
}
tqaActual := hfapigo.TableQuestionAnsweringRequest{}
err = json.Unmarshal(jsonBuf, &tqaActual)
if err != nil {
t.Fatal(err)
}
if !cmp.Equal(tqaExpected, tqaActual) {
t.Fatalf("Expected %v, got %v", tqaExpected, tqaActual)
}
}
}
func TestTQARequest(t *testing.T) {
// Basic request
{
tqaResp, err := hfapigo.SendTableQuestionAnsweringRequest(hfapigo.RecommendedTableQuestionAnsweringModel, &hfapigo.TableQuestionAnsweringRequest{
Inputs: hfapigo.TableQuestionAnsweringInputs{
Query: "What is the population of Anytown?",
Table: map[string][]string{
"City": {"Anytown", "Someplace"},
"Population": {"12345", "7890"},
},
},
Options: *hfapigo.NewOptions().SetWaitForModel(true),
})
if err != nil {
t.Fatal(err)
}
if tqaResp == nil {
t.Fatal("Expected non-nil response")
}
if tqaResp.Answer == "" {
t.Fatal("Expected non empty answer")
}
if len(tqaResp.Coordinates) == 0 {
t.Fatal("Expected non empty coordinates")
}
if len(tqaResp.Coordinates[0]) == 0 {
t.Fatal("Expected non empty coordinates[0]")
}
if len(tqaResp.Cells) == 0 {
t.Fatal("Expected non empty cells")
}
if tqaResp.Aggregator == "" {
t.Fatal("Expected non empty aggregator")
}
}
// Invalid request
{
tqaResp, err := hfapigo.SendTableQuestionAnsweringRequest(hfapigo.RecommendedTableQuestionAnsweringModel, &hfapigo.TableQuestionAnsweringRequest{
Inputs: hfapigo.TableQuestionAnsweringInputs{
Table: map[string][]string{
"City": {"Anytown", "Someplace"},
"Population": {"12345", "7890"},
},
},
Options: *hfapigo.NewOptions().SetWaitForModel(true),
})
if err == nil {
t.Fatal("Expected error - invalid request")
}
if tqaResp != nil {
t.Fatal("Expected nil response - invalid request")
}
}
}