Update README.md
Browse files
README.md
CHANGED
@@ -72,20 +72,20 @@ pipe(do_closed_qa(test_article, question), max_new_tokens=128, temperature=0)[0]
|
|
72 |
We trained using the following three minimalistic prompt templates for the three tasks in STX:
|
73 |
|
74 |
* SNOW
|
75 |
-
```
|
76 |
f"""元の日本語:
|
77 |
{original_ja}
|
78 |
|
79 |
シンプルな日本語:"""
|
80 |
```
|
81 |
* TyDiQA
|
82 |
-
```
|
83 |
f"""{passage_text}
|
84 |
|
85 |
{question_text}"""
|
86 |
```
|
87 |
* XLSum
|
88 |
-
```
|
89 |
f"""記事:
|
90 |
{article_text}
|
91 |
|
|
|
72 |
We trained using the following three minimalistic prompt templates for the three tasks in STX:
|
73 |
|
74 |
* SNOW
|
75 |
+
```python
|
76 |
f"""元の日本語:
|
77 |
{original_ja}
|
78 |
|
79 |
シンプルな日本語:"""
|
80 |
```
|
81 |
* TyDiQA
|
82 |
+
```python
|
83 |
f"""{passage_text}
|
84 |
|
85 |
{question_text}"""
|
86 |
```
|
87 |
* XLSum
|
88 |
+
```python
|
89 |
f"""記事:
|
90 |
{article_text}
|
91 |
|