// At most one of `init_checkpoint` and `hub_module_url` can be specified.
init_checkpoint: str = ""
hub_module_url: str = ""
model: encoders.TransformerEncoderConfig = (
encoders.TransformerEncoderConfig())
// The real class names, the order of which should match real label id.
// Note that a word may be tokenized into multiple word_pieces tokens, and
// we asssume the real label id (non-negative) is assigned to the first token
After Change
// At most one of `init_checkpoint` and `hub_module_url` can be specified.
init_checkpoint: str = ""
hub_module_url: str = ""
model: ModelConfig = ModelConfig()
// The real class names, the order of which should match real label id.
// Note that a word may be tokenized into multiple word_pieces tokens, and
// we asssume the real label id (non-negative) is assigned to the first token