Documentation ¶
Index ¶
- Variables
- func AddPredictor(framework dl.FrameworkManifest, pred predictor.Predictor) error
- func GetPredictor(framework dl.FrameworkManifest) (predictor.Predictor, error)
- func GetPredictors(framework dl.FrameworkManifest) ([]predictor.Predictor, error)
- func PredictorFrameworks() []dl.FrameworkManifest
- func Predictors() []string
- func UploadDir() (string, error)
- type Agent
- func (p *Agent) Close(ctx context.Context, req *dl.PredictorCloseRequest) (*dl.PredictorCloseResponse, error)
- func (p *Agent) Dataset(ctx context.Context, req *dl.DatasetRequest) (*dl.FeaturesResponse, error)
- func (p *Agent) FindFrameworkModel(ctx context.Context, req *dl.PredictorOpenRequest) (*dl.FrameworkManifest, *dl.ModelManifest, error)
- func (p *Agent) Images(ctx context.Context, req *dl.ImagesRequest) (*dl.FeaturesResponse, error)
- func (p *Agent) Open(ctx context.Context, req *dl.PredictorOpenRequest) (*dl.Predictor, error)
- func (b *Agent) PublishInPredictor(host, prefix string) error
- func (b *Agent) PublishInRegistery(prefix string) error
- func (p *Agent) RegisterManifests() (*grpc.Server, error)
- func (p *Agent) RegisterPredictor() (*grpc.Server, error)
- func (p *Agent) Reset(ctx context.Context, req *dl.ResetRequest) (*dl.ResetResponse, error)
- func (p *Agent) URLs(ctx context.Context, req *dl.URLsRequest) (*dl.FeaturesResponse, error)
- type Option
- type Options
- type PredictorLifetime
- type Registry
- func (c *Registry) FrameworkAgents(context.Context, *dl.FrameworkRequest) (*dl.Agents, error)
- func (c *Registry) FrameworkManifests(context.Context, *dl.FrameworkRequest) (*dl.FrameworkManifestsResponse, error)
- func (c *Registry) ModelAgents(context.Context, *dl.ModelRequest) (*dl.Agents, error)
- func (c *Registry) ModelManifests(context.Context, *dl.ModelRequest) (*dl.ModelManifestsResponse, error)
- func (b *Registry) PublishInPredictor(host, prefix string) error
- func (c *Registry) PublishInRegistery() error
Constants ¶
This section is empty.
Variables ¶
View Source
var (
DefaultChannelBuffer = 1000
)
Functions ¶
func AddPredictor ¶
func AddPredictor(framework dl.FrameworkManifest, pred predictor.Predictor) error
func GetPredictor ¶
func GetPredictor(framework dl.FrameworkManifest) (predictor.Predictor, error)
func GetPredictors ¶ added in v0.3.0
func GetPredictors(framework dl.FrameworkManifest) ([]predictor.Predictor, error)
func PredictorFrameworks ¶ added in v0.2.19
func PredictorFrameworks() []dl.FrameworkManifest
func Predictors ¶
func Predictors() []string
Types ¶
type Agent ¶
type Agent struct {
// contains filtered or unexported fields
}
func (*Agent) Close ¶ added in v0.2.16
func (p *Agent) Close(ctx context.Context, req *dl.PredictorCloseRequest) (*dl.PredictorCloseResponse, error)
Close a predictor and clear it's memory.
func (*Agent) Dataset ¶ added in v0.2.16
func (p *Agent) Dataset(ctx context.Context, req *dl.DatasetRequest) (*dl.FeaturesResponse, error)
Dataset method receives a single dataset and runs the predictor on all elements of the dataset. The result is a prediction feature list.
func (*Agent) FindFrameworkModel ¶
func (p *Agent) FindFrameworkModel(ctx context.Context, req *dl.PredictorOpenRequest) (*dl.FrameworkManifest, *dl.ModelManifest, error)
func (*Agent) Images ¶ added in v0.2.16
func (p *Agent) Images(ctx context.Context, req *dl.ImagesRequest) (*dl.FeaturesResponse, error)
Image method receives a list base64 encoded images and runs the predictor on all the images. The result is a prediction feature list for each image.
func (*Agent) Open ¶ added in v0.2.16
Opens a predictor and returns an id where the predictor is accessible. The id can be used to perform inference requests.
func (*Agent) PublishInPredictor ¶ added in v0.2.16
func (*Agent) PublishInRegistery ¶ added in v0.2.16
func (*Agent) Reset ¶ added in v0.2.16
func (p *Agent) Reset(ctx context.Context, req *dl.ResetRequest) (*dl.ResetResponse, error)
Clear method clears the internal cache of the predictors
func (*Agent) URLs ¶ added in v0.2.16
func (p *Agent) URLs(ctx context.Context, req *dl.URLsRequest) (*dl.FeaturesResponse, error)
URLs method receives a list of urls and runs the predictor on all the urls. The result is a list of predicted features for all the urls.
type Option ¶
func WithPortString ¶ added in v0.2.16
type PredictorLifetime ¶ added in v0.3.0
type Registry ¶
type Registry struct {
// contains filtered or unexported fields
}
func (*Registry) FrameworkAgents ¶
func (*Registry) FrameworkManifests ¶
func (c *Registry) FrameworkManifests(context.Context, *dl.FrameworkRequest) (*dl.FrameworkManifestsResponse, error)
func (*Registry) ModelAgents ¶
func (*Registry) ModelManifests ¶
func (c *Registry) ModelManifests(context.Context, *dl.ModelRequest) (*dl.ModelManifestsResponse, error)
func (*Registry) PublishInPredictor ¶ added in v0.2.16
func (*Registry) PublishInRegistery ¶
Click to show internal directories.
Click to hide internal directories.