gitextract_np79bhzs/ ├── README.md ├── albert/ │ └── albert_xxlarge.py ├── app.py ├── electra/ │ ├── configure_finetuning.py │ ├── finetune/ │ │ ├── feature_spec.py │ │ ├── preprocessing.py │ │ ├── qa/ │ │ │ ├── qa_metrics.py │ │ │ ├── qa_tasks.py │ │ │ ├── squad_official_eval.py │ │ │ └── squad_official_eval_v1.py │ │ ├── scorer.py │ │ ├── task.py │ │ └── task_builder.py │ ├── model/ │ │ ├── modeling.py │ │ ├── optimization.py │ │ └── tokenization.py │ └── util/ │ ├── training_utils.py │ └── utils.py ├── googlesearch/ │ ├── geckodriver │ ├── user_agents.txt │ ├── user_agents_en.txt │ └── user_agents_pt.txt ├── qa_predict.py ├── rank_models/ │ ├── bm25_model.py │ ├── tfidf.py │ └── use.py ├── requirements.txt ├── static/ │ ├── css/ │ │ └── app.css │ └── js/ │ └── app.js ├── templates/ │ └── index.html └── util.py