Say I have two five-frame image sequences, seq1_I{0,1,2,3,4}.png and seq2_I{0,1,2,3,4}.png. How can I run online training to use the said image sequences?
Looking at train_fence_online.py, I'm guessing it will have something to do with the --batch_size and the --training_scene flags:
|
tf.app.flags.DEFINE_integer( |
|
'batch_size', 1, 'The number of samples in each batch.') |
|
tf.app.flags.DEFINE_string('training_scene', None, |
|
"""If specified, restore this pretrained model """ |
|
"""before beginning any training.""") |
However, I cannot tell how to specify the image sequence. Do I pass
--batch_size 2 --training_scene seq when calling
!python train_fence_online.py?
Say I have two five-frame image sequences,
seq1_I{0,1,2,3,4}.pngandseq2_I{0,1,2,3,4}.png. How can I run online training to use the said image sequences?Looking at
train_fence_online.py, I'm guessing it will have something to do with the--batch_sizeand the--training_sceneflags:SOLD/train_fence_online.py
Lines 22 to 23 in 519ee0d
SOLD/train_fence_online.py
Lines 26 to 28 in 519ee0d
However, I cannot tell how to specify the image sequence. Do I pass
--batch_size 2 --training_scene seqwhen calling!python train_fence_online.py?