Commit
·
2bf2319
1
Parent(s):
53d252e
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Overview
|
2 |
+
|
3 |
+
Converted from these datasets:
|
4 |
+
> https://huggingface.co/datasets/jordiclive/scored_summarization_datasets -> labeled "data" \
|
5 |
+
> https://huggingface.co/datasets/jordiclive/wikipedia-summary-dataset -> labeled "wiki" \
|
6 |
+
|
7 |
+
wiki dataset is split between "description" (cleaner, more popular articles) and "no description" (less clean, less popular)
|
8 |
+
|
9 |
+
Consist of parquet files with cols: `instruction, response, source`
|
10 |
+
|
11 |
+
full_to_summary (fts) consist of the following prompts infront of the instruction \
|
12 |
+
the full text is the instruction in these files
|
13 |
+
```
|
14 |
+
full_to_summary = [
|
15 |
+
"Summarize the following text: {}",
|
16 |
+
"Make a summary of the following text: {}",
|
17 |
+
"Provide a summary of the following text: {}",
|
18 |
+
"Change the following text into a summary: {}",
|
19 |
+
"Create a summary of the following text: {}",
|
20 |
+
"Give a brief overview of the following text: {}",
|
21 |
+
"Condense the following text into a summary: {}",
|
22 |
+
"Provide a condensed version of the following text: {}",
|
23 |
+
"Make a brief summary of the following text: {}",
|
24 |
+
"Create a condensed overview of the following text: {}",
|
25 |
+
]
|
26 |
+
```
|
27 |
+
|
28 |
+
summary_to_full (stf) consist of the following prompts infront of the instruction \
|
29 |
+
the summary is the instruction in these files
|
30 |
+
```
|
31 |
+
summary_to_full = [
|
32 |
+
"Write the original text for the following summary: {}",
|
33 |
+
"Write the full text for the following summary: {}",
|
34 |
+
"Provide the inputted source that provided the following summary: {}",
|
35 |
+
"Revert the following summary back into the original text: {}",
|
36 |
+
"Write a text that could've provided the following summary: {}",
|
37 |
+
"Write the original text that generated the following summary: {}",
|
38 |
+
"Provide the full text for the following summary: {}",
|
39 |
+
"Create the inputted source that provided the following summary: {}",
|
40 |
+
"Write the original source that provided the following summary: {}",
|
41 |
+
"Convert the following summary back into the original text: {}",
|
42 |
+
"Provide a text that could have been the input for the following summary: {}",
|
43 |
+
]
|
44 |
+
```
|