No such file or directory...

#5
by kopyl - opened

I got this error:
No such file or directory: '/workspace/HF_HOME/datasets/downloads/extracted/c23d23dbe5e9a974d0a7b4872ac5fe89f2fa95432415f99105ed782f47bdce24/images/0.png'

When i was executing this:

MODEL_DIR="runwayml/stable-diffusion-v1-5"
OUTPUT_DIR="trained_model"

!accelerate launch /workspace/diffusers/examples/controlnet/train_controlnet.py \
 --pretrained_model_name_or_path={MODEL_DIR} \
 --output_dir={OUTPUT_DIR} \
 --dataset_name=fusing/fill50k \
 --resolution=512 \
 --learning_rate=1e-5 \
 --validation_image "/workspace/conditioning_image_1.png" "/workspace/conditioning_image_2.png" \
 --validation_prompt "red circle with blue background" "cyan circle with brown floral background" \
 --train_batch_size=4

following the instructions from https://github.com/huggingface/diffusers/tree/main/examples/controlnet

Full traceback: https://pastebin.com/inzwbmDm
Full code: https://colab.research.google.com/drive/1mHh5ED6Ooe0h7XqWOsIIqVQHpjTfztTV?usp=sharing

s.png

I got what was happening...
This was because i stopped the first training before it even started cause i thought it froze. But in fact it was likely extracting files for so long... By the way, can you add logs or something telling it's extracting?

Sign up or log in to comment