pram25arindam commited on
Commit
58a2794
·
verified ·
1 Parent(s): 58b1514

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -11,8 +11,9 @@ from transformers import pipeline
11
  # "/d2fde4ca965ba893255479612e4b801aa6500029")
12
  #text_summary = pipeline("summarization", model=model_path, torch_dtype=torch.bfloat16)
13
 
14
- text_summary = pipeline("summarization", model="sshleifer/distilbart-cnn-6-6/snapshots", torch_dtype=torch.bfloat16)
15
  #text='''Elon Reeve Musk (/ˈiːlɒn mʌsk/; born June 28, 1971) is a businessman and political figure known for his key roles in the automotive company Tesla, Inc. and the space company SpaceX. He is also known for his ownership of X Corp. (the company that operates the social media platform X, formerly Twitter), and his role in the founding of the Boring Company, xAI, Neuralink, and OpenAI. Musk is the wealthiest individual in the world; as of January 2025, Forbes estimates his net worth to be US$427 billion.'''
 
 
16
 
17
  def summary(input):
18
  output = text_summary(input)
 
11
  # "/d2fde4ca965ba893255479612e4b801aa6500029")
12
  #text_summary = pipeline("summarization", model=model_path, torch_dtype=torch.bfloat16)
13
 
 
14
  #text='''Elon Reeve Musk (/ˈiːlɒn mʌsk/; born June 28, 1971) is a businessman and political figure known for his key roles in the automotive company Tesla, Inc. and the space company SpaceX. He is also known for his ownership of X Corp. (the company that operates the social media platform X, formerly Twitter), and his role in the founding of the Boring Company, xAI, Neuralink, and OpenAI. Musk is the wealthiest individual in the world; as of January 2025, Forbes estimates his net worth to be US$427 billion.'''
15
+ text_summary = pipeline("summarization", model="sshleifer/distilbart-cnn-6-6", torch_dtype=torch.bfloat16)
16
+
17
 
18
  def summary(input):
19
  output = text_summary(input)