Given the path to a checkpoint directory, return the paths to certain files in that directory.
find_vocab(ckpt_dir)find_config(ckpt_dir)
find_ckpt(ckpt_dir)
Character; the path to the checkpoint directory. If this argument is NULL, the associated functions also return NULL.
find_vocab
: Find the vocabulary file ('vocab.txt').
find_config
: Find the config file ('bert_config.json').
find_ckpt
: Find the checkpoint file stub (files begin with
'bert_model.ckpt').