Amitontheweb commited on
Commit
7bc9abe
1 Parent(s): 93061c7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py CHANGED
@@ -412,18 +412,26 @@ with gr.Blocks() as demo:
412
  gr.Markdown (
413
  """
414
 
 
415
  ## About Params Playground
416
  Tweak and test model parameters and see how they affect generated text.
417
 
418
  Sampling - with Top P, Top K
 
419
  Simple Beam search - with Early Stopping and Temperature
 
420
  Diversity Beam search - with Group Diversity Penalty
 
421
  Contrastive search - with Penalty Alpha
422
 
 
423
  Other parameters:
424
 
 
425
  Length penalty
 
426
  Repetition penalty
 
427
  No repeat n-gram size
428
 
429
  """
 
412
  gr.Markdown (
413
  """
414
 
415
+
416
  ## About Params Playground
417
  Tweak and test model parameters and see how they affect generated text.
418
 
419
  Sampling - with Top P, Top K
420
+
421
  Simple Beam search - with Early Stopping and Temperature
422
+
423
  Diversity Beam search - with Group Diversity Penalty
424
+
425
  Contrastive search - with Penalty Alpha
426
 
427
+
428
  Other parameters:
429
 
430
+
431
  Length penalty
432
+
433
  Repetition penalty
434
+
435
  No repeat n-gram size
436
 
437
  """