Blending Models
Blending models has proven to significantly improve performance
In-depth explanation
Submit the blended model
After importing the chaiverse package, you may submit the blend
import chaiverse as chai
submitter = chai.ModelSubmitter(verbose=True)
// submit the blended model
submissions_to_blend = ["submission1_id", "submission2_id", "submission3_id"]
blend_id = submitter.submit_blend({"submissions": submissions_to_blend, "model_name": "my-blended-model"})
Last updated