We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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!
The text was updated successfully, but these errors were encountered: