├── lbwj ├── README.md └── python_sample │ ├── all_1.py │ └── common_words.py ├── sfks ├── README.md ├── baseline │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── config │ │ ├── default.config │ │ └── model.config │ ├── config_parser │ │ ├── __init__.py │ │ └── parser.py │ ├── dataset │ │ ├── JsonFromFiles.py │ │ └── __init__.py │ ├── formatter │ │ ├── Basic.py │ │ ├── WordFormatter.py │ │ └── __init__.py │ ├── main.py │ ├── model │ │ ├── __init__.py │ │ ├── encoder │ │ │ ├── BertEncoder.py │ │ │ ├── CNNEncoder.py │ │ │ ├── GRUEncoder.py │ │ │ ├── LSTMEncoder.py │ │ │ └── __init__.py │ │ ├── layer │ │ │ ├── Attention.py │ │ │ └── __init__.py │ │ ├── loss.py │ │ ├── optimizer.py │ │ └── qa │ │ │ ├── qa.py │ │ │ └── util.py │ ├── reader │ │ ├── __init__.py │ │ └── reader.py │ ├── test.py │ ├── tools │ │ ├── __init__.py │ │ ├── accuracy_init.py │ │ ├── accuracy_tool.py │ │ ├── dataset_tool.py │ │ ├── eval_tool.py │ │ ├── init_tool.py │ │ ├── output_init.py │ │ ├── output_tool.py │ │ ├── test_tool.py │ │ └── train_tool.py │ ├── train.py │ └── utils │ │ └── cutter.py └── python_sample │ ├── main.py │ └── main.zip ├── sfzy ├── README.md ├── baseline │ ├── README.md │ ├── main.py │ └── main.zip ├── envs │ ├── README.md │ ├── pytorch1.5.1.md │ ├── tf1.14.md │ └── tf2.0.md ├── evaluate │ └── result.json └── python_sample │ ├── main.py │ └── main.zip └── ydlj ├── README.md ├── baseline ├── .DS_Store ├── README ├── __init__.py ├── config.py ├── data_process.py ├── model │ ├── GFN.py │ ├── __init__.py │ ├── __pycache__ │ │ ├── GFN.cpython-36.pyc │ │ ├── GFN.cpython-37.pyc │ │ ├── __init__.cpython-36.pyc │ │ ├── __init__.cpython-37.pyc │ │ └── modeling.cpython-36.pyc │ └── modeling.py ├── preprocess.sh ├── run_cail.py ├── tools │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── __init__.cpython-37.pyc │ │ ├── data_helper.cpython-36.pyc │ │ ├── data_helper.cpython-37.pyc │ │ ├── data_iterator_pack.cpython-36.pyc │ │ ├── data_iterator_pack.cpython-37.pyc │ │ └── utils.cpython-36.pyc │ ├── data_helper.py │ ├── data_iterator_pack.py │ └── utils.py └── train.sh ├── data └── train.json ├── evaluate ├── evaluate.py └── result.json └── model ├── main.py └── submit_sample.zip /lbwj/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/lbwj/README.md -------------------------------------------------------------------------------- /lbwj/python_sample/all_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/lbwj/python_sample/all_1.py -------------------------------------------------------------------------------- /lbwj/python_sample/common_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/lbwj/python_sample/common_words.py -------------------------------------------------------------------------------- /sfks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfks/README.md -------------------------------------------------------------------------------- /sfks/baseline/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfks/baseline/.gitignore -------------------------------------------------------------------------------- /sfks/baseline/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfks/baseline/LICENSE -------------------------------------------------------------------------------- /sfks/baseline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfks/baseline/README.md -------------------------------------------------------------------------------- /sfks/baseline/config/default.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfks/baseline/config/default.config -------------------------------------------------------------------------------- /sfks/baseline/config/model.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfks/baseline/config/model.config -------------------------------------------------------------------------------- /sfks/baseline/config_parser/__init__.py: -------------------------------------------------------------------------------- 1 | from .parser import create_config 2 | -------------------------------------------------------------------------------- /sfks/baseline/config_parser/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfks/baseline/config_parser/parser.py -------------------------------------------------------------------------------- /sfks/baseline/dataset/JsonFromFiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfks/baseline/dataset/JsonFromFiles.py -------------------------------------------------------------------------------- /sfks/baseline/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfks/baseline/dataset/__init__.py -------------------------------------------------------------------------------- /sfks/baseline/formatter/Basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfks/baseline/formatter/Basic.py -------------------------------------------------------------------------------- /sfks/baseline/formatter/WordFormatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfks/baseline/formatter/WordFormatter.py -------------------------------------------------------------------------------- /sfks/baseline/formatter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfks/baseline/formatter/__init__.py -------------------------------------------------------------------------------- /sfks/baseline/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfks/baseline/main.py -------------------------------------------------------------------------------- /sfks/baseline/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfks/baseline/model/__init__.py -------------------------------------------------------------------------------- /sfks/baseline/model/encoder/BertEncoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfks/baseline/model/encoder/BertEncoder.py -------------------------------------------------------------------------------- /sfks/baseline/model/encoder/CNNEncoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfks/baseline/model/encoder/CNNEncoder.py -------------------------------------------------------------------------------- /sfks/baseline/model/encoder/GRUEncoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfks/baseline/model/encoder/GRUEncoder.py -------------------------------------------------------------------------------- /sfks/baseline/model/encoder/LSTMEncoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfks/baseline/model/encoder/LSTMEncoder.py -------------------------------------------------------------------------------- /sfks/baseline/model/encoder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sfks/baseline/model/layer/Attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfks/baseline/model/layer/Attention.py -------------------------------------------------------------------------------- /sfks/baseline/model/layer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sfks/baseline/model/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfks/baseline/model/loss.py -------------------------------------------------------------------------------- /sfks/baseline/model/optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfks/baseline/model/optimizer.py -------------------------------------------------------------------------------- /sfks/baseline/model/qa/qa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfks/baseline/model/qa/qa.py -------------------------------------------------------------------------------- /sfks/baseline/model/qa/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfks/baseline/model/qa/util.py -------------------------------------------------------------------------------- /sfks/baseline/reader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfks/baseline/reader/__init__.py -------------------------------------------------------------------------------- /sfks/baseline/reader/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfks/baseline/reader/reader.py -------------------------------------------------------------------------------- /sfks/baseline/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfks/baseline/test.py -------------------------------------------------------------------------------- /sfks/baseline/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sfks/baseline/tools/accuracy_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfks/baseline/tools/accuracy_init.py -------------------------------------------------------------------------------- /sfks/baseline/tools/accuracy_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfks/baseline/tools/accuracy_tool.py -------------------------------------------------------------------------------- /sfks/baseline/tools/dataset_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfks/baseline/tools/dataset_tool.py -------------------------------------------------------------------------------- /sfks/baseline/tools/eval_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfks/baseline/tools/eval_tool.py -------------------------------------------------------------------------------- /sfks/baseline/tools/init_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfks/baseline/tools/init_tool.py -------------------------------------------------------------------------------- /sfks/baseline/tools/output_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfks/baseline/tools/output_init.py -------------------------------------------------------------------------------- /sfks/baseline/tools/output_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfks/baseline/tools/output_tool.py -------------------------------------------------------------------------------- /sfks/baseline/tools/test_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfks/baseline/tools/test_tool.py -------------------------------------------------------------------------------- /sfks/baseline/tools/train_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfks/baseline/tools/train_tool.py -------------------------------------------------------------------------------- /sfks/baseline/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfks/baseline/train.py -------------------------------------------------------------------------------- /sfks/baseline/utils/cutter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfks/baseline/utils/cutter.py -------------------------------------------------------------------------------- /sfks/python_sample/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfks/python_sample/main.py -------------------------------------------------------------------------------- /sfks/python_sample/main.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfks/python_sample/main.zip -------------------------------------------------------------------------------- /sfzy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfzy/README.md -------------------------------------------------------------------------------- /sfzy/baseline/README.md: -------------------------------------------------------------------------------- 1 | # LEAD基线说明 2 | 3 | 本代码使用LEAD策略生成摘要。 4 | 5 | 其中,LEAD针对数据分布特征做了简要改进。 6 | 7 | -------------------------------------------------------------------------------- /sfzy/baseline/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfzy/baseline/main.py -------------------------------------------------------------------------------- /sfzy/baseline/main.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfzy/baseline/main.zip -------------------------------------------------------------------------------- /sfzy/envs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfzy/envs/README.md -------------------------------------------------------------------------------- /sfzy/envs/pytorch1.5.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfzy/envs/pytorch1.5.1.md -------------------------------------------------------------------------------- /sfzy/envs/tf1.14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfzy/envs/tf1.14.md -------------------------------------------------------------------------------- /sfzy/envs/tf2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfzy/envs/tf2.0.md -------------------------------------------------------------------------------- /sfzy/evaluate/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfzy/evaluate/result.json -------------------------------------------------------------------------------- /sfzy/python_sample/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfzy/python_sample/main.py -------------------------------------------------------------------------------- /sfzy/python_sample/main.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/sfzy/python_sample/main.zip -------------------------------------------------------------------------------- /ydlj/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/ydlj/README.md -------------------------------------------------------------------------------- /ydlj/baseline/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/ydlj/baseline/.DS_Store -------------------------------------------------------------------------------- /ydlj/baseline/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/ydlj/baseline/README -------------------------------------------------------------------------------- /ydlj/baseline/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/ydlj/baseline/__init__.py -------------------------------------------------------------------------------- /ydlj/baseline/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/ydlj/baseline/config.py -------------------------------------------------------------------------------- /ydlj/baseline/data_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/ydlj/baseline/data_process.py -------------------------------------------------------------------------------- /ydlj/baseline/model/GFN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/ydlj/baseline/model/GFN.py -------------------------------------------------------------------------------- /ydlj/baseline/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/ydlj/baseline/model/__init__.py -------------------------------------------------------------------------------- /ydlj/baseline/model/__pycache__/GFN.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/ydlj/baseline/model/__pycache__/GFN.cpython-36.pyc -------------------------------------------------------------------------------- /ydlj/baseline/model/__pycache__/GFN.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/ydlj/baseline/model/__pycache__/GFN.cpython-37.pyc -------------------------------------------------------------------------------- /ydlj/baseline/model/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/ydlj/baseline/model/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /ydlj/baseline/model/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/ydlj/baseline/model/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /ydlj/baseline/model/__pycache__/modeling.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/ydlj/baseline/model/__pycache__/modeling.cpython-36.pyc -------------------------------------------------------------------------------- /ydlj/baseline/model/modeling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/ydlj/baseline/model/modeling.py -------------------------------------------------------------------------------- /ydlj/baseline/preprocess.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/ydlj/baseline/preprocess.sh -------------------------------------------------------------------------------- /ydlj/baseline/run_cail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/ydlj/baseline/run_cail.py -------------------------------------------------------------------------------- /ydlj/baseline/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/ydlj/baseline/tools/__init__.py -------------------------------------------------------------------------------- /ydlj/baseline/tools/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/ydlj/baseline/tools/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /ydlj/baseline/tools/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/ydlj/baseline/tools/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /ydlj/baseline/tools/__pycache__/data_helper.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/ydlj/baseline/tools/__pycache__/data_helper.cpython-36.pyc -------------------------------------------------------------------------------- /ydlj/baseline/tools/__pycache__/data_helper.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/ydlj/baseline/tools/__pycache__/data_helper.cpython-37.pyc -------------------------------------------------------------------------------- /ydlj/baseline/tools/__pycache__/data_iterator_pack.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/ydlj/baseline/tools/__pycache__/data_iterator_pack.cpython-36.pyc -------------------------------------------------------------------------------- /ydlj/baseline/tools/__pycache__/data_iterator_pack.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/ydlj/baseline/tools/__pycache__/data_iterator_pack.cpython-37.pyc -------------------------------------------------------------------------------- /ydlj/baseline/tools/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/ydlj/baseline/tools/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /ydlj/baseline/tools/data_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/ydlj/baseline/tools/data_helper.py -------------------------------------------------------------------------------- /ydlj/baseline/tools/data_iterator_pack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/ydlj/baseline/tools/data_iterator_pack.py -------------------------------------------------------------------------------- /ydlj/baseline/tools/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/ydlj/baseline/tools/utils.py -------------------------------------------------------------------------------- /ydlj/baseline/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/ydlj/baseline/train.sh -------------------------------------------------------------------------------- /ydlj/data/train.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/ydlj/data/train.json -------------------------------------------------------------------------------- /ydlj/evaluate/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/ydlj/evaluate/evaluate.py -------------------------------------------------------------------------------- /ydlj/evaluate/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/ydlj/evaluate/result.json -------------------------------------------------------------------------------- /ydlj/model/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/ydlj/model/main.py -------------------------------------------------------------------------------- /ydlj/model/submit_sample.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-ai-law-challenge/CAIL2020/HEAD/ydlj/model/submit_sample.zip --------------------------------------------------------------------------------