Pushkar27 commited on
Commit
16dc7b8
·
1 Parent(s): fa4778c

CRITICAL: Remove all escaped underscores from YAML metadata

Browse files
Files changed (1) hide show
  1. README.md +7 -8
README.md CHANGED
@@ -4,7 +4,7 @@ language:
4
  license: apache-2.0
5
  library_name: transformers
6
  tags:
7
- - text2text-generation
8
  - dialogue
9
  - gricean-maxims
10
  - cooperative-communication
@@ -16,13 +16,13 @@ datasets:
16
  - topical-chat
17
  metrics:
18
  - bleu
19
- pipeline_tag: text2text-generation
20
  base_model: google-t5/t5-base
21
  model-index:
22
  - name: GriceBench-Repair
23
  results:
24
  - task:
25
- type: text2text-generation
26
  name: Gricean Maxim Violation Repair
27
  dataset:
28
  name: Topical-Chat (GriceBench repair validation split, N=401)
@@ -161,14 +161,14 @@ Per-maxim BLEU scores on the repair validation set (N=401):
161
 
162
  **Three-layer degeneracy prevention:**
163
  1. Violation-type-aware decoding (nucleus sampling for Manner, beam for others)
164
- 2. Post-generation multi-signal filter (punctuation bursts, trigram repetition, exclamation density)
165
- 3. Graceful fallback — returns original with `is_fallback: True` flag if all attempts fail
166
 
167
  ---
168
 
169
  ## Why Relation Violations Use Retrieval
170
 
171
- Relation violations mean the *entire response* is off-topic — there is nothing to edit. T5 in a seq2seq framing can only edit, not generate entirely new content. We route Relation repairs to a FAISS index over 50,000 Topical-Chat responses (MRR > 0.70, Top-1 accuracy > 60%). See the GitHub repo for the full retrieval system.
172
 
173
  ---
174
 
@@ -185,8 +185,7 @@ Relation violations mean the *entire response* is off-topic — there is nothing
185
 
186
  ## Limitations & Biases
187
 
188
- - **Hallucination Risk:** Like all seq2seq models, T5 can occasionally introduce factual errors during repair. Always use the "Quality" detector after repair to verify.
189
- - **Dependency on Context:** Repair quality is heavily dependent on the provided "Context" being accurate and sufficient.
190
  - **Mode Collapse:** Avoid using beam search for "Manner" repairs.
191
 
192
  ---
 
4
  license: apache-2.0
5
  library_name: transformers
6
  tags:
7
+ - text-generation
8
  - dialogue
9
  - gricean-maxims
10
  - cooperative-communication
 
16
  - topical-chat
17
  metrics:
18
  - bleu
19
+ pipeline_tag: text-generation
20
  base_model: google-t5/t5-base
21
  model-index:
22
  - name: GriceBench-Repair
23
  results:
24
  - task:
25
+ type: text-generation
26
  name: Gricean Maxim Violation Repair
27
  dataset:
28
  name: Topical-Chat (GriceBench repair validation split, N=401)
 
161
 
162
  **Three-layer degeneracy prevention:**
163
  1. Violation-type-aware decoding (nucleus sampling for Manner, beam for others)
164
+ 2. Post-generation multi-signal filter
165
+ 3. Graceful fallback with `is_fallback: True` flag
166
 
167
  ---
168
 
169
  ## Why Relation Violations Use Retrieval
170
 
171
+ Relation violations mean the *entire response* is off-topic — there is nothing to edit. We route Relation repairs to a FAISS index over 50,000 Topical-Chat responses (MRR > 0.70, Top-1 accuracy > 60%).
172
 
173
  ---
174
 
 
185
 
186
  ## Limitations & Biases
187
 
188
+ - **Hallucination Risk:** T5 can occasionally introduce factual errors during repair. Always verify with the "Quality" detector.
 
189
  - **Mode Collapse:** Avoid using beam search for "Manner" repairs.
190
 
191
  ---