1

Hi am using TPOT for machine learning I am getting 99% accuracy but I am not sure to which model did it predict can someone help me with this also does it do SMOTE?

1 Answers1

0

If you stored the TPOTClassifier in the variable my_tpot, then you can access the final trained pipeline by accessing the fitted_pipeline_ attribute:

my_tpot = TPOTClassifier()
my_tpot.fit(…)
print(my_tpot.fitted_pipeline_)
Randy Olson
  • 3,131
  • 2
  • 26
  • 39
  • Thanks for the answer I still have a doubt if TPOT can deal with imbalanced dataset and do SMOTE coz my data is highly imbalanced.....? – Nitish Santpur Feb 19 '22 at 05:27