xmengli / H-DenseUNet

TMI 2018. H-DenseUNet: Hybrid Densely Connected UNet for Liver and Tumor Segmentation from CT Volumes

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

keras.layers.input batch_shape 最基本問題

Shaiken opened this issue · comments

batch_shape=(args.b, args.input_size, args.input_size, args.input_cols, 1)
想請問各個參數定義是什麼...
網路上可以看到
batch_shape: A shape tuple (integer), including the batch size.
For instance, batch_shape=(10, 32) indicates that
the expected input will be batches of 10 32-dimensional vectors.
batch_shape=(None, 32) indicates batches of an arbitrary number
of 32-dimensional vectors.

input_size: 寬 input_size: 高 還是高寬, 想要實驗的data可能不一樣長寬
1: ?

我應該可以自己試出來,感謝。