luke-thorburn commited on
Commit
479c9dd
1 Parent(s): 844f07a

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 has the same model parameters as [`gpt-neo-2.7B`](https://huggingface.co/EleutherAI/gpt-neo-2.7B), but with an additional soft prompt which has been optimized 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
+ [prepended soft prompt][original claim]
21
+
22
+ Pros:
23
+ - [reason 1]
24
+ - [reason 2]
25
+ ...
26
+ - [reason n]
27
+ - [generated reason]
28
+ ```
29
+
30
+ # Dataset
31
+
32
+ The soft prompt was trained 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.