tann9949
commited on
Commit
Β·
70090b3
1
Parent(s):
9f8e195
update README
Browse files
README.md
CHANGED
@@ -74,9 +74,10 @@ The training split of `nitibench-ccl` can be found in the [WangchanX-Legal-ThaiC
|
|
74 |
|
75 |
Each data point contains four columns:
|
76 |
- `question: str` β A question relevant to the `relevant_laws`.
|
|
|
|
|
77 |
- `answer: str` β The answer to the question based on the `relevant_laws`, provided without the reasoning steps.
|
78 |
-
- `
|
79 |
-
- `reference_answer: str` β The original answer generated by an LLM, which has been revised and edited by legal experts to include both the reasoning steps and the final answer.
|
80 |
|
81 |
Formally, given the data triple \((q, T=\{p_1, p_2, \dots, p_K\}, y)\), \(q\) represents the `question`, \(T\) represents `relevant_laws`, and \(y\) represents the `answer`.
|
82 |
|
|
|
74 |
|
75 |
Each data point contains four columns:
|
76 |
- `question: str` β A question relevant to the `relevant_laws`.
|
77 |
+
- `answer_full: str` β The original answer generated by an LLM, which has been revised and edited by legal experts to include both the reasoning steps and the final answer.
|
78 |
+
- `relevant_laws: List[Dict[str, str]]` β A list of relevant law name, section, and contents.
|
79 |
- `answer: str` β The answer to the question based on the `relevant_laws`, provided without the reasoning steps.
|
80 |
+
- `reference_laws: List[Dict[str, str]]` - A list of referenced law mentioned in `relevant_laws` column.
|
|
|
81 |
|
82 |
Formally, given the data triple \((q, T=\{p_1, p_2, \dots, p_K\}, y)\), \(q\) represents the `question`, \(T\) represents `relevant_laws`, and \(y\) represents the `answer`.
|
83 |
|