tpot icon indicating copy to clipboard operation
tpot copied to clipboard

Documentation should use est=TPOTClassifier rather than tpot=TPOTClassifier

Open perib opened this issue 1 year ago • 0 comments

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.

perib avatar Sep 28 '23 21:09 perib