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 we leave to the user to use the model_category variable to indicate if its ONNX or XGB. This should be inferred from the data of the version and the original model, not to users input.
# In the instantiation we can check the original model or if is json, we can get from it the model XGB or LGBMmodel=GizaModel(id=model_id, version=version_id)
(result, proof_id) =model.predict(
input_feed={"input": input}, verifiable=True
)
The text was updated successfully, but these errors were encountered:
Can get this done and ready within few hours, I understand that I'm to get the required value from the data version/original model as opposed to using human input value that is unreliable.
Currently we leave to the user to use the
model_category
variable to indicate if its ONNX or XGB. This should be inferred from the data of the version and the original model, not to users input.Error prone:
Inferred:
The text was updated successfully, but these errors were encountered: