Skip to content

Commit 94a6484

Browse files
authored
Update utils.py
1 parent 0dcc02a commit 94a6484

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

utils.py

+2-10
Original file line numberDiff line numberDiff line change
@@ -49,17 +49,8 @@ def add_color_to_text(s, color=31):
4949
return "\033[{}m".format(color) + s + "\033[0m"
5050

5151

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-
6252
def segment_components(conversation, cipher):
53+
# get the fluency and toxic score from the response
6354
expert = encode_expert_dict[cipher]
6455

6556
toxic_grammar = conversation["toxic"].lower()
@@ -112,6 +103,7 @@ def segment_components(conversation, cipher):
112103
"fluency": g}
113104

114105
def filter_function(conversation, cipher, bleu):
106+
# the filter used to filter invalid responses
115107
seg = segment_components(conversation, cipher)
116108
bleu_score = bleu.sentence_score(hypothesis=seg["encode_query"],references=[seg["encode_response"]]).score
117109
fluency = seg["fluency"]

0 commit comments

Comments
 (0)