John Zielke
John Zielke
I am having the same issue, but replacing server_host with 'localhost' did the trick for me... Apparently, the problem was with hamachi supplying a different local address
Not sure if it is relevant, but the next cupy version will include a CUDA implementation for [distance_transform_edt](https://docs.cupy.dev/en/latest/reference/generated/cupyx.scipy.ndimage.distance_transform_edt.html#cupyx.scipy.ndimage.distance_transform_edt) (so only for the euclidean distance case).
First of all, amazing project! Now here is my opinion after trying to work on some of the AI features of Photoprism (see below). IMHO, trying to integrate everything with...
Thanks @tknobi, from your PR I can see you put quite some work into this as well! While looking through the PR and googling for CLIP models in general, I...
Hi, I'd still be interested in implementing features in this space, maybe not exclusive to the CLIP embedding mentioned here but something similar. May I ask the specific reason for...
@lastzero For my understanding: What are the ways users typically have problems with the architecture and how would this be made more complicated by a well-named and documented additional container?...
> The problems start with YAML, which some users don't know and then remove indentation. That's the experience level we're talking about. > Often users also don't use the examples...
Are there any updates on this? If you stumble into this problem, finding out that this is (most likely :D) not a issue in your config but this bug is...
Chiming in here, since I worked on https://github.com/Project-MONAI/MONAI/pull/7008 trying to make the HausdorffLoss work with cucim. > > @SarthakJShetty-path I did switch to #4205 ShapeLoss, but don't sure that it...
It does use cucim based on this logic, so both cucim and cupy have to be installed: ```python distance_transform_edt, has_cucim = optional_import( "cucim.core.operations.morphology", name="distance_transform_edt" ) use_cp = has_cp and has_cucim...