-
Notifications
You must be signed in to change notification settings - Fork 5
/
zeroshot_classification_test.go
169 lines (149 loc) · 5.53 KB
/
zeroshot_classification_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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
package hfapigo_test
import (
"encoding/json"
"fmt"
"testing"
"github.com/Kardbord/hfapigo/v3"
"github.com/google/go-cmp/cmp"
)
func TestMarshalUnmarshalZeroShotRequest(t *testing.T) {
// No options
{
zsrExpected := hfapigo.ZeroShotRequest{
Inputs: []string{"Hi, I recently bought a device from your company but it is not working as advertised and I would like to get reimbursed!"},
Parameters: hfapigo.ZeroShotParameters{
CandidateLabels: []string{"refund", "legal", "faq"},
},
}
jsonBuf, err := json.Marshal(zsrExpected)
if err != nil {
t.Fatal(err)
}
zsrActual := hfapigo.ZeroShotRequest{}
err = json.Unmarshal(jsonBuf, &zsrActual)
if err != nil {
t.Fatal(err)
}
if !cmp.Equal(zsrExpected, zsrActual) {
t.Fatalf("Expected %v, got %v", zsrExpected, zsrActual)
}
}
// Options
{
zsrExpected := hfapigo.ZeroShotRequest{
Inputs: []string{"Hi, I recently bought a device from your company but it is not working as advertised and I would like to get reimbursed!"},
Parameters: *(&hfapigo.ZeroShotParameters{
CandidateLabels: []string{"refund", "legal", "faq"},
}).SetMultiLabel(true),
Options: *hfapigo.NewOptions().SetWaitForModel(true).SetUseGPU(false),
}
jsonBuf, err := json.Marshal(zsrExpected)
if err != nil {
t.Fatal(err)
}
zsrActual := hfapigo.ZeroShotRequest{}
err = json.Unmarshal(jsonBuf, &zsrActual)
if err != nil {
t.Fatal(err)
}
if !cmp.Equal(zsrExpected, zsrActual) {
t.Fatalf("Expected %v, got %v", zsrExpected, zsrActual)
}
}
}
func TestZeroShotRequest(t *testing.T) {
// Minimal request
{
zreq := hfapigo.ZeroShotRequest{
Inputs: []string{"Hi, I recently bought a device from your company but it is not working as advertised and I would like to get reimbursed!"},
Parameters: hfapigo.ZeroShotParameters{
CandidateLabels: []string{"refund", "legal", "faq"},
},
Options: *hfapigo.NewOptions().SetWaitForModel(true),
}
zresps, err := hfapigo.SendZeroShotRequest(hfapigo.RecommendedZeroShotModel, &zreq)
if err != nil {
t.Fatal(err)
}
if len(zresps) == 0 {
t.Fatal("ZeroShotResponses should not be empty")
}
if len(zresps) != len(zreq.Inputs) {
t.Fatalf("Expected len(zreq.Inputs) == len(zresps), but %d != %d", len(zreq.Inputs), len(zresps))
}
zresp := zresps[0]
if !cmp.Equal(zresp.Sequence, zreq.Inputs[0]) {
t.Fatalf("Expected zresp.Sequence to equal inputs, but %v != %v", zresp.Sequence, zreq.Inputs)
}
if len(zresp.Labels) != len(zreq.Parameters.CandidateLabels) {
t.Fatalf("Expected len(zresp.Labels) to equal len(candidateLabels), but %d != %d", len(zresp.Labels), len(zreq.Parameters.CandidateLabels))
}
if len(zresp.Scores) != len(zresp.Labels) {
t.Fatalf("expected len(zresp.Scores) == len(zresp.Labels), but %d != %d", len(zresp.Scores), len(zresp.Labels))
}
}
// Request with optional parameters
{
zreq := hfapigo.ZeroShotRequest{
Inputs: []string{
"Hi, I recently bought a device from your company but it is not working as advertised and I would like to get reimbursed!",
"To whom it may concern, I purchased an item from your storefront, but its behavior is not as anticipated and I will be expecting a refund!",
},
Parameters: *(&hfapigo.ZeroShotParameters{
CandidateLabels: []string{"refund", "legal", "faq"},
}).SetMultiLabel(true),
Options: *hfapigo.NewOptions().SetWaitForModel(true).SetUseGPU(false),
}
zresps, err := hfapigo.SendZeroShotRequest(hfapigo.RecommendedZeroShotModel, &zreq)
if err != nil {
t.Fatal(err)
}
if len(zresps) == 0 {
t.Fatal("ZeroShotResponses should not be empty")
}
if len(zresps) != len(zreq.Inputs) {
t.Fatalf("Expected len(zreq.Inputs) == len(zresps), but %d != %d", len(zreq.Inputs), len(zresps))
}
zresp := zresps[0]
if !cmp.Equal(zresp.Sequence, zreq.Inputs[0]) {
t.Fatalf("Expected zresp.Sequence to equal inputs, but %v != %v", zresp.Sequence, zreq.Inputs[0])
}
if len(zresp.Labels) != len(zreq.Parameters.CandidateLabels) {
t.Fatalf("Expected len(zresp.Labels) to equal len(candidateLabels), but %d != %d", len(zresp.Labels), len(zreq.Parameters.CandidateLabels))
}
if len(zresp.Scores) != len(zresp.Labels) {
t.Fatalf("expected len(zresp.Scores) == len(zresp.Labels), but %d != %d", len(zresp.Scores), len(zresp.Labels))
}
zresp = zresps[1]
if !cmp.Equal(zresp.Sequence, zreq.Inputs[1]) {
t.Fatalf("Expected zresp.Sequence to equal inputs, but %v != %v", zresp.Sequence, zreq.Inputs[1])
}
if len(zresp.Labels) != len(zreq.Parameters.CandidateLabels) {
t.Fatalf("Expected len(zresp.Labels) to equal len(candidateLabels), but %d != %d", len(zresp.Labels), len(zreq.Parameters.CandidateLabels))
}
if len(zresp.Scores) != len(zresp.Labels) {
t.Fatalf("expected len(zresp.Scores) == len(zresp.Labels), but %d != %d", len(zresp.Scores), len(zresp.Labels))
}
}
// Request with too many labels
{
candidateLabels := make([]string, hfapigo.MaxCandidateLabels+1)
for i := range candidateLabels {
candidateLabels[i] = fmt.Sprintf("foo%d", i)
}
zreq := hfapigo.ZeroShotRequest{
Inputs: []string{"Hi, I recently bought a device from your company but it is not working as advertised and I would like to get reimbursed!"},
Parameters: hfapigo.ZeroShotParameters{
CandidateLabels: candidateLabels,
},
Options: *hfapigo.NewOptions().SetWaitForModel(true),
}
zresps, err := hfapigo.SendZeroShotRequest(hfapigo.RecommendedZeroShotModel, &zreq)
if err == nil {
t.Fatal("Expected error - too many candidate labels")
}
if zresps != nil {
t.Fatal("Expected nil response")
}
}
}