Skip to content
Snippets Groups Projects
Commit 950b81d4 authored by Mathieu Beligon's avatar Mathieu Beligon
Browse files

[common] (twitch dataset) update code to use full v1 twitch dataset

parent 2fd9342f
No related branches found
No related tags found
No related merge requests found
from enum import Enum
from research_common.constants import TWITCH_DSET_ROBOTS_VIEWS_DIR
from research_common.constants import TWITCH_DSET_DIR
from research_common.dataset.directory_roco_dataset import DirectoryROCODataset
class TwitchROCODataset(DirectoryROCODataset, Enum):
def __init__(self, competition_name: str):
super().__init__(TWITCH_DSET_ROBOTS_VIEWS_DIR / competition_name, self.name)
super().__init__(TWITCH_DSET_DIR / "v1" / competition_name, self.name)
TWITCH_470149568 = "470149568"
TWITCH_470150052 = "470150052"
TWITCH_470151286 = "470151286"
TWITCH_470152289 = "470152289"
TWITCH_470152730 = "470152730"
TWITCH_470152838 = "470152838"
TWITCH_470153081 = "470153081"
TWITCH_470152289 = "470152289"
TWITCH_470158483 = "470158483"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment