├── .gitmodules ├── README.md ├── analyze_chunk.py ├── cache └── .gitignore ├── chunk_sents.py ├── data ├── .gitignore └── README.md ├── models ├── .gitignore └── README.md ├── parse_atts.py ├── parse_sents.py ├── pyutils ├── .gitignore ├── __init__.py ├── attparser │ ├── __init__.py │ ├── baseParser.py │ ├── clefParser.py │ ├── cocoParser.py │ ├── cocoParser_punct.py │ ├── config.py │ ├── head.py │ └── simpleParser.py └── corenlp │ ├── .gitignore │ ├── __init__.py │ ├── __main__.py │ ├── client.py │ ├── corenlp.py │ ├── default.properties │ └── progressbar.py ├── senna_sents.py ├── write_atts_html.py └── write_chunk_html.py /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichengunc/refer-parser2/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichengunc/refer-parser2/HEAD/README.md -------------------------------------------------------------------------------- /analyze_chunk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichengunc/refer-parser2/HEAD/analyze_chunk.py -------------------------------------------------------------------------------- /cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /chunk_sents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichengunc/refer-parser2/HEAD/chunk_sents.py -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !README.md 3 | -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichengunc/refer-parser2/HEAD/data/README.md -------------------------------------------------------------------------------- /models/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !README.md 3 | -------------------------------------------------------------------------------- /models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichengunc/refer-parser2/HEAD/models/README.md -------------------------------------------------------------------------------- /parse_atts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichengunc/refer-parser2/HEAD/parse_atts.py -------------------------------------------------------------------------------- /parse_sents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichengunc/refer-parser2/HEAD/parse_sents.py -------------------------------------------------------------------------------- /pyutils/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /pyutils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyutils/attparser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyutils/attparser/baseParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichengunc/refer-parser2/HEAD/pyutils/attparser/baseParser.py -------------------------------------------------------------------------------- /pyutils/attparser/clefParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichengunc/refer-parser2/HEAD/pyutils/attparser/clefParser.py -------------------------------------------------------------------------------- /pyutils/attparser/cocoParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichengunc/refer-parser2/HEAD/pyutils/attparser/cocoParser.py -------------------------------------------------------------------------------- /pyutils/attparser/cocoParser_punct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichengunc/refer-parser2/HEAD/pyutils/attparser/cocoParser_punct.py -------------------------------------------------------------------------------- /pyutils/attparser/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichengunc/refer-parser2/HEAD/pyutils/attparser/config.py -------------------------------------------------------------------------------- /pyutils/attparser/head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichengunc/refer-parser2/HEAD/pyutils/attparser/head.py -------------------------------------------------------------------------------- /pyutils/attparser/simpleParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichengunc/refer-parser2/HEAD/pyutils/attparser/simpleParser.py -------------------------------------------------------------------------------- /pyutils/corenlp/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /pyutils/corenlp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichengunc/refer-parser2/HEAD/pyutils/corenlp/__init__.py -------------------------------------------------------------------------------- /pyutils/corenlp/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichengunc/refer-parser2/HEAD/pyutils/corenlp/__main__.py -------------------------------------------------------------------------------- /pyutils/corenlp/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichengunc/refer-parser2/HEAD/pyutils/corenlp/client.py -------------------------------------------------------------------------------- /pyutils/corenlp/corenlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichengunc/refer-parser2/HEAD/pyutils/corenlp/corenlp.py -------------------------------------------------------------------------------- /pyutils/corenlp/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichengunc/refer-parser2/HEAD/pyutils/corenlp/default.properties -------------------------------------------------------------------------------- /pyutils/corenlp/progressbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichengunc/refer-parser2/HEAD/pyutils/corenlp/progressbar.py -------------------------------------------------------------------------------- /senna_sents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichengunc/refer-parser2/HEAD/senna_sents.py -------------------------------------------------------------------------------- /write_atts_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichengunc/refer-parser2/HEAD/write_atts_html.py -------------------------------------------------------------------------------- /write_chunk_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichengunc/refer-parser2/HEAD/write_chunk_html.py --------------------------------------------------------------------------------