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
str
PosixPath
The following code in the SaliconLoader.py file
SaliconLoader.py
imgs = make_trainset(root) if not imgs: raise(RuntimeError("Found 0 images in folder: " + root + "\n"))
is attempting to concatenate a string to the root variable, which is of type PosixPath. root should be converted to a string first.
root
The text was updated successfully, but these errors were encountered:
resolve SenJia#10
663947b
Successfully merging a pull request may close this issue.
The following code in the
SaliconLoader.py
fileis attempting to concatenate a string to the
root
variable, which is of typePosixPath
.root
should be converted to a string first.The text was updated successfully, but these errors were encountered: