The 1st ChatGPT4PCG Competition
Character-like Level Generation for Science Birds
Evaluation
The submitted prompts will undergo an evaluation process that involves subjecting them to 10 trials for each of the 26 uppercase letters of the English alphabet (A-Z). The levels generated for each character will be evaluated based on their similarity and stability, and scored using the criteria outlined in the scoring policy given below. The entire evaluation process will be conducted using automated scripts and programs.
Please note that the evaluation process will be conducted twice, at midterm and final stages. The number of trials and characters in the evaluation set may be adjusted based on the number of teams.
Evaluation Set
All 26 alphabetical uppercase characters.
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
Scoring Policy
In trial of target character for prompt :
- Stability: The stability of a level is evaluated using our Science Birds Evaluator. Here, is defined as the number of blocks at the initialization step of loading the level into the evaluator. Then the program will calculate the value of which is defined as the number of moving blocks during the first 10 seconds after level initialization. Each level will receive an score according to the following equation. The score has a continuous value in .
- Similarity: The similarity score reflects the softmax probability, of the model called vit-base-letter, which is used to infer target character in trial from the image of the generated level after the first 10 seconds of initialization. Each level will receive a continuous value between . This score, , is given as
Given that , , and represent the number of prompts in the competition, the number of trials per target character, and the number of characters, respectively, to give a higher weight to a more difficult target character, for target character is defined as follows:
where
and
Next, the weighted score is defined as follows:
The average score for target character of prompt , , is defined as follows:
The score is defined as follows:
Next, the normalized score, , is defined as follows:
where
Finally, will be used for ranking.
Ranking Policy
The team that has the highest will be declared the winner. If there are multiple teams with the same highest score, the one with the shortest prompt will be chosen as the winner. However, if multiple teams still have the same score and the shortest prompt, they will be considered co-winners.
Evaluation Tools
- ChatGPT API via
openai
Node.js package using the latestgpt-3.5-turbo
model. - Science Birds Evaluator with features to
- Automatically assess the stability
- Automatically export images using black-textured blocks on a white background for similarity testing
- vit-base-letter
- Automation scripts are available on our Resources page.
Evaluation Environment
- Software:
- OS: Windows 11 Pro
- Node.js: 18.15.0 LTS
- Unity: 2019.4.40f1
- Science Birds Evaluator
- Our automation scripts
- Hardware:
- CPU: Intel(R) Xeon(R) W-2135 CPU @ 3.70GHz
- RAM: 16 GB
Evaluation Process
- The qualification checking script will be first run to check for rule violations, including:
- Whether the prompt contains disallowed characters.
- Whether the prompt length exceeds the maximum number of words.
- Whether the prompt does not contain the
<OBJECT>
.
- The response gathering script will load each qualified team's prompt and repeat the following two steps for each character -- (1) replacing
<OBJECT>
with the target character and (2) contacting the ChatGPT API for a specific number of trials.- Each trial will always start from scratch and will contain no previous conversation.
- The code extraction script will load each response and produce a new file containing only a series of
ab_drop()
commands. - The text-to-xml conversion script will load each code file and convert it into a Science Birds level description XML file.
- Next, Science Birds Evaluator, will individually load all levels to assess their stability and capture thier images. The results of stability will be recorded, and for each level an image of the structure with black-textured blocks on a white background will be produced by the program.
- The similarity checking script will load each image and pass it through an open source-model called vit-base-letter. It will then record the similarity result.
- Finally, the scoring and ranking script will load all stability and similarity results and produce the final rank and score result for all teams according to the scoring policy.