Open drewhogg opened 3 years ago
Hi,
Sorry for the late answer. Yes you can run the code without the multiprocessing part. It should work.
Abou the issue, you're trying to access a private method. Python is doing name mangling ( read more here https://www.afternerd.com/blog/python-private-methods/)
If you really want to access it just do:
your_obj._DistanceMatrix__get_argument_create_matrix(a,b)
Hope it helped
Hello. I'm trying to use LUDA on a set of URLs. Due to environmental/ use case constraints, I am running the code as a package rather than with Docker. I'm running into this:
AttributeError: 'DistanceMatrix' object has no attribute '__create_matrix_distance'
I can remove the multiprocessing part and the code will run. Any insight?
Thanks!