akoksal commited on
Commit
90a6525
1 Parent(s): bd5c786

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +29 -1
README.md CHANGED
@@ -40,4 +40,32 @@ inference:
40
  top_p: 0.9
41
  do_sample: true
42
  max_length: 100
43
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
40
  top_p: 0.9
41
  do_sample: true
42
  max_length: 100
43
+ ---
44
+
45
+ ## LongForm-OPT-6.7B
46
+ The LongForm dataset is created by leveraging English corpus examples with augmented instructions. We select a diverse set of human-written documents from existing corpora such as C4 and Wikipedia and generate instructions for the given documents via LLMs. Then, we extend these examples with structured corpora examples such as Stack Exchange and WikiHow and task examples such as question answering, email writing, grammar error correction, story/poem generation, and text summarization.
47
+
48
+
49
+ Github Repo: https://github.com/akoksal/LongForm
50
+
51
+ LongForm-**OPT-2.7B**: https://huggingface.co/akoksal/LongForm-OPT-2.7B
52
+
53
+ LongForm-**OPT-6.7B**: https://huggingface.co/akoksal/LongForm-OPT-6.7B
54
+
55
+
56
+ ## Evaluation
57
+ We provide in-depth evaluation of LongForm models and baselines in the paper. We present the METEOR scores of models in out-of-domain datasets. In all tasks, Recipe Generation (RGen), long-form question answering (ELI5), short story generation (WritingPrompts/WP), LongForm models outperform prior instruction-tuned models.
58
+ | | **All** | **Recipe Generation** | **ELI5** | **Writing Prompts** |
59
+ |-----------------------|---------|-----------------------------------|----------|---------------------|
60
+ | **T0++** | 10.9 | 18.7 | 3.8 | 10.2 |
61
+ | **Tk-Instruct** | 6.3 | 12.9* | 3.6 | 2.4 |
62
+ | **Flan-T5** | 10.6 | 20.9* | 3.5 | 7.4 |
63
+ | **Alpaca-LLaMA-7B** | 14.6 | 19.5 | 12.5 | 11.8 |
64
+ | **OPT-30B** | 11.1 | 18.6 | 12.2 | 2.6 |
65
+ | **[LongForm-T5-XL](https://huggingface.co/akoksal/LongForm-T5-XL)** | 16.3 | 20.2 | 18.3 | 10.6 |
66
+ | **[LongForm-OPT-2.7B](https://huggingface.co/akoksal/LongForm-OPT-2.7B)** | 17.8 | 15.5 | 17.9 | **19.9** |
67
+ | **[LongForm-OPT-6.7B](https://huggingface.co/akoksal/LongForm-OPT-6.7B)** | 17.7 | 16.9 | 17.2 | 19.0 |
68
+ | **LongForm-LLaMA-7B** | **19.7** | **21.7** | **18.6** | 18.9 |
69
+
70
+ ## Limitations
71
+ The LongForm dataset and models mainly focus on long text generation and have limitations regarding structured prediction tasks in NLP. Additionally, we observe that LongForm models may present hallucination problems similar to those found in LLMs.