antonkurylo
commited on
Commit
•
a06e35c
1
Parent(s):
e0718f7
Update README.md
Browse files
README.md
CHANGED
@@ -50,15 +50,20 @@ More information needed
|
|
50 |
from transformers import pipeline
|
51 |
summarizer = pipeline("summarization", model="antonkurylo/t5-base-news_headlines")
|
52 |
|
53 |
-
text =
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
|
|
|
|
|
|
|
|
|
|
62 |
summarizer(text)
|
63 |
```
|
64 |
|
|
|
50 |
from transformers import pipeline
|
51 |
summarizer = pipeline("summarization", model="antonkurylo/t5-base-news_headlines")
|
52 |
|
53 |
+
text = "As the demands of climate change grow, businesses are realizing the imperative of embracing sustainability." \
|
54 |
+
"Driven by ecological necessity and evolving consumer expectations, this shift necessitates a complete " \
|
55 |
+
"overhaul of traditional business models towards a circular economy, emphasizing resource efficiency and " \
|
56 |
+
"waste reduction.\nAdopting sustainable practices offers businesses multiple benefits: reduced operating " \
|
57 |
+
"costs, enhanced brand reputation, and increased customer loyalty. As such, sustainability is a strategic " \
|
58 |
+
"tool for businesses looking to future-proof themselves.\nCompanies like Unilever and Tesla serve as " \
|
59 |
+
"models of this transformation. Unilever's sustainable living brands have outperformed the rest of their " \
|
60 |
+
"portfolio, while Tesla's entire business model centres around sustainability, proving that environmental " \
|
61 |
+
"consciousness and profitability can coexist.\nIn our interconnected world, the impacts of businesses " \
|
62 |
+
"extend to society and the environment, necessitating alignment with the global push for sustainability. " \
|
63 |
+
"With sustainability no longer being a choice but an imperative, businesses adopting it will be the " \
|
64 |
+
"leaders in the new business paradigm. In a nutshell, to thrive in the evolving market, embracing " \
|
65 |
+
"sustainability is the new business imperative. The future of business is unquestionably green."
|
66 |
+
|
67 |
summarizer(text)
|
68 |
```
|
69 |
|