Update README.md
Browse files
README.md
CHANGED
|
@@ -35,11 +35,12 @@ The PCJD consists of two components: the "Original Set"(ori) and the "Adversaria
|
|
| 35 |
## format
|
| 36 |
The input for baseline testing meets the following format:
|
| 37 |
```python
|
| 38 |
-
根据案情描述和已有步骤仅给出一个推理。如果是结论则直接输出<e></e>,例如<e>盗窃罪</e>。如果是步骤则直接输出<p></p>,例如<p>步骤1:…</p>\n案情描述:input\n已有推理步骤:\
|
| 39 |
```
|
| 40 |
In this regard, we have provided a simple processing method in the ‘\code’:
|
| 41 |
```python
|
| 42 |
from main import get_args
|
|
|
|
| 43 |
args = get_args()
|
| 44 |
warp = WarpLJP(args=args)
|
| 45 |
for data in dataset:
|
|
|
|
| 35 |
## format
|
| 36 |
The input for baseline testing meets the following format:
|
| 37 |
```python
|
| 38 |
+
根据案情描述和已有步骤仅给出一个推理。如果是结论则直接输出<e></e>,例如<e>盗窃罪</e>。如果是步骤则直接输出<p></p>,例如<p>步骤1:…</p>\n案情描述:{input}\n已有推理步骤:\n{steps}\n
|
| 39 |
```
|
| 40 |
In this regard, we have provided a simple processing method in the ‘\code’:
|
| 41 |
```python
|
| 42 |
from main import get_args
|
| 43 |
+
from utils.warp import WarpLJP
|
| 44 |
args = get_args()
|
| 45 |
warp = WarpLJP(args=args)
|
| 46 |
for data in dataset:
|