tann9949 commited on
Commit
70090b3
Β·
1 Parent(s): 9f8e195

update README

Browse files
Files changed (1) hide show
  1. README.md +3 -2
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
- - `relevant_laws: List[Dict[str, str]]` β€” A list of relevant laws that should be used as context when answering the question. **The value is formatted as string since Huggingface's dataset won't allow parsing nested dictionary. Make sure you parse this to dictionary for later use**.
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