gitextract_bclkhkuw/ ├── DualGCN/ │ ├── build_vocab.sh │ ├── data_utils.py │ ├── dataset/ │ │ ├── Laptops_allennlp/ │ │ │ ├── test.json │ │ │ └── train.json │ │ ├── Laptops_corenlp/ │ │ │ ├── test.json │ │ │ └── train.json │ │ ├── Laptops_stanza/ │ │ │ ├── test.json │ │ │ └── train.json │ │ ├── Restaurants_allennlp/ │ │ │ ├── test.json │ │ │ └── train.json │ │ ├── Restaurants_corenlp/ │ │ │ ├── test.json │ │ │ └── train.json │ │ ├── Restaurants_stanza/ │ │ │ ├── test.json │ │ │ └── train.json │ │ ├── Tweets_allennlp/ │ │ │ ├── test.json │ │ │ └── train.json │ │ ├── Tweets_corenlp/ │ │ │ ├── test.json │ │ │ └── train.json │ │ └── Tweets_stanza/ │ │ ├── test.json │ │ └── train.json │ ├── glove/ │ │ └── readme.md │ ├── layers.py │ ├── models/ │ │ ├── atae_lstm.py │ │ ├── dualgcn.py │ │ ├── dualgcn_bert.py │ │ ├── ian.py │ │ ├── semgcn.py │ │ └── syngcn.py │ ├── prepare_vocab.py │ ├── run.sh │ ├── train.py │ └── tree.py ├── LAL-Parser/ │ ├── EVALB/ │ │ ├── COLLINS.prm │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README │ │ ├── bug/ │ │ │ ├── bug.gld │ │ │ ├── bug.rsl-new │ │ │ ├── bug.rsl-old │ │ │ └── bug.tst │ │ ├── evalb │ │ ├── evalb.c │ │ ├── evalb.dSYM/ │ │ │ └── Contents/ │ │ │ ├── Info.plist │ │ │ └── Resources/ │ │ │ └── DWARF/ │ │ │ └── evalb │ │ ├── new.prm │ │ ├── nk.prm │ │ ├── sample/ │ │ │ ├── sample.gld │ │ │ ├── sample.prm │ │ │ ├── sample.rsl │ │ │ └── sample.tst │ │ └── tgrep_proc.prl │ ├── best_model/ │ │ └── readme.md │ └── src_joint/ │ ├── KM_parser.py │ ├── absa_parser.py │ ├── const_decoder.pyx │ ├── dep_eval.py │ ├── dep_reader.py │ ├── evaluate.py │ ├── hpsg_decoder.pyx │ ├── main.py │ ├── makehp.py │ ├── pretrained_bert/ │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── convert_tf_checkpoint_to_pytorch.py │ │ ├── file_utils.py │ │ ├── modeling.py │ │ ├── optimization.py │ │ └── tokenization.py │ ├── pytorch_transformers/ │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── convert_gpt2_checkpoint_to_pytorch.py │ │ ├── convert_openai_checkpoint_to_pytorch.py │ │ ├── convert_pytorch_checkpoint_to_tf.py │ │ ├── convert_roberta_checkpoint_to_pytorch.py │ │ ├── convert_tf_checkpoint_to_pytorch.py │ │ ├── convert_transfo_xl_checkpoint_to_pytorch.py │ │ ├── convert_xlm_checkpoint_to_pytorch.py │ │ ├── convert_xlnet_checkpoint_to_pytorch.py │ │ ├── file_utils.py │ │ ├── modeling_auto.py │ │ ├── modeling_bert.py │ │ ├── modeling_gpt2.py │ │ ├── modeling_openai.py │ │ ├── modeling_roberta.py │ │ ├── modeling_transfo_xl.py │ │ ├── modeling_transfo_xl_utilities.py │ │ ├── modeling_utils.py │ │ ├── modeling_xlm.py │ │ ├── modeling_xlnet.py │ │ ├── optimization.py │ │ ├── tests/ │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── fixtures/ │ │ │ │ ├── input.txt │ │ │ │ ├── sample_text.txt │ │ │ │ └── test_sentencepiece.model │ │ │ ├── modeling_auto_test.py │ │ │ ├── modeling_bert_test.py │ │ │ ├── modeling_common_test.py │ │ │ ├── modeling_gpt2_test.py │ │ │ ├── modeling_openai_test.py │ │ │ ├── modeling_roberta_test.py │ │ │ ├── modeling_transfo_xl_test.py │ │ │ ├── modeling_xlm_test.py │ │ │ ├── modeling_xlnet_test.py │ │ │ ├── optimization_test.py │ │ │ ├── tokenization_auto_test.py │ │ │ ├── tokenization_bert_test.py │ │ │ ├── tokenization_gpt2_test.py │ │ │ ├── tokenization_openai_test.py │ │ │ ├── tokenization_roberta_test.py │ │ │ ├── tokenization_tests_commons.py │ │ │ ├── tokenization_transfo_xl_test.py │ │ │ ├── tokenization_utils_test.py │ │ │ ├── tokenization_xlm_test.py │ │ │ └── tokenization_xlnet_test.py │ │ ├── tokenization_auto.py │ │ ├── tokenization_bert.py │ │ ├── tokenization_gpt2.py │ │ ├── tokenization_openai.py │ │ ├── tokenization_roberta.py │ │ ├── tokenization_transfo_xl.py │ │ ├── tokenization_utils.py │ │ ├── tokenization_xlm.py │ │ └── tokenization_xlnet.py │ ├── test.py │ ├── transliterate.py │ ├── trees.py │ ├── utils.py │ ├── utils_io.py │ └── vocabulary.py ├── LICENSE ├── README.md └── requirements.txt