Skip to content

Commit

Permalink
videos/ folder is for COIN, rather than full_scale/
Browse files Browse the repository at this point in the history
  • Loading branch information
chenjoya authored Jul 29, 2024
1 parent 2be8ad4 commit e32e7ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions data/coin/coin.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

class COIN:
root = 'datasets/coin'
video_root = os.path.join(root, 'full_scale')
video_root = os.path.join(root, 'videos')
anno_root = os.path.join(root, 'annotations')
def __init__(self, split: str, vision_pretrained: str, embed_mark: str, frame_fps: int, **kwargs):
super().__init__(**kwargs)
Expand Down Expand Up @@ -70,4 +70,4 @@ def _clean_task(text):
return result.strip()

def __len__(self):
return len(self.annos)
return len(self.annos)

0 comments on commit e32e7ee

Please sign in to comment.