Strategic Engineering Workshop on LLMs and Game Theory
- We invite submissions exploring how large language models (LLMs) / foundation models (FMs) and game theory can enable strategic, interpretable AI agents for real-world scenarios.
- The workshop is seeking submissions of research and industrial papers, including work on modelling, evaluation, algorithmic design, human data collection, and applications in negotiation, coordination, and everyday social intelligence, as well as demonstrations of agents succeeding (or failing) in strategic interactions.
- Note: While the primary focus of the workshop is on leveraging LLMs to translate real-world scenarios to rigorous game-theoretic models, we will also consider papers that investigate other creative applications of LLMs to game theory or vice versa.
Tasks
- 10:00 Showing
- Get a list of the txt and csv directories and deleting all the txt items from the list that match with the csv items, then finish the parsing – done
# iterate over the csv files and delete any name in tat list from the text_files list. That way we can pick up when the connection gets interrrupted
tnum = len(txt_files)
cnum = len(csv_files)
print("there are {} text files and {} csv files. After this, there should be {} text files".format(tnum, cnum, tnum-cnum))
csv:str
for csv in csv_files:
s = csv.replace("csv", "txt")
try:
txt_files.remove(s)
except ValueError:
print("{} is not in the text file list????".format(s))
tnum = len(txt_files)
print("Processing {} text files".format(tnum))
- Start on embedding. Got all the pieces working. Rather than do one large pkl file, I’m going to do the embeddings on a per-book basis. This will be much more resiliant to interruptions’ and support restarts








You must be logged in to post a comment.