You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are two possible strategies on how to proceed with this:
Extend rebuild.py to support an option which produces [depth, height, width, channels] tfrecords wherein channels corresponds to the i-th auto context iteration.
Update train.py to support loading various volumes and merge them via tf.contrib.Dataset.
For the moment I incline to the first strategy as it would
distribute the implemented logic evenly between train.py and rebuild.py
should provide better performance as there is less io involved
however we would need to adjust current apis to use DHWC over DHW.
The text was updated successfully, but these errors were encountered:
There are two possible strategies on how to proceed with this:
Extend
rebuild.py
to support an option which produces[depth, height, width, channels]
tfrecords whereinchannels
corresponds to the i-th auto context iteration.Update
train.py
to support loading various volumes and merge them viatf.contrib.Dataset
.For the moment I incline to the first strategy as it would
train.py
andrebuild.py
however we would need to adjust current apis to use
DHWC
overDHW
.The text was updated successfully, but these errors were encountered: