Manage your iteration
Update iteration status
iteration.complete()import vectice
from vectice import Model
connect = vectice.connect(api_token="your-api-key") #Paste your API key
# Connect to your project phase using your phase ID
phase = connect.phase("PHA-XXX") #You can fetch the relevant phase ID from your chosen Vectice project in the app.
# Create or get an iteration
iteration = phase.create_or_get_current_iteration()
# Define your model for logging to Vectice
model = Model(metrics, properties, attachments, predictor)
# Log your model to Vectice under the 'Model Used' section.
iteration.log(my_model, section="Model Used")
# Iteration is completed
iteration.complete()
Create sections

Delete Sections

Move assets across sections in App
Delete assets in a section
Create Notes

Star your favorite iterations


Last updated
Was this helpful?