Add library name and paper link, improve description
Browse filesThis PR adds the `library_name` to the metadata, adds a direct link to the paper, improves the description in the model card and adds project page URL. The model uses the Transformers library, and the addition of the `library_name` will help users easily identify this.
README.md
CHANGED
|
@@ -1,13 +1,23 @@
|
|
| 1 |
---
|
| 2 |
-
|
|
|
|
| 3 |
datasets:
|
| 4 |
- china-ai-law-challenge/cail2018
|
| 5 |
language:
|
| 6 |
- zh
|
|
|
|
| 7 |
metrics:
|
| 8 |
- accuracy
|
| 9 |
- f1
|
| 10 |
-
base_model:
|
| 11 |
-
- google-bert/bert-base-chinese
|
| 12 |
pipeline_tag: text-classification
|
| 13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
base_model:
|
| 3 |
+
- google-bert/bert-base-chinese
|
| 4 |
datasets:
|
| 5 |
- china-ai-law-challenge/cail2018
|
| 6 |
language:
|
| 7 |
- zh
|
| 8 |
+
license: mit
|
| 9 |
metrics:
|
| 10 |
- accuracy
|
| 11 |
- f1
|
|
|
|
|
|
|
| 12 |
pipeline_tag: text-classification
|
| 13 |
+
library_name: transformers
|
| 14 |
+
---
|
| 15 |
+
|
| 16 |
+
# ⚖️ LegalDuet: Learning Effective Representations for Legal Judgment Prediction
|
| 17 |
+
|
| 18 |
+
This model, presented in the paper [LegalDuet: Learning Effective Representations for Legal Judgment Prediction through a Dual-View Legal Clue Reasoning](https://huggingface.co/papers/2401.15371), enhances the accuracy of Legal Judgment Prediction (LJP) by employing a dual-view legal reasoning mechanism. This mechanism combines Law Case Reasoning (using past legal decisions) and Legal Ground Reasoning (matching legal clues between criminal cases and legal decisions) to create a tailored embedding space for improved legal judgment prediction. LegalDuet achieves state-of-the-art performance on the CAIL2018 dataset.
|
| 19 |
+
|
| 20 |
+
The model is based on `google-bert/bert-base-chinese` and can be loaded using the Transformers library.
|
| 21 |
+
|
| 22 |
+
Code: https://github.com/NEUIR/LegalDuet
|
| 23 |
+
Project Page: http://cail.cipsc.org.cn/task_summit.html?raceID=1&cail_tag=2018
|