├── .gitignore ├── README.md ├── annotation ├── c3-d-dev.txt ├── c3-d-test.txt ├── c3-m-dev.txt └── c3-m-test.txt ├── bert ├── LICENSE ├── __init__.py ├── convert_tf_checkpoint_to_pytorch.py ├── extract_features.py ├── modeling.py ├── optimization.py ├── run_classifier.py └── tokenization.py ├── data ├── c3-d-dev.json ├── c3-d-test.json ├── c3-d-train.json ├── c3-m-dev.json ├── c3-m-test.json └── c3-m-train.json └── license.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlpdata/c3/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlpdata/c3/HEAD/README.md -------------------------------------------------------------------------------- /annotation/c3-d-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlpdata/c3/HEAD/annotation/c3-d-dev.txt -------------------------------------------------------------------------------- /annotation/c3-d-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlpdata/c3/HEAD/annotation/c3-d-test.txt -------------------------------------------------------------------------------- /annotation/c3-m-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlpdata/c3/HEAD/annotation/c3-m-dev.txt -------------------------------------------------------------------------------- /annotation/c3-m-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlpdata/c3/HEAD/annotation/c3-m-test.txt -------------------------------------------------------------------------------- /bert/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlpdata/c3/HEAD/bert/LICENSE -------------------------------------------------------------------------------- /bert/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlpdata/c3/HEAD/bert/__init__.py -------------------------------------------------------------------------------- /bert/convert_tf_checkpoint_to_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlpdata/c3/HEAD/bert/convert_tf_checkpoint_to_pytorch.py -------------------------------------------------------------------------------- /bert/extract_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlpdata/c3/HEAD/bert/extract_features.py -------------------------------------------------------------------------------- /bert/modeling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlpdata/c3/HEAD/bert/modeling.py -------------------------------------------------------------------------------- /bert/optimization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlpdata/c3/HEAD/bert/optimization.py -------------------------------------------------------------------------------- /bert/run_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlpdata/c3/HEAD/bert/run_classifier.py -------------------------------------------------------------------------------- /bert/tokenization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlpdata/c3/HEAD/bert/tokenization.py -------------------------------------------------------------------------------- /data/c3-d-dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlpdata/c3/HEAD/data/c3-d-dev.json -------------------------------------------------------------------------------- /data/c3-d-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlpdata/c3/HEAD/data/c3-d-test.json -------------------------------------------------------------------------------- /data/c3-d-train.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlpdata/c3/HEAD/data/c3-d-train.json -------------------------------------------------------------------------------- /data/c3-m-dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlpdata/c3/HEAD/data/c3-m-dev.json -------------------------------------------------------------------------------- /data/c3-m-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlpdata/c3/HEAD/data/c3-m-test.json -------------------------------------------------------------------------------- /data/c3-m-train.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlpdata/c3/HEAD/data/c3-m-train.json -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- 1 | C3 dataset is intended for non-commercial research purpose only. 2 | --------------------------------------------------------------------------------