Tanuj Jain

Results 65 comments of Tanuj Jain

@protux Apologies for the lack of maintenance. We just released a new version that works with python 3.8/9/10. Please give it a try.

Are you able to install pywavelets package individually? I also see the log `Rolling back uninstall of pywavelets` in the error trace you shared. Are you sure you installed imagededup...

Hi, new release of imagededup is out. Hopefully this solves your problem.

We just released a new version. Could you try installing it and see if the issue is solved?

Could you check it out on the newer release of imagededup? We run tests on different platforms as part of building the package, so the error isn't expected.

The package doesn't have tensorflow as a dependency. So, closing the issue.

You could generate encodings for each directory using `encode_images` method, then concatenate the resulting encoding dictionaries, then pass this dictionary to the`encoding_map` parameter of the `find_duplicates` method. Of course, this...

Addressed in #185 . Available in v0.3.1

Try replacing the following line: `make_dot(model(inputs), params=dict(model.named_parameters()))` with: `make_dot(model(inputs).mean(), params=dict(model.named_parameters())) ` You could probably use some aggregation other than mean too.