antonkurylo commited on
Commit
e0718f7
1 Parent(s): 695133a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +8 -6
README.md CHANGED
@@ -50,12 +50,14 @@ More information needed
50
  from transformers import pipeline
51
  summarizer = pipeline("summarization", model="antonkurylo/t5-base-news_headlines")
52
 
53
- text = '''Jeff: Can I train a 🤗 Transformers model on Amazon SageMaker?
54
- Philipp: Sure you can use the new Hugging Face Deep Learning Container.
55
- Jeff: ok.
56
- Jeff: and how can I get started?
57
- Jeff: where can I find documentation?
58
- Philipp: ok, ok you can find everything here. https://huggingface.co/blog/the-partnership-amazon-sagemaker-and-hugging-face
 
 
59
  '''
60
  summarizer(text)
61
  ```
 
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
54
+ imperative of embracing sustainability. Driven by ecological necessity and
55
+ evolving consumer expectations, this shift necessitates a complete overhaul
56
+ of traditional business models towards a circular economy, emphasizing
57
+ resource efficiency and waste reduction.
58
+ Adopting sustainable practices offers businesses multiple benefits: reduced operating costs, enhanced brand reputation, and increased customer loyalty. As such, sustainability is a strategic tool for businesses looking to future-proof themselves.
59
+ Companies like Unilever and Tesla serve as models of this transformation. Unilever's sustainable living brands have outperformed the rest of their portfolio, while Tesla's entire business model centres around sustainability, proving that environmental consciousness and profitability can coexist.
60
+ In our interconnected world, the impacts of businesses extend to society and the environment, necessitating alignment with the global push for sustainability. With sustainability no longer being a choice but an imperative, businesses adopting it will be the leaders in the new business paradigm. In a nutshell, to thrive in the evolving market, embracing sustainability is the new business imperative. The future of business is unquestionably green.
61
  '''
62
  summarizer(text)
63
  ```