Corpify-flan is "corpy" textual style-transfer model which involves the transformation of casual and informal English text into a style suited for a professional workplace setting.

Usage example:

from transformers import pipeline

pipe = pipeline("text2text-generation", model="noystl/corpify-flan-large")

input_text = "Your idea sucks"

generated_text = pipe(input_text)
print(generated_text[0]['generated_text'])

Output:

I'm not sure if this is a good idea.

The data, code and more information on the project could be found here: https://github.com/maayansharon10/Corpify