Solucionado (ver solução)
Solucionado
(ver solução)
1
resposta

O comando shutil esta dando error ..

Olá eu estou fazendo via colab , e inseri os dados no Drive , porem quando eu rodo o o comando :

if not path.exists(faces_path_treino):
  makedirs(faces_path_treino)

if not path.exists(faces_path_teste):
  makedirs(faces_path_teste)  


for arq in lista_arq_faces:
  sujeito = arq[1:3]
  numero  = arq[4:6]

  if int(numero) <= 10:
    shutil.copyfile(faces_caminho + arq , faces_path_treino + arq)
  else:
    shutil.copyfile(faces_caminho + arq , faces_path_teste + arq)  

gera o error

FileNotFoundError                         Traceback (most recent call last)
<ipython-input-50-14a4e7066b6b> in <module>()
      6     shutil.copyfile(faces_caminho + arq , faces_path_treino + arq)
      7   else:
----> 8     shutil.copyfile(faces_caminho + arq , faces_path_teste + arq)

/usr/lib/python3.7/shutil.py in copyfile(src, dst, follow_symlinks)
    118         os.symlink(os.readlink(src), dst)
    119     else:
--> 120         with open(src, 'rb') as fsrc:
    121             with open(dst, 'wb') as fdst:
    122                 copyfileobj(fsrc, fdst)

FileNotFoundError: [Errno 2] No such file or directory: '/content/drive/MyDrive/Analise facial/alura-analise-facial-aula_3/imagens/cropped_facess06_12.jpg'
1 resposta
solução!

Poderia confirmar se as variáveis estão definidas como abaixo: ?

faces_caminho = "imagens/cropped_faces/"
faces_path_treino = "imagens/treino/"
faces_path_teste = "imagens/teste/"

No erro abaixo,o nome do arquivo não esta separado do diretório, falta a barra depois do faces: (imagens/cropped_facess06_12.jpg)

FileNotFoundError: [Errno 2] No such file or directory: '/content/drive/MyDrive/Analise facial/alura-analise-facial-aula_3/imagens/cropped_facess06_12.jpg'