Prevent the propagation of annotations to SampleSets
Prevents the loading of annotations
when a SampleSet
is created by overriding delayed_parameters
.
Merge request reports
Activity
This is one possibility of fix for the long CI pipeline time due to replay-mobile loading annotations from disk in bob.bio.face!128 (merged). With this fix, The
SampleSet
will still have an annotations field, but it will loadNone
instead of reading from the disk.Another solution would be to use
DelayedSampleSet
and possibly fixDelayedSampleSet.__init__
similarly to what was done toDelayedSample
in bob.pipelines!64 (merged). This would still put theannotations
delayed_attributes in theDelayedSampleSet
, but it would not be loaded from the disk.Superseded by bob.pipelines!69 (merged)
Please register or sign in to reply