anticipation/anticipation/datasets/epic_future_labels.py [396:406]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    def get_visit_feature(self, trunk_features, start, stop, dim):
        inds = []
        for fid in range(start - 31, stop - 31):
            if fid in trunk_features.keys():
                inds.append(fid)

        if len(inds)==0:
            return None

        if self.test_mode:
            f_id = inds[len(inds)//2]
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



anticipation/anticipation/datasets/epic_future_labels.py [510:520]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    def get_visit_feature(self, trunk_features, start, stop, dim):
        inds = []
        for fid in range(start - 31, stop - 31):
            if fid in trunk_features.keys():
                inds.append(fid)

        if len(inds)==0:
            return None

        if self.test_mode:
            f_id = inds[len(inds)//2]
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



