Jyxarthur / flowsam

[ACCV 2024 (Oral)] Official Implementation of "Moving Object Segmentation: All You Need Is SAM (and Flow)" Junyu Xie, Charig Yang, Weidi Xie, Andrew Zisserman
https://www.robots.ox.ac.uk/~vgg/research/flowsam/
Apache License 2.0
265 stars 20 forks source link

How to fill in "val_seq"? #9

Closed fuzhaiping closed 3 months ago

fuzhaiping commented 3 months ago

When write "None", Program error.

Jyxarthur commented 3 months ago

Hi, thanks for your interest in our work.

When specifying val_seq = None, the sequence list would be automatically initialised in the corresponding dataloader. For example, please refer to L34 to L51 in data/dataloaders/dvs_loader.py.

If you are loading your own dataset via data/dataloaders/example_loader.py, no default sequence list is given. Then, the val_seq is needed to be manually specified as the list of sub-directories in your dataset folder.

fuzhaiping commented 3 months ago

Thank you very much for your reply!