akoksal commited on
Commit
70432c2
·
1 Parent(s): d88c0f6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -2
app.py CHANGED
@@ -40,13 +40,17 @@ with gr.Blocks() as demo:
40
  with gr.Column():
41
  gr.Markdown(
42
  """# LongForm: Optimizing Instruction Tuning for Long Text Generation with Corpus Extraction
 
43
  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.
44
 
45
- Paper: https://arxiv.org/abs/2304.08460
46
- Dataset and Models: https://github.com/akoksal/LongForm
 
47
 
48
  **Tips**:
 
49
  1. Use the "[EOI]" token at the end of the instruction for OPT models. It adds automatically if you forget it.
 
50
  2. The LongForm dataset and models mainly focus on long text generation and have limitations regarding structured prediction tasks in NLP.
51
  """
52
  )
 
40
  with gr.Column():
41
  gr.Markdown(
42
  """# LongForm: Optimizing Instruction Tuning for Long Text Generation with Corpus Extraction
43
+
44
  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.
45
 
46
+ **Paper**: https://arxiv.org/abs/2304.08460
47
+
48
+ **Dataset and Models*: https://github.com/akoksal/LongForm
49
 
50
  **Tips**:
51
+
52
  1. Use the "[EOI]" token at the end of the instruction for OPT models. It adds automatically if you forget it.
53
+
54
  2. The LongForm dataset and models mainly focus on long text generation and have limitations regarding structured prediction tasks in NLP.
55
  """
56
  )