wade_zhu

Results 10 issues of wade_zhu

数据保存结果评论内容会换行,而不是一行一条用户评论 ![1652157113(1)](https://user-images.githubusercontent.com/66124014/167543084-2e1462b9-8326-45e8-8f76-54594811e7a3.png)

您好楼主,我在执行shap_value.py这个文件时,当运行到y.append(result[:,i].sum())这一步时出现错误,提示too many indices for array: array is 1-dimensional, but 2 were indexed,请问您有出现过这个原因吗

![70e81006454463834ac32de9d792a1f](https://github.com/MIC-DKFZ/nnUNet/assets/66124014/47645a4c-af6e-493d-ae06-fa0780eade22) I am reasoning with the command !CUDA_VISIBLE_DEVICES=0 nnUNetv2_predict -i $INPUT_FOLDER -o $OUTPUT_FOLDER -d 1 -c 3d_lowres --save_probabilities -f 0 I get the following error: RuntimeError: Background workers died. Look...

`loss = loss.sum([1,2,3,4])/masks.sum([1,2,3,4])` if masks.sum([1,2,3,4]) contains 0, then the loss will be NaN so i simply change the upper code to `loss = loss.sum([1,2,3,4])/(masks.sum([1,2,3,4])+1e-6)`, Is this appropriate?

https://github.com/Zhen-Dong/Magic-Me/blob/16bf220e7f6319a8a5456e879c077f51c987413e/train.py#L357

https://github.com/mit-han-lab/fastcomposer/blob/71fed37def3c56d3fc3b0ef5cdccf8a53ff355b3/fastcomposer/data.py#L81 hi! could you please tell me why should -1 here?

您好,我看了您的推理代码发现您在推理时从GT中随机采了一个点进行提示,然后去和其他模型对比,这是否是不公平的呢,能否实现全局采点的推理方式

请问这个代码支持多点提示输入吗

I see in the code that mm_newline_position can be selected as grid, one_token, frame, and no_token, what is the exact meaning of these parameters?