You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, if you save a VetiverModel() with no ptype, you can deploy with check_ptype=True with no error. This can POST to an endpoint with no error, but with certain data types, predictions come back dictionaries of errors.
I am planning on enforcing the following ⬇️
ptype saved, deploy with ptype ✅
ptype saved, deploy with NO ptype ❓ give warning
NO ptype saved, deploy with ptype ❌ raise error
NO ptype saved, deploy with NO ptype ✅
The text was updated successfully, but these errors were encountered:
Currently, if you save a VetiverModel() with no ptype, you can deploy with
check_ptype=True
with no error. This can POST to an endpoint with no error, but with certain data types, predictions come back dictionaries of errors.I am planning on enforcing the following ⬇️
The text was updated successfully, but these errors were encountered: