-
Notifications
You must be signed in to change notification settings - Fork 5
/
question_answering_test.go
115 lines (102 loc) · 2.66 KB
/
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
package hfapigo_test
import (
"encoding/json"
"testing"
"github.com/Kardbord/hfapigo/v3"
"github.com/google/go-cmp/cmp"
)
func TestMarshalUnMarshalQARequest(t *testing.T) {
// No options
{
qaExpected := hfapigo.QuestionAnsweringRequest{
Inputs: hfapigo.QuestionAnsweringInputs{
Question: "What's my name?",
Context: "My name is Clara and I live in Berkeley.",
},
}
jsonBuf, err := json.Marshal(qaExpected)
if err != nil {
t.Fatal(err)
}
qaActual := hfapigo.QuestionAnsweringRequest{}
err = json.Unmarshal(jsonBuf, &qaActual)
if err != nil {
t.Fatal(err)
}
if !cmp.Equal(qaExpected, qaActual) {
t.Fatalf("Expected %v, got %v", qaExpected, qaActual)
}
}
// Options
{
qaExpected := hfapigo.QuestionAnsweringRequest{
Inputs: hfapigo.QuestionAnsweringInputs{
Question: "What's my name?",
Context: "My name is Clara and I live in Berkeley.",
},
Options: *hfapigo.NewOptions().SetWaitForModel(true),
}
jsonBuf, err := json.Marshal(qaExpected)
if err != nil {
t.Fatal(err)
}
qaActual := hfapigo.QuestionAnsweringRequest{}
err = json.Unmarshal(jsonBuf, &qaActual)
if err != nil {
t.Fatal(err)
}
if !cmp.Equal(qaExpected, qaActual) {
t.Fatalf("Expected %v, got %v", qaExpected, qaActual)
}
}
}
func TestQARequest(t *testing.T) {
// Basic request
{
qaResp, err := hfapigo.SendQuestionAnsweringRequest(hfapigo.RecommendedQuestionAnsweringModel, &hfapigo.QuestionAnsweringRequest{
Inputs: hfapigo.QuestionAnsweringInputs{
Question: "What's my name?",
Context: "My name is Clara and I live in Berkeley.",
},
Options: *hfapigo.NewOptions().SetWaitForModel(true),
})
if err != nil {
t.Fatal(err)
}
if qaResp == nil {
t.Fatalf("Expected non-nil response")
}
const (
expectedAnswer = "Clara"
expectedStart = 11
expectedEnd = 16
)
if qaResp.Answer != expectedAnswer {
t.Fatalf("Expected %s, got %s", expectedAnswer, qaResp.Answer)
}
if qaResp.Score == 0.0 {
t.Fatal("Expected non-zero confidence")
}
if qaResp.Start != expectedStart {
t.Fatalf("Expected %d, got %d", expectedStart, qaResp.Start)
}
if qaResp.End != expectedEnd {
t.Fatalf("Expected %d, got %d", expectedEnd, qaResp.End)
}
}
// Invalid request
{
qaResp, err := hfapigo.SendQuestionAnsweringRequest(hfapigo.RecommendedQuestionAnsweringModel, &hfapigo.QuestionAnsweringRequest{
Inputs: hfapigo.QuestionAnsweringInputs{
Question: "What's my name?",
},
Options: *hfapigo.NewOptions().SetWaitForModel(true),
})
if err == nil {
t.Fatal("Expected error - invalid request")
}
if qaResp != nil {
t.Fatalf("Expected nil response - invalid request")
}
}
}