我正在运行 TPOT 文档页面提供的 MNIST 数据集分类示例。我正在使用 Google Colab 执行此操作,但是我找不到 tpot 在训练后检索到的具有最佳管道的代码。
你能帮我弄清楚这个 .py 文件保存在哪里吗?
from tpot import TPOTClassifier
from sklearn.datasets import load_digits
from sklearn.model_selection import train_test_split
digits = load_digits()
X_train, X_test, y_train, y_test = train_test_split(digits.data, digits.target,
train_size=0.75, test_size=0.25)
tpot = TPOTClassifier(generations=5, population_size=50, verbosity=2)
tpot.fit(X_train, y_train)
print(tpot.score(X_test, y_test))
tpot.export('tpot_mnist_pipeline.py')