Spaces:
Running
Running
File size: 1,222 Bytes
9c1d41d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
from pprint import pprint
from detoxify import Detoxify
import pandas as pd
class DetoxifyModerator(object):
def detect_toxicity(self,text):
results = Detoxify('original').predict(text)
return results
# def get_toxicity_report(self, toxicity_result):
# for key in toxicity_result:
# toxicity_result[key] = round(toxicity_result[key] * 100,2)
# return toxicity_result
def format_results(self,results):
# Convert the dictionary to a pandas DataFrame
df = pd.DataFrame(list(results.items()), columns=["Category", "Percentage"])
df["Percentage"] = df["Percentage"].apply(lambda x: f"{x:.2%}") # Format as percentage
return df
if __name__ == '__main__':
detoxify_moderator = DetoxifyModerator()
result = detoxify_moderator.detect_toxicity('To let the user select the target language for translation, you can add a dropdown menu in the Gradio interface. This will allow users to choose the target language before processing the video. Here\'s how you can modify the script to include this feature')
report = detoxify_moderator.get_toxicity_report(result)
pprint(report)
|