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
seed
When I try to initialize the model (as per Python API convention) using the below statement -
from pyspark_iforest.ml.iforest import IForest iforest = IForest( numTrees=100, maxSamples=256, maxFeatures=len(features), contamination=0.025, bootstrap=False, seed=42, )
I receive the error - TypeError: __init__() got an unexpected keyword argument 'seed'. However, when seed argument is removed all works as usual.
TypeError: __init__() got an unexpected keyword argument 'seed'
Note: Used spark3 branch to generate the distribution .tar.gz file.
.tar.gz
The text was updated successfully, but these errors were encountered:
seed was not exposed in the Python api, you can use scala api or add the param in the python wrapper
Sorry, something went wrong.
No branches or pull requests
When I try to initialize the model (as per Python API convention) using the below statement -
I receive the error -
TypeError: __init__() got an unexpected keyword argument 'seed'
. However, whenseed
argument is removed all works as usual.Note: Used spark3 branch to generate the distribution
.tar.gz
file.The text was updated successfully, but these errors were encountered: