Releases: vespa-engine/pyvespa
Releases · vespa-engine/pyvespa
Version 0.11.0
- Use
tasksinstead ofmodelsas argument name forModelServerto align with the fact this argument takes instances of typeTextTask. - Use
model_idinstead ofmodel_nameto identify a model sincemodel_idis what we use when defining a Task.
Version 0.10.0
Introduce stateless model evaluation with SequenceClassification task.
- Adapt
ApplicationPackageto allow for simpler configurations, e.g. no schema. - Implement
ModelServer, which is a simplifiedApplicationPackagefocused on stateless model evaluation. ApplicationPackageis now included on theVespainstance when deploying apps with pyvespa.- This helps to process input/output involved when using stateless model evaluations through
app.predict.
- This helps to process input/output involved when using stateless model evaluations through
Vespanow hasget_model_endpointandpredictto use for stateless model evaluation mode.- Both
VespaDockerandVespaCloudnow work withModelServerdeployment to deploy stateless model evaluation apps. - Created
SequenceClassificationtask that inherits from the base classTextTask.
Version 0.9.0
VespaDocker and VespaCloud are now only available via the vespa.deployment module.
Version 0.8.1
VespaDockerandVespaCloudwill move to the deployment module- v 0.8.1 still works with
vespa.package.VespaDockerandvespa.package.VespaCloudbut it will issue a deprecation warning informing users to usevespa.deployment.VespaDockerandvespa.deployment.VespaCloudinstead. - v 0.9.0 will remove
vespa.package.VespaDockerandvespa.package.VespaCloudand users must usevespa.deployment.VespaDockerandvespa.deployment.VespaCloud
- v 0.8.1 still works with