├── .gitignore ├── LICENSE ├── README.md ├── data_list.csv ├── main.py ├── output └── sample.json └── parser.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlpcl-lab/ace2005-preprocessing/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlpcl-lab/ace2005-preprocessing/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlpcl-lab/ace2005-preprocessing/HEAD/README.md -------------------------------------------------------------------------------- /data_list.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlpcl-lab/ace2005-preprocessing/HEAD/data_list.csv -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlpcl-lab/ace2005-preprocessing/HEAD/main.py -------------------------------------------------------------------------------- /output/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlpcl-lab/ace2005-preprocessing/HEAD/output/sample.json -------------------------------------------------------------------------------- /parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlpcl-lab/ace2005-preprocessing/HEAD/parser.py --------------------------------------------------------------------------------