-
Notifications
You must be signed in to change notification settings - Fork 271
/
get_predict_result.go
108 lines (99 loc) · 3.96 KB
/
get_predict_result.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
package nlp_automl
//Licensed under the Apache License, Version 2.0 (the "License");
//you may not use this file except in compliance with the License.
//You may obtain a copy of the License at
//
//http://www.apache.org/licenses/LICENSE-2.0
//
//Unless required by applicable law or agreed to in writing, software
//distributed under the License is distributed on an "AS IS" BASIS,
//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//See the License for the specific language governing permissions and
//limitations under the License.
//
// Code generated by Alibaba Cloud SDK Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is regenerated.
import (
"github.com/aliyun/alibaba-cloud-sdk-go/sdk/requests"
"github.com/aliyun/alibaba-cloud-sdk-go/sdk/responses"
)
// GetPredictResult invokes the nlp_automl.GetPredictResult API synchronously
// api document: https://help.aliyun.com/api/nlp-automl/getpredictresult.html
func (client *Client) GetPredictResult(request *GetPredictResultRequest) (response *GetPredictResultResponse, err error) {
response = CreateGetPredictResultResponse()
err = client.DoAction(request, response)
return
}
// GetPredictResultWithChan invokes the nlp_automl.GetPredictResult API asynchronously
// api document: https://help.aliyun.com/api/nlp-automl/getpredictresult.html
// asynchronous document: https://help.aliyun.com/document_detail/66220.html
func (client *Client) GetPredictResultWithChan(request *GetPredictResultRequest) (<-chan *GetPredictResultResponse, <-chan error) {
responseChan := make(chan *GetPredictResultResponse, 1)
errChan := make(chan error, 1)
err := client.AddAsyncTask(func() {
defer close(responseChan)
defer close(errChan)
response, err := client.GetPredictResult(request)
if err != nil {
errChan <- err
} else {
responseChan <- response
}
})
if err != nil {
errChan <- err
close(responseChan)
close(errChan)
}
return responseChan, errChan
}
// GetPredictResultWithCallback invokes the nlp_automl.GetPredictResult API asynchronously
// api document: https://help.aliyun.com/api/nlp-automl/getpredictresult.html
// asynchronous document: https://help.aliyun.com/document_detail/66220.html
func (client *Client) GetPredictResultWithCallback(request *GetPredictResultRequest, callback func(response *GetPredictResultResponse, err error)) <-chan int {
result := make(chan int, 1)
err := client.AddAsyncTask(func() {
var response *GetPredictResultResponse
var err error
defer close(result)
response, err = client.GetPredictResult(request)
callback(response, err)
result <- 1
})
if err != nil {
defer close(result)
callback(nil, err)
result <- 0
}
return result
}
// GetPredictResultRequest is the request struct for api GetPredictResult
type GetPredictResultRequest struct {
*requests.RpcRequest
TopK requests.Integer `position:"Body" name:"TopK"`
ModelId requests.Integer `position:"Body" name:"ModelId"`
DetailTag string `position:"Body" name:"DetailTag"`
Content string `position:"Body" name:"Content"`
ModelVersion string `position:"Body" name:"ModelVersion"`
}
// GetPredictResultResponse is the response struct for api GetPredictResult
type GetPredictResultResponse struct {
*responses.BaseResponse
RequestId string `json:"RequestId" xml:"RequestId"`
Content string `json:"Content" xml:"Content"`
}
// CreateGetPredictResultRequest creates a request to invoke GetPredictResult API
func CreateGetPredictResultRequest() (request *GetPredictResultRequest) {
request = &GetPredictResultRequest{
RpcRequest: &requests.RpcRequest{},
}
request.InitWithApiInfo("nlp-automl", "2019-11-11", "GetPredictResult", "nlpautoml", "openAPI")
return
}
// CreateGetPredictResultResponse creates a response to parse from GetPredictResult response
func CreateGetPredictResultResponse() (response *GetPredictResultResponse) {
response = &GetPredictResultResponse{
BaseResponse: &responses.BaseResponse{},
}
return
}