You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
from joblib import Parallel, delayed
Parallel(n_jobs=4, )(
delayed(my_func)(path for path in
tqdm(dump_paths, colour="green", leave=False)
my_func(...) call detect.detect_image(images)
File "venv/lib/python3.10/site-packages/feat/detector.py", line 889, in detect_image
raise ValueError(
ValueError: when using a batch_size > 1 all images must have the same dimensions or output_size must not be None so py-feat can rescale images to output_size. See pytorch error:
Can't call numpy() on Tensor that requires grad. Use tensor.detach().numpy() instead.
The text was updated successfully, but these errors were encountered:
Below error occur when I run :
my_func(...)
calldetect.detect_image(images)
The text was updated successfully, but these errors were encountered: