yakine commited on
Commit
0dc54fb
·
verified ·
1 Parent(s): d3ff5e2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -45,7 +45,7 @@ Columns: {columns}
45
  Instructions:
46
 
47
  Output only the tabular data in valid CSV format.
48
- Include the header row followed by at least 100 data rows.
49
  Do not generate any additional text, explanations, comments, or code.
50
  Ensure that the values for each column are contextually appropriate.
51
 
@@ -55,12 +55,11 @@ Value1,Value2,Value3
55
  Value4,Value5,Value6
56
  """
57
 
58
-
59
  # Define generation parameters
60
  generation_params = {
61
  "top_p": 0.90,
62
  "temperature": 0.8,
63
- "max_new_tokens": 1024,
64
  "return_full_text": False,
65
  "use_cache": False
66
  }
 
45
  Instructions:
46
 
47
  Output only the tabular data in valid CSV format.
48
+ Include the header row followed by the data rows.
49
  Do not generate any additional text, explanations, comments, or code.
50
  Ensure that the values for each column are contextually appropriate.
51
 
 
55
  Value4,Value5,Value6
56
  """
57
 
 
58
  # Define generation parameters
59
  generation_params = {
60
  "top_p": 0.90,
61
  "temperature": 0.8,
62
+ "max_new_tokens": 2048,
63
  "return_full_text": False,
64
  "use_cache": False
65
  }