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
[provide more detailed introduction to the issue itself and why it is relevant]
In the examples here: https://epistasislab.github.io/tpot/examples/
The code uses
tpot = TPOTClassifier(generations=5, population_size=50, verbosity=2, random_state=42)
but this should be
est= TPOTClassifier(generations=5, population_size=50, verbosity=2, random_state=42)
the variable tpot clashes with the name of the package and could cause confusing if people try to access the module later in the code.
tpot
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Context of the issue
[provide more detailed introduction to the issue itself and why it is relevant]
In the examples here: https://epistasislab.github.io/tpot/examples/
The code uses
tpot = TPOTClassifier(generations=5, population_size=50, verbosity=2, random_state=42)
but this should be
est= TPOTClassifier(generations=5, population_size=50, verbosity=2, random_state=42)
the variable
tpot
clashes with the name of the package and could cause confusing if people try to access the module later in the code.The text was updated successfully, but these errors were encountered: