Create prompt.txt
Browse files- prompt.txt +20 -0
prompt.txt
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Imagine that you are a journalist working for a fact-checking organization and you are looking for semantically identical copies of claim C. For two texts to be copies they can have a different wording and tonality but they cannot be about, for example, different entities or events. For the following texts T1 and T2 find the ones which are semantically identical to C and could be refuted with the same fact-checking article. Here is one example.
|
2 |
+
Input:
|
3 |
+
C: Geflüchtete müssten ihren Müll in Ludwigsburg in Baden-Württemberg nicht mehr trennen.
|
4 |
+
T1: Ludwigsburg ist gnadenlos in Sachen Mülltrennung. Wer falsch trennt, dem kann die Tonne gesperrt werden. Nur für Flüchtlinge macht die Politik jetzt eine Ausnahme: Vor Aufnahmelagern stehen nur noch Restmülltonnen, weil deren Bewohnern das Trennen nicht zuzumuten ist.
|
5 |
+
T2: In der Unterkunft in Grünbühl-Sonnenberg in Ludwigsburg ist nur die Biomülltonne durch eine Restmülltonne ersetzt worden. Es gab und gibt dort weiterhin verschiedene Wertstofftonnen.
|
6 |
+
JSON-Output:
|
7 |
+
{{"T1":True, "T2":False}}
|
8 |
+
Here is a second example
|
9 |
+
Input:
|
10 |
+
C: Zu einem Video über E-Fuels aus Freiberg heißt es, Deutschland lehne die Einführung von „Benzin aus CO2“ ab.
|
11 |
+
T1: E-Fuels werden in Deutschland mit Hilfe von Strom aus erneuerbaren Energien, Wasser und CO2 aus der Luft hergestellt und setzen damit im Gegensatz zu herkömmlichen Kraft- und Brennstoffen kein zusätzliches CO2 frei, sondern sind in der Gesamtbilanz CO2-neutral.
|
12 |
+
T2: Geniale Erfindung: Benzin aus CO2, Deutschland lehnt Einführung ab!
|
13 |
+
JSON-Output:
|
14 |
+
{{"T1":False, "T2":True}}
|
15 |
+
Now do it yourself for the following claim C. Your output must always be a JSON object with only 2 keys “T1” and “T2”, do not explain yourself or output anything else.
|
16 |
+
Input:
|
17 |
+
C: CLAIM_PLACEHOLDER
|
18 |
+
T1: POST_PLACEHOLDER1
|
19 |
+
T2: POST_PLACEHOLDER1
|
20 |
+
JSON-Output:
|