├── .gitignore ├── LICENSE ├── README.md ├── config ├── generator │ ├── parser_t5_10.yaml │ ├── parser_t5_20.yaml │ ├── parser_t5_5.yaml │ ├── reader_t5_10.yaml │ ├── reader_t5_20.yaml │ └── reader_t5_5.yaml └── retriever │ ├── parser_bert_bert.yaml │ ├── parser_bert_tapas.yaml │ ├── reader_bert_bert.yaml │ └── reader_bert_tapas.yaml ├── data └── data.tar.gz └── src ├── dataloader.py ├── generator_eval.py ├── generator_train.py ├── model.py ├── retriever_eval.py ├── retriever_train.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean0042/Open_WikiTable/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean0042/Open_WikiTable/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean0042/Open_WikiTable/HEAD/README.md -------------------------------------------------------------------------------- /config/generator/parser_t5_10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean0042/Open_WikiTable/HEAD/config/generator/parser_t5_10.yaml -------------------------------------------------------------------------------- /config/generator/parser_t5_20.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean0042/Open_WikiTable/HEAD/config/generator/parser_t5_20.yaml -------------------------------------------------------------------------------- /config/generator/parser_t5_5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean0042/Open_WikiTable/HEAD/config/generator/parser_t5_5.yaml -------------------------------------------------------------------------------- /config/generator/reader_t5_10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean0042/Open_WikiTable/HEAD/config/generator/reader_t5_10.yaml -------------------------------------------------------------------------------- /config/generator/reader_t5_20.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean0042/Open_WikiTable/HEAD/config/generator/reader_t5_20.yaml -------------------------------------------------------------------------------- /config/generator/reader_t5_5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean0042/Open_WikiTable/HEAD/config/generator/reader_t5_5.yaml -------------------------------------------------------------------------------- /config/retriever/parser_bert_bert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean0042/Open_WikiTable/HEAD/config/retriever/parser_bert_bert.yaml -------------------------------------------------------------------------------- /config/retriever/parser_bert_tapas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean0042/Open_WikiTable/HEAD/config/retriever/parser_bert_tapas.yaml -------------------------------------------------------------------------------- /config/retriever/reader_bert_bert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean0042/Open_WikiTable/HEAD/config/retriever/reader_bert_bert.yaml -------------------------------------------------------------------------------- /config/retriever/reader_bert_tapas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean0042/Open_WikiTable/HEAD/config/retriever/reader_bert_tapas.yaml -------------------------------------------------------------------------------- /data/data.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean0042/Open_WikiTable/HEAD/data/data.tar.gz -------------------------------------------------------------------------------- /src/dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean0042/Open_WikiTable/HEAD/src/dataloader.py -------------------------------------------------------------------------------- /src/generator_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean0042/Open_WikiTable/HEAD/src/generator_eval.py -------------------------------------------------------------------------------- /src/generator_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean0042/Open_WikiTable/HEAD/src/generator_train.py -------------------------------------------------------------------------------- /src/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean0042/Open_WikiTable/HEAD/src/model.py -------------------------------------------------------------------------------- /src/retriever_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean0042/Open_WikiTable/HEAD/src/retriever_eval.py -------------------------------------------------------------------------------- /src/retriever_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean0042/Open_WikiTable/HEAD/src/retriever_train.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean0042/Open_WikiTable/HEAD/src/utils.py --------------------------------------------------------------------------------