Galera, segue abaixo, o warning que ocorre, quando executo o arquivo classifica_busca.py.. Como podemos solucioná-lo? Já tentei atualizar o pandas, mas já estou usando a versão mais atual.
classifica_buscas.py:17: VisibleDeprecationWarning: using a non-integer number instead of an integer will result in an error in the future
treino_dados = X[:tamanho_de_treino]
classifica_buscas.py:18: VisibleDeprecationWarning: using a non-integer number instead of an integer will result in an error in the future
treino_marcacoes = Y[:tamanho_de_treino]
classifica_buscas.py:20: VisibleDeprecationWarning: using a non-integer number instead of an integer will result in an error in the future
teste_dados = X[-tamanho_de_teste:]
classifica_buscas.py:21: VisibleDeprecationWarning: using a non-integer number instead of an integer will result in an error in the future
teste_marcacoes = Y[-tamanho_de_teste:]
82.0
100