We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This was the error i got in terminal when I clicked train from the UI
The text was updated successfully, but these errors were encountered:
Hi, You've to resize images in the output folder to 160x160. You can use the following script to do so:
from PIL import Image import os
in_path = 'outout/person1/' #replace "person1" with your subfolder name(s).
imgs = os.listdir(in_path) for img in imgs: imgg = Image.open(in_path+img) imgg = imgg.resize((160,160)) imgg.save(in_path+img)
Sorry, something went wrong.
Which file should be the above given script added ?
No branches or pull requests
This was the error i got in terminal when I clicked train from the UI
The text was updated successfully, but these errors were encountered: