luke-thorburn commited on
Commit
70dd3ee
1 Parent(s): 7c8ae82

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +40 -0
README.md ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ tags:
5
+ - argumentation
6
+ license: apache-2.0
7
+ metrics:
8
+ - perplexity
9
+ ---
10
+
11
+ # Generate reasons that support a claim
12
+
13
+ This model is a version of [`gpt-neo-2.7B`](https://huggingface.co/EleutherAI/gpt-neo-2.7B), where all parameters (both weights and biases) have been finetuned on the task of generating reasons that support a claim, optionally given some example reasons. It was trained as part of a University of Melbourne [research project](https://github.com/Hunt-Laboratory/language-model-optimization) evaluating how large language models can best be optimized to perform argumentative reasoning tasks.
14
+
15
+ Code used for optimization and evaluation can be found in the project [GitHub repository](https://github.com/Hunt-Laboratory/language-model-optimization). A paper reporting on model evaluation is currently under review.
16
+
17
+ # Prompt Template
18
+
19
+ ```
20
+ List reasons why: [original claim]
21
+
22
+ Reasons:
23
+ * [reason 1]
24
+ * [reason 2]
25
+ ...
26
+ * [reason n]
27
+ * [generated reason]
28
+ ```
29
+
30
+ # Dataset
31
+
32
+ The parameters were finetuned using argument maps scraped from the crowdsourced argument-mapping platform [Kialo](https://kialo.com/).
33
+
34
+ # Limitations and Biases
35
+
36
+ The model is a finetuned version of [`gpt-neo-2.7B`](https://huggingface.co/EleutherAI/gpt-neo-2.7B), so likely has many of the same limitations and biases. Additionally, note that while the goal of the model is to produce coherent and valid reasoning, many generated model outputs will be illogical or nonsensical and should not be relied upon.
37
+
38
+ # Acknowledgements
39
+
40
+ This research was funded by the Australian Department of Defence and the Office of National Intelligence under the AI for Decision Making Program, delivered in partnership with the Defence Science Institute in Victoria, Australia.