lolo icon indicating copy to clipboard operation
lolo copied to clipboard

Use of lolopy RF regressor in Anaconda

Open rortague opened this issue 9 months ago • 0 comments

Hi all,

I'm interested on applying this RF regressor. I have succesfuly used the RF regressor from scikit learn with my training and testing data set.

I have tried to use the lolopy RF regressor in Anaconda , but It doesn't work ,

On the CMDPROMPT I did: pip install lolopy

Code:

model = RandomForestRegressor(num_trees=500) model.fit(X_train,y_train)

y_pred, y_std = model.predict(X_test, return_std=True)

display(y_pred) display(y_std)

I get this error: FileNotFoundError: [WinError 2] The system cannot find the file specified

Can someone provide some guidance regarding what could be the issue? Thanks!

rortague avatar May 02 '24 21:05 rortague