├── .idea ├── encodings.xml ├── misc.xml ├── modules.xml ├── t2d_discourseparser.iml ├── vcs.xml └── workspace.xml ├── LICENSE ├── README.md ├── dataset ├── __init__.py └── cdtb.py ├── evaluate.py ├── interface.py ├── new_ctb.py ├── parse.py ├── pipeline.py ├── requirements.txt ├── rst_dev_description.txt ├── sample.txt ├── sample.xml ├── segmenter ├── __init__.py ├── gcn │ ├── __init__.py │ ├── model.py │ ├── segmenter.py │ ├── test.py │ └── train.py ├── rnn │ ├── __init__.py │ ├── model.py │ ├── segmenter.py │ ├── test.py │ └── train.py └── svm │ ├── __init__.py │ ├── model.py │ ├── segmenter.py │ ├── test.py │ └── train.py ├── structure ├── __init__.py ├── nodes.py └── vocab.py ├── treebuilder ├── __init__.py ├── partptr │ ├── __init__.py │ ├── model.py │ ├── parser.py │ ├── test.py │ ├── train.py │ └── train_b.py └── shiftreduce │ ├── __init__.py │ ├── model.py │ ├── parser.py │ └── train.py └── util ├── __init__.py ├── berkely.py ├── eval.py └── ltp.py /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/t2d_discourseparser.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 12 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 47 | 48 | 55 | 56 | 57 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 |