classificationbox

package
v0.1.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 13, 2019 License: Apache-2.0 Imports: 1 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Classificationbox

Classificationbox lets you use machine learning to automatically classify various types of data, such as text, images, structured and unstructured data.

type CreateModelRequest

type CreateModelRequest struct {
	Model Model
}

type CreateModelResponse

type CreateModelResponse struct {
}

type DeleteModelRequest

type DeleteModelRequest struct {
	ModelID string
}

type DeleteModelResponse

type DeleteModelResponse struct{}

type Feature

type Feature struct {
	Key   string
	Type  string
	Value string
	File  remototypes.File
}

type GetStateRequest

type GetStateRequest struct{}

type GetStateResponse

type GetStateResponse struct {
	StateFile remototypes.File
}

type ListModelsRequest

type ListModelsRequest struct {
}

type ListModelsResponse

type ListModelsResponse struct {
	Models []Model
}

type Model

type Model struct {
	ID      string
	Name    string
	Options ModelOptions
	Classes []string
}

type ModelOptions

type ModelOptions struct {
	Ngrams    int
	Skipgrams int
}

type PredictRequest

type PredictRequest struct {
	ModelID string
	Limit   int
	Inputs  []Feature
}

type PredictResponse

type PredictResponse struct {
	Classes []PredictedClass
}

type PredictedClass

type PredictedClass struct {
	ID    string
	Score float64
}

type PutStateRequest

type PutStateRequest struct {
	StateFile remototypes.File
}

type PutStateResponse

type PutStateResponse struct{}

type TeachRequest

type TeachRequest struct {
	ModelID string
	Class   string
	Inputs  []Feature
}

type TeachResponse

type TeachResponse struct {
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL