Ruikun Li

Results 3 issues of Ruikun Li

I followed the tutorial to train the cascaded model. 1.nnUNet_train 3d_lowres nnUNetTrainerV2 TaskXXX_MYTASK FOLD 2.nnUNet_train 3d_cascade_fullres nnUNetTrainerV2CascadeFullRes TaskXXX_MYTASK FOLD 3.nnUNet_find_best_configuration -m 3d_lowres 3d_cascade_fullres -t XXX 4.the inference commands generated by...

在研读第10章隐形马尔可夫模型代码的时候,发现出现两个问题: 1.注释错误: 代码中的:N = len(Q) # 状态序列的大小 由定义可知Q应是所有可能状态的集合,而不是状态序列,状态序列为I 因此应更改为:N = len(Q) #可能存在的状态数量 以免误解 2.维特比算法实现中的错误: 在维特比算法实现的过程中多次用到argmax函数,由于其返回的是索引,因此应+1才能和正常的下标值相符合。原代码中在计算时未+1,但在输出时却加了1,导致算法计算的delta、psis参数部分正确、部分错误,最终预测的状态序列也是错误的。 原代码 psis[i][t] = np.argmax(np.multiply([delta[t-1] for delta in deltas], [a[i] for a in A])) #未+1 ......

Hi! Thanks for your great work. I built a U-net model with pytorch. During my test, when I used BN(Batch Normalization), it cost about 1.8G GPU memory. But when I...