gitextract_ddvr5dia/ ├── .gitignore ├── README.md ├── bert/ │ ├── __init__.py │ ├── modeling.py │ ├── optimization.py │ └── tokenization.py ├── conll-2012/ │ └── scorer/ │ └── v8.01/ │ ├── README.txt │ ├── scorer.bat │ └── scorer.pl ├── data_utils/ │ ├── config_utils.py │ ├── conll.py │ ├── lowercase_vocab.txt │ └── uppercase_vocab.txt ├── func_builders/ │ ├── input_fn_builder.py │ └── model_fn_builder.py ├── logs/ │ └── corefqa_log.txt ├── models/ │ ├── corefqa.py │ └── mention_proposal.py ├── requirements.txt ├── run/ │ ├── build_dataset_to_tfrecord.py │ ├── run_corefqa.py │ ├── run_mention_proposal.py │ ├── run_squad.py │ └── transform_spanbert_pytorch_to_tf.py ├── scripts/ │ ├── data/ │ │ ├── download_pretrained_mlm.sh │ │ ├── generate_tfrecord_dataset.sh │ │ ├── preprocess_ontonotes_annfiles.sh │ │ └── transform_ckpt_pytorch_to_tf.sh │ └── models/ │ ├── corefqa_gpu.sh │ ├── corefqa_tpu.sh │ ├── mention_gpu.sh │ ├── mention_tpu.sh │ ├── quoref_tpu.sh │ └── squad_tpu.sh ├── tests/ │ ├── bitwise_and.py │ ├── construct_label.py │ ├── cumsum.py │ ├── gather.py │ ├── model_fn.py │ ├── tile_repeat.py │ └── tpu_operation.py └── utils/ ├── load_pytorch_to_tf.py ├── metrics.py ├── radam.py └── util.py