Hi, I have trained an xgboost model in python to perform prediction of continuous numerical values. However, when I load the model into ignite and perform predictions, they are bounded to [0,1]. Does ignite convert predicted values and is prediction on regression tasks currently supported? I formatted my model and data similar to the ignite example. Here's my model, for the sake of simplicity, I trained a model containing two trees and a max depth of 3:
Here's my input feature vector: 1:57 2:321 3:285 4:23 5:0 6:44 7:2 8:1 9:1 10:1 11:1 12:675 13:4 14:19 Expected prediction: 1.131945495605468750e+02 (prediction from Python) Prediction: 1.0 Thanks. -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/
