Sign up to take part
Registered users can ask their own questions, contribute to discussions, and be part of the Community!
Added on March 29, 2023 9:00AM
Likes: 0
Replies: 1
Hey,
I’m trying to define a custom Python model that should be fitted adjusting for the variable "exposure". The code runs without an error in the notebook, but this error message occurs when the model is fitted in the visual analyses.
"Failed to train : <class 'IndexError'> : only integers, slices (`:`), ellipsis (`...`), numpy.newaxis (`None`) and integer or boolean arrays are valid indices. "
The code in the library editor looks like this:
class Poisson_gbrt(BaseEstimator): def __init__(self): self.model = Pipeline([ ("regressor", HistGradientBoostingRegressor(loss="poisson",max_leaf_nodes=12,random_state=42),),]) def fit(self,X,y,regressor__sample_weight=None): self.model.fit(X,y,regressor__sample_weight=X["Exposure"]) return None def predict(self, X): return self.model.predict(X)
Thanks,
Odin
Hi @Odin
,
The error suggests you are passing X["Exposure"] which is not what HistGradientBoostingRegressor you could try to convert this to numpy array instead :
exposure_weights = X["Exposure"].to_numpy()