| | import csv |
| | import random |
| | import os |
| |
|
| | def merge_prompt_with_four_colors( |
| | prompt_file, |
| | color_file, |
| | output_file, |
| | variation=3, |
| | color_level=3, |
| | samples_per_color1=2 |
| | ): |
| | |
| | with open(prompt_file, "r", encoding="utf-8") as f: |
| | reader = csv.DictReader(f) |
| | prompts = list(reader) |
| |
|
| | |
| | with open(color_file, "r", encoding="utf-8") as f: |
| | reader = csv.DictReader(f) |
| | colors = list(reader) |
| |
|
| | if len(colors) < samples_per_color1: |
| | raise ValueError("There are not enough colors to choose two different second colors.") |
| |
|
| | merged_rows = [] |
| | id_counter = 1 |
| |
|
| | for prompt in prompts: |
| | prompt_text = prompt["prompt"] |
| |
|
| | |
| | for color1 in colors: |
| | hex1 = color1.get("hex") or color1.get("color") or "" |
| | clean_hex1 = hex1.replace("#", "") |
| |
|
| | |
| | color2_choices = random.sample(colors, samples_per_color1) |
| |
|
| | for color2 in color2_choices: |
| | hex2 = color2.get("hex") or color2.get("color") or "" |
| | clean_hex2 = hex2.replace("#", "") |
| |
|
| | |
| | rand3 = random.choice(colors) |
| | rand4 = random.choice(colors) |
| | hex3 = rand3.get("hex") or rand3.get("color") or "" |
| | hex4 = rand4.get("hex") or rand4.get("color") or "" |
| | clean_hex3 = hex3.replace("#", "") |
| | clean_hex4 = hex4.replace("#", "") |
| |
|
| |
|
| | merged_rows.append({ |
| | "id": id_counter, |
| | "prompt": prompt_text, |
| | "color_1": hex1, |
| | "color_2": hex2, |
| | "color_3": hex3, |
| | "color_4": hex4, |
| | "variation": variation, |
| | "color_level": color_level, |
| | "split": "test", |
| | "color_format": "Hex code" |
| | }) |
| | id_counter += 1 |
| |
|
| | |
| | output_dir = os.path.dirname(output_file) |
| | if output_dir and not os.path.exists(output_dir): |
| | os.makedirs(output_dir, exist_ok=True) |
| |
|
| | |
| | with open(output_file, "w", newline="", encoding="utf-8") as f: |
| | writer = csv.DictWriter(f, fieldnames=[ |
| | "id","prompt", |
| | "color_1","color_2","color_3","color_4", |
| | "variation","color_level","split","color_format" |
| | ]) |
| | writer.writeheader() |
| | writer.writerows(merged_rows) |
| |
|
| | print(f"Generation complete: {output_file}") |
| |
|
| | random.seed(42) |
| | merge_prompt_with_four_colors("raw_config/Variation_3.csv", "raw_config/Color_Level_1.csv", "metadata/Variation_3_Color_1.csv", variation=3, color_level=1) |
| | merge_prompt_with_four_colors("raw_config/Variation_3.csv", "raw_config/Color_Level_2.csv", "metadata/Variation_3_Color_2.csv", variation=3, color_level=2) |
| | merge_prompt_with_four_colors("raw_config/Variation_3.csv", "raw_config/Color_Level_3.csv", "metadata/Variation_3_Color_3.csv", variation=3, color_level=3) |
| |
|
| |
|