Caffin commited on
Commit
daedd63
Β·
verified Β·
1 Parent(s): b818291

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -79,13 +79,13 @@ def generate_svg(text_description):
79
 
80
  gen_config = dict(
81
  do_sample=True,
82
- temperature=0.6,
83
  top_p=0.6,
84
- top_k=50,
85
  repetition_penalty=1.05,
86
  num_beams=3,
87
  num_return_sequences=1,
88
- early_stopping=True,
89
  max_new_tokens=4096,
90
  )
91
 
 
79
 
80
  gen_config = dict(
81
  do_sample=True,
82
+ temperature=0.8,
83
  top_p=0.6,
84
+ top_k=100,
85
  repetition_penalty=1.05,
86
  num_beams=3,
87
  num_return_sequences=1,
88
+ early_stopping=False,
89
  max_new_tokens=4096,
90
  )
91