Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,我正在使用 TPOT 进行机器学习,我得到了 99% 的准确率,但我不确定它预测的是哪个模型,有人可以帮我解决这个问题吗?它也可以 SMOTE 吗?
如果您将 TPOTClassifier 存储在变量 my_tpot 中,则可以通过访问 fit_pipeline_ 属性来访问最终训练的管道:
my_tpot = TPOTClassifier() my_tpot.fit(…) print(my_tpot.fitted_pipeline_)