lolo
lolo copied to clipboard
Use of lolopy RF regressor in Anaconda
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!