prithivida / parrot_paraphraser_on_T5

huggingface.co
Total runs: 1.4M
24-hour runs: 431
7-day runs: 4.5K
30-day runs: -20.1K
Model's Last Updated: May 18 2021
text2text-generation

Introduction of parrot_paraphraser_on_T5

Model Details of parrot_paraphraser_on_T5

Parrot

1. What is Parrot?

Parrot is a paraphrase based utterance augmentation framework purpose built to accelerate training NLU models. A paraphrase framework is more than just a paraphrasing model. For more details on the library and usage please refer to the github page

Installation
pip install git+https://github.com/PrithivirajDamodaran/Parrot_Paraphraser.git
Quickstart


from parrot import Parrot
import torch
import warnings
warnings.filterwarnings("ignore")

''' 
uncomment to get reproducable paraphrase generations
def random_state(seed):
  torch.manual_seed(seed)
  if torch.cuda.is_available():
    torch.cuda.manual_seed_all(seed)

random_state(1234)
'''

#Init models (make sure you init ONLY once if you integrate this to your code)
parrot = Parrot(model_tag="prithivida/parrot_paraphraser_on_T5", use_gpu=False)

phrases = ["Can you recommed some upscale restaurants in Newyork?",
           "What are the famous places we should not miss in Russia?"
]

for phrase in phrases:
  print("-"*100)
  print("Input_phrase: ", phrase)
  print("-"*100)
  para_phrases = parrot.augment(input_phrase=phrase)
  for para_phrase in para_phrases:
   print(para_phrase)
----------------------------------------------------------------------
Input_phrase: Can you recommed some upscale restaurants in Newyork?
----------------------------------------------------------------------
list some excellent restaurants to visit in new york city?
what upscale restaurants do you recommend in new york?
i want to try some upscale restaurants in new york?
recommend some upscale restaurants in newyork?
can you recommend some high end restaurants in newyork?
can you recommend some upscale restaurants in new york?
can you recommend some upscale restaurants in newyork?
----------------------------------------------------------------------
Input_phrase: What are the famous places we should not miss in Russia
----------------------------------------------------------------------
what should we not miss when visiting russia?
recommend some of the best places to visit in russia?
list some of the best places to visit in russia?
can you list the top places to visit in russia?
show the places that we should not miss in russia?
list some famous places which we should not miss in russia?
Knobs

 para_phrases = parrot.augment(input_phrase=phrase, 
                               diversity_ranker="levenshtein",
                               do_diverse=False, 
                               max_return_phrases = 10, 
                               max_length=32, 
                               adequacy_threshold = 0.99, 
                               fluency_threshold = 0.90)
2. Why Parrot?

Huggingface lists 12 paraphrase models, RapidAPI lists 7 fremium and commercial paraphrasers like QuillBot , Rasa has discussed an experimental paraphraser for augmenting text data here , Sentence-transfomers offers a paraphrase mining utility and NLPAug offers word level augmentation with a PPDB (a multi-million paraphrase database). While these attempts at paraphrasing are great, there are still some gaps and paraphrasing is NOT yet a mainstream option for text augmentation in building NLU models....Parrot is a humble attempt to fill some of these gaps.

What is a good paraphrase? Almost all conditioned text generation models are validated on 2 factors, (1) if the generated text conveys the same meaning as the original context (Adequacy) (2) if the text is fluent / grammatically correct english (Fluency). For instance Neural Machine Translation outputs are tested for Adequacy and Fluency. But a good paraphrase should be adequate and fluent while being as different as possible on the surface lexical form. With respect to this definition, the 3 key metrics that measures the quality of paraphrases are:

  • Adequacy (Is the meaning preserved adequately?)
  • Fluency (Is the paraphrase fluent English?)
  • Diversity (Lexical / Phrasal / Syntactical) (How much has the paraphrase changed the original sentence?)

Parrot offers knobs to control Adequacy, Fluency and Diversity as per your needs.

What makes a paraphraser a good augmentor? For training a NLU model we just don't need a lot of utterances but utterances with intents and slots/entities annotated. Typical flow would be:

  • Given an input utterance + input annotations a good augmentor spits out N output paraphrases while preserving the intent and slots.
  • The output paraphrases are then converted into annotated data using the input annotations that we got in step 1.
  • The annotated data created out of the output paraphrases then makes the training dataset for your NLU model.

But in general being a generative model paraphrasers doesn't guarantee to preserve the slots/entities. So the ability to generate high quality paraphrases in a constrained fashion without trading off the intents and slots for lexical dissimilarity makes a paraphraser a good augmentor. More on this in section 3 below

3. Scope

In the space of conversational engines, knowledge bots are to which we ask questions like "when was the Berlin wall teared down?" , transactional bots are to which we give commands like "Turn on the music please" and voice assistants are the ones which can do both answer questions and action our commands. Parrot mainly foucses on augmenting texts typed-into or spoken-to conversational interfaces for building robust NLU models. ( So usually people neither type out or yell out long paragraphs to conversational interfaces. Hence the pre-trained model is trained on text samples of maximum length of 32. )

While Parrot predominantly aims to be a text augmentor for building good NLU models, it can also be used as a pure-play paraphraser.

Runs of prithivida parrot_paraphraser_on_T5 on huggingface.co

1.4M
Total runs
431
24-hour runs
3.8K
3-day runs
4.5K
7-day runs
-20.1K
30-day runs

More Information About parrot_paraphraser_on_T5 huggingface.co Model

parrot_paraphraser_on_T5 huggingface.co

parrot_paraphraser_on_T5 huggingface.co is an AI model on huggingface.co that provides parrot_paraphraser_on_T5's model effect (), which can be used instantly with this prithivida parrot_paraphraser_on_T5 model. huggingface.co supports a free trial of the parrot_paraphraser_on_T5 model, and also provides paid use of the parrot_paraphraser_on_T5. Support call parrot_paraphraser_on_T5 model through api, including Node.js, Python, http.

parrot_paraphraser_on_T5 huggingface.co Url

https://huggingface.co/prithivida/parrot_paraphraser_on_T5

prithivida parrot_paraphraser_on_T5 online free

parrot_paraphraser_on_T5 huggingface.co is an online trial and call api platform, which integrates parrot_paraphraser_on_T5's modeling effects, including api services, and provides a free online trial of parrot_paraphraser_on_T5, you can try parrot_paraphraser_on_T5 online for free by clicking the link below.

prithivida parrot_paraphraser_on_T5 online free url in huggingface.co:

https://huggingface.co/prithivida/parrot_paraphraser_on_T5

parrot_paraphraser_on_T5 install

parrot_paraphraser_on_T5 is an open source model from GitHub that offers a free installation service, and any user can find parrot_paraphraser_on_T5 on GitHub to install. At the same time, huggingface.co provides the effect of parrot_paraphraser_on_T5 install, users can directly use parrot_paraphraser_on_T5 installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

parrot_paraphraser_on_T5 install url in huggingface.co:

https://huggingface.co/prithivida/parrot_paraphraser_on_T5

Url of parrot_paraphraser_on_T5

parrot_paraphraser_on_T5 huggingface.co Url

Provider of parrot_paraphraser_on_T5 huggingface.co

prithivida
ORGANIZATIONS

Other API from prithivida

huggingface.co

Total runs: 15
Run Growth: -9
Growth Rate: -60.00%
Updated: August 14 2024