VITRA / vitra /datasets /data_mixture.py
arnoldland's picture
Initial commit
aae3ba1
from typing import Dict, List, Tuple
HAND_MIXTURES: Dict[str, List[Tuple[str, float]]] = {
# === ego4d + egoexo4d + ssv2 + epic Dataset ===
"magic_mix": [
("ego4d_cooking_and_cleaning", 1.0),
("egoexo4d", 3.0),
("epic", 1.0),
('ssv2', 5.0),
('ego4d_other', 0.5)
],
"magic_mix_cooking_and_cleaning": [
("ego4d_cooking_and_cleaning", 1.0),
("egoexo4d", 3.0),
("epic", 1.0),
('ssv2', 5.0),
],
"magic_mix_beyond": [
("ego4d", 1.0),
("egoexo4d", 3.0),
("epic", 1.0),
('ssv2', 5.0),
('ego4d_beyond', 0.5)
],
}