├── README.md ├── predict_torch_t5.py ├── prepare.py └── train_torch_t5.py /README.md: -------------------------------------------------------------------------------- 1 | # Legal-QA-Baseline 2 | sodic2021 法律咨询智能问答 Baseline 线上35+ 3 | 4 | 预训练模型权重来自:https://github.com/renmada/t5-pegasus-pytorch 5 | -------------------------------------------------------------------------------- /predict_torch_t5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy99/Legal-QA-Baseline/HEAD/predict_torch_t5.py -------------------------------------------------------------------------------- /prepare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy99/Legal-QA-Baseline/HEAD/prepare.py -------------------------------------------------------------------------------- /train_torch_t5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy99/Legal-QA-Baseline/HEAD/train_torch_t5.py --------------------------------------------------------------------------------