tic = time.time()
scores = cross_val_score(busca, x_azar, y_azar, cv= KFold(n_splits=5, shuffle=True))
tac = time.time()
print('Tempo {:.2f} segundos'.format(tac - tic))
imprime_score(scores)
melhor = busca.best_estimator_
print(melhor)
Levou 594.14 segundos