Esempio n. 1
0
def predict_squad(strategy, input_meta_data):
  """Makes predictions for the squad dataset."""
  bert_config = bert_configs.BertConfig.from_json_file(FLAGS.bert_config_file)
  tokenizer = tokenization.FullTokenizer(
      vocab_file=FLAGS.vocab_file, do_lower_case=FLAGS.do_lower_case)
  run_squad_helper.predict_squad(
      strategy, input_meta_data, tokenizer, bert_config, squad_lib_wp)
Esempio n. 2
0
def predict_squad(strategy, input_meta_data):
    """Makes predictions for the squad dataset."""
    bert_config = albert_configs.AlbertConfig.from_json_file(
        FLAGS.bert_config_file)
    tokenizer = tokenization.FullSentencePieceTokenizer(
        sp_model_file=FLAGS.sp_model_file)

    run_squad_helper.predict_squad(strategy, input_meta_data, tokenizer,
                                   bert_config, squad_lib_sp)