Documentation ¶
Index ¶
- func NewClassSettings(cfg moduletools.ClassConfig) *classSettings
- type ClassSettings
- type Client
- type Vectorizer
- func (v *Vectorizer) CombineVectors(vectors [][]float32) []float32
- func (v *Vectorizer) MoveAwayFrom(source []float32, target []float32, weight float32) ([]float32, error)
- func (v *Vectorizer) MoveTo(source []float32, target []float32, weight float32) ([]float32, error)
- func (v *Vectorizer) Object(ctx context.Context, object *models.Object, objDiff *moduletools.ObjectDiff, ...) error
- func (v *Vectorizer) Texts(ctx context.Context, inputs []string, settings ClassSettings) ([]float32, error)
- func (v *Vectorizer) VectorizeAudio(ctx context.Context, audio string) ([]float32, error)
- func (v *Vectorizer) VectorizeDepth(ctx context.Context, depth string) ([]float32, error)
- func (v *Vectorizer) VectorizeIMU(ctx context.Context, imu string) ([]float32, error)
- func (v *Vectorizer) VectorizeImage(ctx context.Context, image string) ([]float32, error)
- func (v *Vectorizer) VectorizeThermal(ctx context.Context, thermal string) ([]float32, error)
- func (v *Vectorizer) VectorizeVideo(ctx context.Context, video string) ([]float32, error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewClassSettings ¶
func NewClassSettings(cfg moduletools.ClassConfig) *classSettings
Types ¶
type ClassSettings ¶
type ClassSettings interface { ImageField(property string) bool ImageFieldsWeights() ([]float32, error) TextField(property string) bool TextFieldsWeights() ([]float32, error) AudioField(property string) bool AudioFieldsWeights() ([]float32, error) VideoField(property string) bool VideoFieldsWeights() ([]float32, error) IMUField(property string) bool IMUFieldsWeights() ([]float32, error) ThermalField(property string) bool ThermalFieldsWeights() ([]float32, error) DepthField(property string) bool DepthFieldsWeights() ([]float32, error) }
type Vectorizer ¶
type Vectorizer struct {
// contains filtered or unexported fields
}
func New ¶
func New(client Client) *Vectorizer
func (*Vectorizer) CombineVectors ¶
func (v *Vectorizer) CombineVectors(vectors [][]float32) []float32
CombineVectors combines all of the vector into sum of their parts
func (*Vectorizer) MoveAwayFrom ¶
func (v *Vectorizer) MoveAwayFrom(source []float32, target []float32, weight float32, ) ([]float32, error)
MoveAwayFrom moves one vector away from another
func (*Vectorizer) MoveTo ¶
func (v *Vectorizer) MoveTo(source []float32, target []float32, weight float32, ) ([]float32, error)
MoveTo moves one vector toward another
func (*Vectorizer) Object ¶
func (v *Vectorizer) Object(ctx context.Context, object *models.Object, objDiff *moduletools.ObjectDiff, settings ClassSettings, ) error
func (*Vectorizer) Texts ¶
func (v *Vectorizer) Texts(ctx context.Context, inputs []string, settings ClassSettings, ) ([]float32, error)
func (*Vectorizer) VectorizeAudio ¶
func (*Vectorizer) VectorizeDepth ¶
func (*Vectorizer) VectorizeIMU ¶
func (*Vectorizer) VectorizeImage ¶
func (*Vectorizer) VectorizeThermal ¶
func (*Vectorizer) VectorizeVideo ¶
Click to show internal directories.
Click to hide internal directories.