Kevin Xu commited on
Commit
707f2a2
1 Parent(s): 5254d8d
Files changed (1) hide show
  1. app.py +6 -4
app.py CHANGED
@@ -9,8 +9,8 @@ io2 = gr.Interface.load("huggingface/google/pegasus-cnn_dailymail")
9
  io3 = gr.Interface.load("huggingface/google/pegasus-xsum")
10
  io4 = gr.Interface.load('huggingface/google/pegasus-newsroom')
11
  io5 = gr.Interface.load("huggingface/google/pegasus-multi_news")
12
- # io6 = gr.Interface.load("huggingface/google/pegasus-reddit_tifu")
13
- # io7 = gr.Interface.load('huggingface/google/pegasus-arxiv')
14
  # io8 = gr.Interface.load("huggingface/google/pegasus-pubmed")
15
  # io9 = gr.Interface.load("huggingface/google/pegasus-wikihow")
16
  # io10 = gr.Interface.load('huggingface/google/pegasus-gigaword')
@@ -18,7 +18,7 @@ io5 = gr.Interface.load("huggingface/google/pegasus-multi_news")
18
  # io12 = gr.Interface.load("huggingface/google/pegasus-big_patent")
19
  # io13 = gr.Interface.load("huggingface/google/pegasus-aeslc")
20
 
21
- desc = "Let Hugging Face models summarize texts for you. Note: Shorter articles generate faster summaries. This summarizer uses bart-large-cnn model by Facebook, pegasus by Google and distilbart-cnn-12-6 by Sshleifer. You can compare these models against each other on their performances. Sample Text input is provided!"
22
 
23
  x = """ What's A Lawyer Now? Simply put… there is a tremendous manifest and latent need for just about ALL legal services. There are solid interrelated sociological and structural reasons for this including considerable societal divisiveness, meaningful changes in laws and regulations, and fast-paced disruptive technological innovations. At the same time, there are psychological factors that strongly prompt the need for various legal services such as hubris, arrogance, and Machiavellianism. The opportunities, across a wide spectrum of law firm practice areas, have probably never been greater. Although there is a tremendous amount of untapped potential for legal services, there is one major obstacle to opening the spigot – lawyers. From solo practices to mega-international law firms, many lawyers because of their inherent inclinations (e.g., risk aversion) reinforced by their education and firm experience are not going to take advantage of the incredible latent demand for legal services. As commoditization is rampant in the legal profession, the path to success is not just having “excellent knowledge of the law.” Being technical proficient is table stakes. Unfortunately, a large percentage of lawyers equate legal competence with the success of their practice, and the great majority is proven wrong. What is also required of lawyers at all levels, in order to truly excel in today’s legal environment, is a touch of entrepreneurialism coupled with some business savvy. The opportunities for lawyers are most everywhere from inside their own book of business to the clients of other lawyers in their firms to the many other types of professionals they know or can fairly easily get to know. The complication is that when it comes to the business development side of legal work, few lawyers have the expertise to create a steady stream of new work for their practices or their firms. Unless lawyers adopt these best practices, it is unlikely that they will be able to greatly benefit from all the tremendous pent up demand that exists for legal services. Conversely, for those lawyers who take a proactive and systemic approach to business development, their practices could easily grow exponentially.
24
  """
@@ -47,7 +47,9 @@ iface = Parallel(io1,
47
  io3,
48
  io4,
49
  io5,
50
- # io6, io7, io8, io9, io10, io11, io12, io13,
 
 
51
  theme='huggingface',
52
  title= 'Hugging Face Text Summarizer',
53
  description = desc,
 
9
  io3 = gr.Interface.load("huggingface/google/pegasus-xsum")
10
  io4 = gr.Interface.load('huggingface/google/pegasus-newsroom')
11
  io5 = gr.Interface.load("huggingface/google/pegasus-multi_news")
12
+ io6 = gr.Interface.load("huggingface/google/pegasus-reddit_tifu")
13
+ io7 = gr.Interface.load('huggingface/google/pegasus-arxiv')
14
  # io8 = gr.Interface.load("huggingface/google/pegasus-pubmed")
15
  # io9 = gr.Interface.load("huggingface/google/pegasus-wikihow")
16
  # io10 = gr.Interface.load('huggingface/google/pegasus-gigaword')
 
18
  # io12 = gr.Interface.load("huggingface/google/pegasus-big_patent")
19
  # io13 = gr.Interface.load("huggingface/google/pegasus-aeslc")
20
 
21
+ desc = "Let Hugging Face models summarize texts for you. Note: Shorter articles generate faster summaries. This summarizer uses pegasus by Google. You can compare these models against each other on their performances."
22
 
23
  x = """ What's A Lawyer Now? Simply put… there is a tremendous manifest and latent need for just about ALL legal services. There are solid interrelated sociological and structural reasons for this including considerable societal divisiveness, meaningful changes in laws and regulations, and fast-paced disruptive technological innovations. At the same time, there are psychological factors that strongly prompt the need for various legal services such as hubris, arrogance, and Machiavellianism. The opportunities, across a wide spectrum of law firm practice areas, have probably never been greater. Although there is a tremendous amount of untapped potential for legal services, there is one major obstacle to opening the spigot – lawyers. From solo practices to mega-international law firms, many lawyers because of their inherent inclinations (e.g., risk aversion) reinforced by their education and firm experience are not going to take advantage of the incredible latent demand for legal services. As commoditization is rampant in the legal profession, the path to success is not just having “excellent knowledge of the law.” Being technical proficient is table stakes. Unfortunately, a large percentage of lawyers equate legal competence with the success of their practice, and the great majority is proven wrong. What is also required of lawyers at all levels, in order to truly excel in today’s legal environment, is a touch of entrepreneurialism coupled with some business savvy. The opportunities for lawyers are most everywhere from inside their own book of business to the clients of other lawyers in their firms to the many other types of professionals they know or can fairly easily get to know. The complication is that when it comes to the business development side of legal work, few lawyers have the expertise to create a steady stream of new work for their practices or their firms. Unless lawyers adopt these best practices, it is unlikely that they will be able to greatly benefit from all the tremendous pent up demand that exists for legal services. Conversely, for those lawyers who take a proactive and systemic approach to business development, their practices could easily grow exponentially.
24
  """
 
47
  io3,
48
  io4,
49
  io5,
50
+ io6,
51
+ io7,
52
+ # io8, io9, io10, io11, io12, io13,
53
  theme='huggingface',
54
  title= 'Hugging Face Text Summarizer',
55
  description = desc,