# coding: utf-8 """ Shared constants for Sign-IDD model code. These are the standard special tokens used by the PHOENIX14T vocabulary. """ UNK_TOKEN = "" PAD_TOKEN = "" BOS_TOKEN = "" EOS_TOKEN = "" # Pad value for target skeleton sequences (used in loss masking) TARGET_PAD = 0.0 # Default index for unknown tokens (callable so defaultdict works) DEFAULT_UNK_ID = lambda: 0