├── OT.py ├── README.md ├── data ├── data_utils.py └── extract_entity.py ├── gpt2_model.py ├── image └── model.jpg ├── multi-bleu.perl ├── test.py ├── train_attribute_label.py ├── train_attribute_ot.py ├── train_ot.py └── train_single.py /OT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syw1996/TableGPT/HEAD/OT.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syw1996/TableGPT/HEAD/README.md -------------------------------------------------------------------------------- /data/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syw1996/TableGPT/HEAD/data/data_utils.py -------------------------------------------------------------------------------- /data/extract_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syw1996/TableGPT/HEAD/data/extract_entity.py -------------------------------------------------------------------------------- /gpt2_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syw1996/TableGPT/HEAD/gpt2_model.py -------------------------------------------------------------------------------- /image/model.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syw1996/TableGPT/HEAD/image/model.jpg -------------------------------------------------------------------------------- /multi-bleu.perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syw1996/TableGPT/HEAD/multi-bleu.perl -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syw1996/TableGPT/HEAD/test.py -------------------------------------------------------------------------------- /train_attribute_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syw1996/TableGPT/HEAD/train_attribute_label.py -------------------------------------------------------------------------------- /train_attribute_ot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syw1996/TableGPT/HEAD/train_attribute_ot.py -------------------------------------------------------------------------------- /train_ot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syw1996/TableGPT/HEAD/train_ot.py -------------------------------------------------------------------------------- /train_single.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syw1996/TableGPT/HEAD/train_single.py --------------------------------------------------------------------------------