EpistasisLab / EpistasisLab/tpot
Documentation should use est=TPOTClassifier rather than tpot=TPOTClassifier
Open
- Dominant language
- Jupyter Notebook
- Stars
- 10.1k
- Forks
- 1.6k
- PR merge metrics
- No merged PRs in 30d
Description
## 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.
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.