├── .gitignore ├── LICENSE ├── README.md ├── convert.py ├── doccano.md ├── doccano.py ├── ernie.py ├── ernie_m.py ├── evaluate.py ├── export_model.py ├── finetune.py ├── labelstudio2doccano.py ├── model.py ├── requirements.txt ├── tokenizer.py ├── uie_predictor.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HUSTAI/uie_pytorch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HUSTAI/uie_pytorch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HUSTAI/uie_pytorch/HEAD/README.md -------------------------------------------------------------------------------- /convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HUSTAI/uie_pytorch/HEAD/convert.py -------------------------------------------------------------------------------- /doccano.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HUSTAI/uie_pytorch/HEAD/doccano.md -------------------------------------------------------------------------------- /doccano.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HUSTAI/uie_pytorch/HEAD/doccano.py -------------------------------------------------------------------------------- /ernie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HUSTAI/uie_pytorch/HEAD/ernie.py -------------------------------------------------------------------------------- /ernie_m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HUSTAI/uie_pytorch/HEAD/ernie_m.py -------------------------------------------------------------------------------- /evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HUSTAI/uie_pytorch/HEAD/evaluate.py -------------------------------------------------------------------------------- /export_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HUSTAI/uie_pytorch/HEAD/export_model.py -------------------------------------------------------------------------------- /finetune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HUSTAI/uie_pytorch/HEAD/finetune.py -------------------------------------------------------------------------------- /labelstudio2doccano.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HUSTAI/uie_pytorch/HEAD/labelstudio2doccano.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HUSTAI/uie_pytorch/HEAD/model.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HUSTAI/uie_pytorch/HEAD/requirements.txt -------------------------------------------------------------------------------- /tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HUSTAI/uie_pytorch/HEAD/tokenizer.py -------------------------------------------------------------------------------- /uie_predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HUSTAI/uie_pytorch/HEAD/uie_predictor.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HUSTAI/uie_pytorch/HEAD/utils.py --------------------------------------------------------------------------------