Is there a way I can attach some sort of confidence with my predictions from Decision Tree Regression output in python?
from sklearn.tree import DecisionTreeRegressor
dt = DecisionTreeRegressor(random_state=0, criterion="mae")
dt_fit = dt.fit(X_train, y_train)
y_pred = dt_fit.predict(X_test)