Closed 59-lmq closed 1 year ago
Thans for your response and suggestions!
Sorry, we haven't tried any 3D medical image datasets. I think only maintaining a mean loss value by EMA, like what ProDA has done on prototypes, may help, instead of saving all predictions and then computing the average in our implementation.
OK👌! Let me have a try, thansk for your advice! 👍
Hello!Thanks for coming up with such a novel approach to solving SFDA. I have some questions about the concrete implementation of your method.
First, about calculating η. In your paper, η is used for k classes. But I found that only work for class 0 in your code. I guess this may be used only for cup class, which is 1.32% while disc and background are 10.16% and 89.84% respectively. So I have a questions about η. Why can't it used for all classes (include 0: background, 1: disc, 2: cup), not only for class 0?Does any unexpected results will happen in this way? Second, about how to store all the predictions of all images efficiently. I found that GPU memory usage is very high during the predictions bank initialization before training. There are only hundreds of images usage in your experiments. But while I implement in my task, about thousands of images, it always out of memory during initialization. Could you have any idea to fix this problem? Looking forward to your response!