H-DenseUNet icon indicating copy to clipboard operation
H-DenseUNet copied to clipboard

Some questions about the train_2ddense.py

Open WdBlink opened this issue 5 years ago • 4 comments

Hello, please ask line 62 in the train_2ddense.py code:

crop_img = img[a - deps / 2:a + deps / 2, b - rows / 2:b + rows / 2,
                c - cols / 2: c + cols / 2 + 1].copy()
cropp_tumor = tumor[a - deps / 2:a + deps / 2, b - rows / 2:b + rows / 2,
                  c - cols / 2:c + cols / 2 + 1].copy()

What function does this code play? The colon here in python: What kind of arithmetic operation is it?

WdBlink avatar Jan 28 '19 07:01 WdBlink

Hello, I run "train_2ddenseunet.py", The program is killed as soon as it runs. I don't know this is why?

Apple-zly avatar Apr 17 '19 07:04 Apple-zly

check if the CPU memory is full when running the program.(CPU memory on my server is 46G. ) At the beginning, the program load all data at once.

xmengli avatar Apr 17 '19 08:04 xmengli

Hello,I can not find 'long skip' in the Up-sampling process ,which your paper has mentioned. i wonder that the Up-sampling process only take the output of dense encoder without long skip from the front layers.

Excelsiorwu avatar Jun 08 '19 07:06 Excelsiorwu

Yes, there are two version, One is densenet and the other is the densenet with u net connections. Two versions are available. Both of it can be used in the hybrid architecture.

xmengli avatar Jul 08 '19 02:07 xmengli