OfflineArcher / word_taboo.py
Jessie09's picture
Upload dataset
8014d08 verified
import concurrent.futures
import os
import re
import random
from typing import Optional, Tuple
from textblob import TextBlob, Word
HOME_DIR = os.environ.get("HOME")
with open(f"{HOME_DIR}/datasets/wordtaboo/all_target_words.txt", "r") as fp:
DEFAULT_WORD_LIST = fp.readlines()
DEFAULT_TRAIN_LIST = DEFAULT_WORD_LIST[:-300]
DEFAULT_EVAL_LIST = DEFAULT_WORD_LIST[-300:-100]
GAME_RULE_PROMPTS = [
"""Play the game of Adversarial Taboo. In this game, there are two players, an attacker and a defender.
At the beginning, the attacker is assigned a target word, with which the defender is not informed. The task of the attacker is to induce the defender to utter the target word unconciously, then the attacker win the game. However, the attacker is not allow to utter the target word, otherwise the attacker loses.
At the same time, the defender tries to figure out the target word. If the defender identifies the target word, he can say "I know the word! It is `target word`!". Then the defender wins. Remember, the defender can only guess the word once, otherwise he will directly lose the game.
The game has {max_turns} turns. if nobody wins during {max_turns} turns, there is a tie.
""",
"""
Engage in the strategic contest of Adversarial Taboo, a game involving two participants: one assumes the role of the attacker, while the other is the defender.
Initially, the attacker is secretly given a target word, which remains unknown to the defender. The attacker's objective is to cleverly prompt the defender to say the target word without realizing it. If the defender does so, the attacker triumphs. However, the attacker must refrain from saying the target word themselves; doing so results in an immediate loss.
Concurrently, the defender's goal is to deduce the target word. Upon successful identification, the defender may confidently declare, "I know the word! It is 'target word'!" If correct, the defender claims victory. It's crucial to note that the defender is granted only one opportunity to guess the word correctly; any additional guesses lead to an automatic failure.
The game unfolds over {max_turns} rounds. Should neither player succeed within these turns, the game ends in a draw.
""",
"""
Dive into the cunning duel known as Adversarial Taboo, where two contenders face off: one as the attacker, the other as the defender.
To kick things off, the attacker is covertly assigned a target word, which is kept secret from the defender. The attacker's mission is to subtly coax the defender into saying this word without their awareness. Success means victory for the attacker. But there's a catch: if the attacker slips up and says the word themselves, they lose.
Meanwhile, the defender is on a quest to uncover the target word. Should the defender succeed and exclaim, "I know the word! It is 'target word'!" then victory is theirs. Caution is key for the defender, who is allowed only a single guess at the word; any more and they automatically lose.
This mind game is played in {max_turns} rounds. If at the end of these rounds no one has won, the match is declared a tie.
""",
"""
Step into the challenge of Adversarial Taboo, a game for two: one as the attacker, the other as the defender.
In the beginning, a target word is secretly given to the attacker, unknown to the defender. The attacker's challenge is to lead the defender to say the target word without their knowledge, securing a win for the attacker. But there's a twist: the attacker must avoid saying the target word themselves, or they forfeit the game.
Simultaneously, the defender is on a mission to guess the target word. If the defender figures it out, they can announce, "I know the word! It is 'target word'!" and if they're right, they win. However, the defender must tread carefully, as they have only one chance to guess correctly; a wrong guess means instant defeat.
The game proceeds over {max_turns} rounds. If neither player prevails within these rounds, the game ends in a stalemate.
""",
"""
Immerse yourself in the strategic face-off called Adversarial Taboo, where two roles are in play: an attacker and a defender.
As the game sets in motion, the attacker is discreetly handed a target word, which remains a secret to the defender. The attacker's goal is to subtly manipulate the defender into saying this specific word without their awareness, which would result in a win for the attacker. But there's a rule: the attacker must never speak the target word themselves, or they will be defeated.
Concurrently, the defender is engaged in a mental game of detection, aiming to identify the target word. If the defender manages to pinpoint the word, they can declare, "I know the word! It is 'target word'!" A correct identification means the defender wins. It's important to note that the defender gets only one shot at guessing the word; any incorrect guess leads to an immediate loss.
The game unfolds across {max_turns} rounds. If by the end of these turns no one has emerged victorious, the game is considered a draw.
""",
"""
Dive into the strategic duel known as Adversarial Taboo, where two roles emerge: a defender and an attacker.
The defender starts off in the dark, with the attacker being secretly assigned a target word. The defender's mission is to deduce this word. If successful, they can proclaim, "I know the word! It is 'target word'!" and claim victory. But caution is key — the defender is allowed only one guess. A wrong guess results in an immediate loss.
Meanwhile, the attacker's aim is to covertly lead the defender to say the target word without their knowledge. If the defender speaks the word unwittingly, the attacker triumphs. However, if the attacker slips and says the target word themselves, they lose.
The game is played over {max_turns} rounds. If no winner is determined after these rounds, the game ends in a tie.
""",
"""
Step into the intriguing game known as Adversarial Taboo, where the roles of defender and attacker are pivotal.
The defender embarks on a cerebral journey, unaware of the secret target word that the attacker has been given. The defender's challenge is to uncover this word. A correct declaration of "I know the word! It is 'target word'!" secures a win for the defender. However, they must tread carefully, as they have only one chance to guess correctly; any incorrect guess spells instant defeat.
On the other side of the gameboard, the attacker is tasked with a delicate mission: to nudge the defender into saying the target word without their conscious realization. Success in this stealthy endeavor means victory for the attacker. But there's a catch: if the attacker accidentally mentions the target word, they lose the game.
The tension builds over four rounds. If by the end of these rounds the game has not been won, it is declared a stalemate.
""",
"""
Embark on the strategic challenge of Adversarial Taboo, where players assume the roles of either attacker or defender.
The defender enters the game blind to the secret target word that only the attacker knows. The goal for the defender is to guess this word. If they can confidently assert, "I know the word! It is 'target word'!" they win. But they must be cautious, as they have only one opportunity to make a correct guess; a wrong guess means they lose.
Conversely, the attacker's goal is to subtly coax the defender into saying the target word without them being aware of it. If the defender says the word, the attacker wins. However, should the attacker accidentally say the target word themselves, they forfeit the game.
The game unfolds over the course of {max_turns} rounds. If neither player has achieved victory by the end of the {max_turns} round, the game ends in a draw.
""",
]
INSTRUCT_PROMPTS = {
"attacker": """\n\n### Instruction: You are the attacker. The target word is `{target}`. Provide your response for the next turn.\n\n### Response:""",
"defender": """\n\n### Instruction: Your are the defender. Provide your response to infer the target word.\n\n### Response:""",
}
PLAYER_INSTRUCT_PROMPTS = {
"attacker": "You are the attacker. The target word is `{target}`. Provide your response for the next turn.",
"defender": "Your are the defender. Provide your response to infer the target word.",
}
ROLES = ["attacker", "defender"]
PREDICT_TEMP = r"i know the word! it.{1,10}"
def get_derivative_words(word: str):
# fuzzy matching for similar words
word = word.lower()
blob_word = TextBlob(word)
word_stem = Word(word).stem()
word_list = [word]
word_list += [word + "ing", word + "ed", blob_word.words.pluralize()[0]]
word_list += [word_stem + "ing", word_stem + "ed"]
word_list = list(set(word_list))
quotation_list = ['"{word}"', "'{word}'", "`{word}`"]
word_list += [
quotation.format(word=word)
for quotation in quotation_list
for word in word_list
]
return word_list
def has_target_word(content: str, target_word: str):
derivative_words = get_derivative_words(target_word)
content = re.sub(r'[^\w\s]', '', content.lower())
return any([word in content.split() for word in derivative_words])
def is_prediction(content: str, target_word: str):
if re.search(PREDICT_TEMP, content.lower()):
return True
else:
return False
def is_correct_prediction(content: str, target_word: str):
derivative_words = get_derivative_words(target_word)
predict_regex = [PREDICT_TEMP + word for word in derivative_words]
if any([re.search(temp, content.lower()) for temp in predict_regex]):
return True
else:
return False
def get_game_outcome(history, target_word, max_turns):
history_length = 0
for i, item in enumerate(history):
history_length += 1
if item["role"] == "defender":
if is_prediction(item["content"], target_word):
if is_correct_prediction(item["content"], target_word):
return "defender wins", history_length
else:
return "attacker wins", history_length
elif has_target_word(item["content"], target_word):
return "attacker wins", history_length
else:
if has_target_word(item["content"], target_word):
return "attacker breaks the rules", history_length
elif is_prediction(item["content"], target_word):
return "attacker breaks the rules", history_length
if history_length >= max_turns * 2:
break
return "tied game", history_length
# djw 20250812 目前没有使用这个函数
def convert_game_history_to_query(history, target, max_turns=5):
# Select the first game rule prompt and the first player instruct prompt
GAME_RULE_PROMPT = GAME_RULE_PROMPTS[0]
history_str = ""
for i, message in enumerate(history):
history_str += "\n - {}: {}".format(message["role"], message["content"])
if len(history) == 0:
query = (
GAME_RULE_PROMPT.format(max_turns=max_turns)
+ "The game is just initialized."
)
next_player = ROLES[0]
else:
query = (
GAME_RULE_PROMPT.format(max_turns=max_turns)
+ "\n### Game History:"
+ history_str
)
if history[-1]["role"] == ROLES[0]:
next_player = ROLES[1]
else:
next_player = ROLES[0]
query += INSTRUCT_PROMPTS[next_player].format(target=target)
return query
# djw 20250812 使用的是这个函数
def randomly_convert_game_history_to_query(history, target, max_turns=5, **kwargs):
if "random_seed" in kwargs:
random.seed(kwargs["random_seed"])
if len(history) == 0:
next_player = ROLES[0]
else:
if history[-1]["role"] == ROLES[0]:
next_player = ROLES[1]
else:
next_player = ROLES[0]
dialog_prefix = "\n" + random.choice(
["\n - ", "\n### ", "\n## ", "\n# ", "\n *** ", "\n **", "\n\n"]
)
answer_str, question_str = random.choice(
[
(next_player, ROLES[1] if next_player == ROLES[0] else ROLES[0]),
("Assistant", "Human"),
("Answer", "Question"),
("Response", "Query"),
("A", "Q"),
]
)
player_prefix = {
ROLES[0]: answer_str if next_player == ROLES[0] else question_str,
ROLES[1]: answer_str if next_player == ROLES[1] else question_str,
}
history_str = ""
for i, message in enumerate(history):
history_str += "{}{}: {}".format(
dialog_prefix, player_prefix[message["role"]], message["content"]
)
prompt_type = random.choice(["chat", "chat_inverse", "alpaca"])
system_prefix = random.choice(["Rules", "Game Rule", "System"])
GAME_RULE_PROMPT = random.choice(GAME_RULE_PROMPTS)
system_prompt = GAME_RULE_PROMPT.format(max_turns=max_turns)
if "chat" in prompt_type:
system_prompt += "\n\n" + PLAYER_INSTRUCT_PROMPTS[next_player].format(
target=target
)
if len(history) == 0:
history_str = ""
system_prompt += "The game is just initialized. "
system_str = f"{dialog_prefix}{system_prefix}: {system_prompt}"
if "inverse" in prompt_type:
query = (
history_str
+ system_str
+ dialog_prefix
+ player_prefix[next_player]
+ ": "
)
else:
query = (
system_str
+ history_str
+ dialog_prefix
+ player_prefix[next_player]
+ ": "
)
elif prompt_type == "alpaca":
if random.uniform(0, 1) < 0.2:
system_prompt = system_prefix + ": " + system_prompt
if len(history) == 0:
query = system_prompt + "The game is just initialized. "
else:
query = (
system_prompt + dialog_prefix + "Game History:" + history_str + "\n\n"
)
if random.uniform(0, 1) < 0.2:
query += (
PLAYER_INSTRUCT_PROMPTS[next_player].format(target=target)[:-1] + ": "
)
else:
query += (
PLAYER_INSTRUCT_PROMPTS[next_player].format(target=target)
+ dialog_prefix
+ player_prefix[next_player]
+ ": "
)
return query