Closed at110 closed 5 years ago
Hi,
When you call .get_transforms()
you get one set of tfms for the train set and another for the validation. So you should do: train_tfms,val_tfms = fastai_scans.get_transforms()
and then volume0.apply_tfms(tfms=train_tfms)
should work.
One more thing, If you do data.train_ds[0][0] you will have the volumes with the tfms applied.
Thank you Renato for prompt reply!
Hi Renato,
I am trying to do following..
So fa so good
but when i tried...
volume0.apply_tfms(tfms=tfms)
it produced
Can you please help to resolve or give more information about this issue?