Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -344,8 +344,8 @@ def generate_text(df, country, theme):
|
|
| 344 |
1992: -1.20%
|
| 345 |
Cumulative: -3.57%
|
| 346 |
|
| 347 |
-
|
| 348 |
-
In the adverse scenario, the growth in Australia was -0.43% in 1990. It worsened to -1.99% in 1991 and slightly improved to -1.20% in 1992. The total cumulative adverse growth was -3.57
|
| 349 |
|
| 350 |
Now, using the following data in {country}, describe and provibe how the adverse growth changed each year, whether it increased or decreased, worsened or improved:
|
| 351 |
{row_str}
|
|
@@ -373,8 +373,8 @@ def generate_text(df, country, theme):
|
|
| 373 |
"""
|
| 374 |
print(year)
|
| 375 |
# Generate the descriptive text using the model
|
| 376 |
-
result = table_to_text(prompt, max_length=240, temperature = 0.7, top_p = 0.3, do_sample = False)[0]['generated_text']
|
| 377 |
-
|
| 378 |
return result
|
| 379 |
# Global variable
|
| 380 |
stored_paragraphs_1 = []
|
|
|
|
| 344 |
1992: -1.20%
|
| 345 |
Cumulative: -3.57%
|
| 346 |
|
| 347 |
+
Anwser:
|
| 348 |
+
In the adverse scenario, the growth in Australia was -0.43% in 1990. It worsened to -1.99% in 1991 and slightly improved to -1.20% in 1992. The total cumulative adverse growth was -3.57% from 1990 to 1992.
|
| 349 |
|
| 350 |
Now, using the following data in {country}, describe and provibe how the adverse growth changed each year, whether it increased or decreased, worsened or improved:
|
| 351 |
{row_str}
|
|
|
|
| 373 |
"""
|
| 374 |
print(year)
|
| 375 |
# Generate the descriptive text using the model
|
| 376 |
+
#result = table_to_text(prompt, max_length=240, temperature = 0.7, top_p = 0.3, do_sample = False)[0]['generated_text']
|
| 377 |
+
result = table_to_text(prompt, max_length=240)[0]['generated_text']
|
| 378 |
return result
|
| 379 |
# Global variable
|
| 380 |
stored_paragraphs_1 = []
|