Documentation ¶
Overview ¶
Creates a trained model vocabulary
Index ¶
- Variables
- type NewPutTrainedModelVocabulary
- type PutTrainedModelVocabulary
- func (r PutTrainedModelVocabulary) Do(providedCtx context.Context) (*Response, error)
- func (r *PutTrainedModelVocabulary) Header(key, value string) *PutTrainedModelVocabulary
- func (r *PutTrainedModelVocabulary) HttpRequest(ctx context.Context) (*http.Request, error)
- func (r *PutTrainedModelVocabulary) Merges(merges ...string) *PutTrainedModelVocabulary
- func (r PutTrainedModelVocabulary) Perform(providedCtx context.Context) (*http.Response, error)
- func (r *PutTrainedModelVocabulary) Raw(raw io.Reader) *PutTrainedModelVocabulary
- func (r *PutTrainedModelVocabulary) Request(req *Request) *PutTrainedModelVocabulary
- func (r *PutTrainedModelVocabulary) Scores(scores ...types.Float64) *PutTrainedModelVocabulary
- func (r *PutTrainedModelVocabulary) Vocabulary(vocabularies ...string) *PutTrainedModelVocabulary
- type Request
- type Response
Constants ¶
This section is empty.
Variables ¶
var ErrBuildPath = errors.New("cannot build path, check for missing path parameters")
ErrBuildPath is returned in case of missing parameters within the build of the request.
Functions ¶
This section is empty.
Types ¶
type NewPutTrainedModelVocabulary ¶
type NewPutTrainedModelVocabulary func(modelid string) *PutTrainedModelVocabulary
NewPutTrainedModelVocabulary type alias for index.
func NewPutTrainedModelVocabularyFunc ¶
func NewPutTrainedModelVocabularyFunc(tp elastictransport.Interface) NewPutTrainedModelVocabulary
NewPutTrainedModelVocabularyFunc returns a new instance of PutTrainedModelVocabulary with the provided transport. Used in the index of the library this allows to retrieve every apis in once place.
type PutTrainedModelVocabulary ¶
type PutTrainedModelVocabulary struct {
// contains filtered or unexported fields
}
func New ¶
func New(tp elastictransport.Interface) *PutTrainedModelVocabulary
Creates a trained model vocabulary
https://www.elastic.co/guide/en/elasticsearch/reference/current/put-trained-model-vocabulary.html
func (PutTrainedModelVocabulary) Do ¶
func (r PutTrainedModelVocabulary) Do(providedCtx context.Context) (*Response, error)
Do runs the request through the transport, handle the response and returns a puttrainedmodelvocabulary.Response
func (*PutTrainedModelVocabulary) Header ¶
func (r *PutTrainedModelVocabulary) Header(key, value string) *PutTrainedModelVocabulary
Header set a key, value pair in the PutTrainedModelVocabulary headers map.
func (*PutTrainedModelVocabulary) HttpRequest ¶
HttpRequest returns the http.Request object built from the given parameters.
func (*PutTrainedModelVocabulary) Merges ¶
func (r *PutTrainedModelVocabulary) Merges(merges ...string) *PutTrainedModelVocabulary
Merges The optional model merges if required by the tokenizer. API name: merges
func (PutTrainedModelVocabulary) Perform ¶
Perform runs the http.Request through the provided transport and returns an http.Response.
func (*PutTrainedModelVocabulary) Raw ¶
func (r *PutTrainedModelVocabulary) Raw(raw io.Reader) *PutTrainedModelVocabulary
Raw takes a json payload as input which is then passed to the http.Request If specified Raw takes precedence on Request method.
func (*PutTrainedModelVocabulary) Request ¶
func (r *PutTrainedModelVocabulary) Request(req *Request) *PutTrainedModelVocabulary
Request allows to set the request property with the appropriate payload.
func (*PutTrainedModelVocabulary) Scores ¶
func (r *PutTrainedModelVocabulary) Scores(scores ...types.Float64) *PutTrainedModelVocabulary
Scores The optional vocabulary value scores if required by the tokenizer. API name: scores
func (*PutTrainedModelVocabulary) Vocabulary ¶
func (r *PutTrainedModelVocabulary) Vocabulary(vocabularies ...string) *PutTrainedModelVocabulary
Vocabulary The model vocabulary, which must not be empty. API name: vocabulary
type Request ¶
type Request struct { // Merges The optional model merges if required by the tokenizer. Merges []string `json:"merges,omitempty"` // Scores The optional vocabulary value scores if required by the tokenizer. Scores []types.Float64 `json:"scores,omitempty"` // Vocabulary The model vocabulary, which must not be empty. Vocabulary []string `json:"vocabulary"` }
Request holds the request body struct for the package puttrainedmodelvocabulary