File tree 1 file changed +2
-10
lines changed
1 file changed +2
-10
lines changed Original file line number Diff line number Diff line change @@ -49,17 +49,8 @@ def add_color_to_text(s, color=31):
49
49
return "\033 [{}m" .format (color ) + s + "\033 [0m"
50
50
51
51
52
- def toxic_detection (client , response ):
53
- analyze_request = {
54
- 'comment' : {'text' : response },
55
- 'requestedAttributes' : {'TOXICITY' : {}}
56
- }
57
-
58
- toxic_score = client .comments ().analyze (body = analyze_request ).execute ()
59
- return toxic_score ["attributeScores" ]["TOXICITY" ]["summaryScore" ]
60
-
61
-
62
52
def segment_components (conversation , cipher ):
53
+ # get the fluency and toxic score from the response
63
54
expert = encode_expert_dict [cipher ]
64
55
65
56
toxic_grammar = conversation ["toxic" ].lower ()
@@ -112,6 +103,7 @@ def segment_components(conversation, cipher):
112
103
"fluency" : g }
113
104
114
105
def filter_function (conversation , cipher , bleu ):
106
+ # the filter used to filter invalid responses
115
107
seg = segment_components (conversation , cipher )
116
108
bleu_score = bleu .sentence_score (hypothesis = seg ["encode_query" ],references = [seg ["encode_response" ]]).score
117
109
fluency = seg ["fluency" ]
You can’t perform that action at this time.
0 commit comments