Files changed (1) hide show
  1. README.md +76 -1
README.md CHANGED
@@ -1 +1,76 @@
1
- The dataset used in the paper "AgentCourt: Simulating Court with Adversarial Evolvable Lawyer Agents" contains 550 cases, which can be divided into training and testing sets according to your needs.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ task_categories:
3
+ - text-generation
4
+ language:
5
+ - zh
6
+ ---
7
+ # Dataset Card for AgentCourt
8
+
9
+ ## Dataset Description
10
+ - **Repository:** [https://huggingface.co/datasets/youzi517/AgentCourt](https://huggingface.co/datasets/youzi517/AgentCourt)
11
+ - **Paper:** [AgentCourt: Simulating Court with Adversarial Evolvable Lawyer Agents](https://arxiv.org/abs/2408.08089)
12
+ - **GitHub:** [https://github.com/relic-yuexi/AgentCourt](https://github.com/relic-yuexi/AgentCourt)
13
+
14
+ ### Dataset Summary
15
+ AgentCourt is a dataset created for simulating court scenarios with adversarial evolvable lawyer agents. It contains 550 cases, each consisting of statements from both the plaintiff and the defendant. This dataset is designed to support research in legal AI, particularly in the areas of adversarial reasoning and court simulation. For more detailed information, code, and resources related to this project, please visit our [GitHub repository](https://github.com/relic-yuexi/AgentCourt).
16
+
17
+ ### Supported Tasks and Leaderboards
18
+ - `text-generation`: The dataset can be used to fine-tune language models for generating legal arguments or responses in a court setting.
19
+
20
+ ### Languages
21
+ The dataset is primarily in Chinese, focusing on legal language and terminology used in court settings.
22
+
23
+ ## Dataset Structure
24
+
25
+ ### Data Instances
26
+ Here's an example of a data instance in the dataset:
27
+ ```json
28
+ {
29
+ "caseId": "xxx",
30
+ "plaintiff_statement": "xxx",
31
+ "defendant_statement": "xxx"
32
+ }
33
+ ```
34
+
35
+ ### Data Fields
36
+ - `caseId`: A string identifier for each unique case.
37
+ - `plaintiff_statement`: A string containing the statement or argument presented by the plaintiff.
38
+ - `defendant_statement`: A string containing the statement or argument presented by the defendant.
39
+
40
+ ### Data Splits
41
+ The dataset contains 550 cases in total. Users can divide this into training and testing sets according to their specific needs. The paper does not specify a predetermined split.
42
+
43
+ ## Dataset Creation
44
+
45
+ ### Curation Rationale
46
+ This dataset was created to support research in simulating court scenarios with AI agents, particularly focusing on adversarial interactions between lawyer agents. The goal is to provide a resource for developing and testing AI models capable of understanding and generating legal arguments.
47
+
48
+ ## Considerations for Using the Data
49
+
50
+ ### Social Impact of Dataset
51
+ This dataset has the potential to contribute to the development of AI systems that can assist in legal processes, potentially improving access to legal services and enhancing the efficiency of court proceedings. However, it's important to note that AI systems trained on this data should not be seen as replacements for human legal professionals, but rather as tools to augment their capabilities.
52
+
53
+ ### Discussion of Biases
54
+ Users of this dataset should be aware that it may contain biases inherent in the legal system from which the cases are drawn. These could include biases related to language use, socioeconomic factors, or specific legal jurisdictions. Researchers and practitioners should carefully consider these potential biases when developing models based on this data.
55
+
56
+ ## Additional Information
57
+
58
+ ### Dataset Curators
59
+ This dataset was curated by Guhong Chen, Liyang Fan, Zihan Gong, Nan Xie, Zixuan Li, Ziqiang Liu, Chengming Li, Qiang Qu, Shiwen Ni, and Min Yang.
60
+
61
+ ### Citation Information
62
+ If you use this dataset in your research, please cite:
63
+ ```
64
+ @misc{chen2024agentcourtsimulatingcourtadversarial,
65
+ title={AgentCourt: Simulating Court with Adversarial Evolvable Lawyer Agents},
66
+ author={Guhong Chen and Liyang Fan and Zihan Gong and Nan Xie and Zixuan Li and Ziqiang Liu and Chengming Li and Qiang Qu and Shiwen Ni and Min Yang},
67
+ year={2024},
68
+ eprint={2408.08089},
69
+ archivePrefix={arXiv},
70
+ primaryClass={cs.CL},
71
+ url={https://arxiv.org/abs/2408.08089},
72
+ }
73
+ ```
74
+
75
+ ### Contributions
76
+ Thanks to the authors of the "AgentCourt: Simulating Court with Adversarial Evolvable Lawyer Agents" paper for creating and sharing this dataset. For more information, code, and resources, please visit our [GitHub repository](https://github.com/relic-yuexi/AgentCourt).