diff --git a/app.py b/app.py new file mode 100644 index 0000000000000000000000000000000000000000..ab1ff360838756d905f5fcf0d979f3a4f06a9686 --- /dev/null +++ b/app.py @@ -0,0 +1,729 @@ +import os +import sys +import glob +import json +import random +import re +from functools import partial +from datetime import datetime +from collections import defaultdict, Counter + +import gradio as gr +from loguru import logger + +# --- Global State (unchanged) --- +# --- Global State (unchanged) --- +GLOBAL_STATE = { + "participant_id": None, + "data_loaded": False, + "all_eval_data": [], + "shuffled_indices": [], + "current_prompt_index": 0, + "current_criterion_index": 0, + "image_mapping": {}, + "image_dir": "", + "evaluation_results": {}, + "image_orders": {}, + "start_time": None, + "end_time": None, + "current_ranks": {}, + "current_absolute_score": None, + # ▼▼▼ 追加 ▼▼▼ + "current_absolute_score_worst": None, +} + +# --- Configuration (unchanged) --- +BASE_RESULTS_DIR = "./results" +LOG_DIR = "./logs" +COMBINED_DATA_DIR = "./combined_data" +IMAGE_SUBDIR = os.path.join("lapwing", "images") +MAPPING_FILENAME = "combination_to_filename.json" +CONDITIONS = ["Ours", "w_o_Proto_Loss", "w_o_HitL", "w_o_Tuning", "LLM-based"] +CRITERIA = ["Alignment", "Naturalness", "Attractiveness"] + +CRITERIA_GUIDANCE_JP = [ + "テキストと表情がどれだけ一致しているか", + "テキストの感情に沿ったセリフを言っていると想像したとき、表情がどれだけ自然か", + "テキストの感情に沿ったセリフを言っていると想像したとき、表情がどれだけ魅力的か" +] +CRITERIA_GUIDANCE_EN = [ + "how well the expression aligns with the text", + "imagining the character is speaking a line that matches the emotion of the text, how natural the facial expression is", + "imagining the character is speaking a line that matches the emotion of the text, how attractive the facial expression is" +] +IMAGE_LABELS = ['A', 'B', 'C', 'D', 'E'] + + +# --- Helper Functions --- +def get_image_path_from_prediction(prediction: dict) -> str: + if not GLOBAL_STATE["image_mapping"]: + logger.error("Image mapping is not loaded.") + return "" + indices = prediction.get("blendshape_index", {}) + if not isinstance(indices, dict): + logger.error(f"blendshape_index is not a dictionary: {indices}") + return "" + sorted_indices = sorted(indices.items(), key=lambda item: int(item[0])) + key = ",".join(str(idx) for _, idx in sorted_indices) + filename = GLOBAL_STATE["image_mapping"].get(key) + if not filename: + logger.warning(f"No image found for blendshape key: {key}") + return "" + return os.path.join(GLOBAL_STATE["image_dir"], filename) + + +# ▼▼▼ 2. prompt_categoryを読み込むように修正 ▼▼▼ +def load_evaluation_data(participant_id: str): + mapping_path = os.path.join(COMBINED_DATA_DIR, MAPPING_FILENAME) + if not os.path.exists(mapping_path): + return f"

Error: Mapping file not found at {mapping_path}

", gr.update( + interactive=True), gr.update(interactive=False) + + with open(mapping_path, 'r', encoding='utf-8') as f: + GLOBAL_STATE["image_mapping"] = json.load(f)["mapping"] + GLOBAL_STATE["image_dir"] = os.path.join(COMBINED_DATA_DIR, IMAGE_SUBDIR) + logger.info(f"Successfully loaded image mapping. Image directory: {GLOBAL_STATE['image_dir']}") + + participant_dir = os.path.join(BASE_RESULTS_DIR, participant_id) + if not os.path.isdir(participant_dir): + return f"

Error: Participant directory not found: {participant_dir}

", gr.update( + interactive=True), gr.update(interactive=False) + + merged_data = defaultdict(lambda: {"predictions": {}, "category": None}) + found_files = 0 + for cond in CONDITIONS: + cond_dir = os.path.join(participant_dir, cond) + pattern = os.path.join(cond_dir, f"{participant_id}_{cond}_*.jsonl") + files = glob.glob(pattern) + if not files: + logger.warning(f"No prediction file found for condition '{cond}' with pattern: {pattern}") + continue + found_files += 1 + with open(files[0], 'r', encoding='utf-8') as f: + for line in f: + data = json.loads(line) + prompt = data["text_prompt"] + merged_data[prompt]["predictions"][cond] = data["prediction"] + if not merged_data[prompt]["category"]: + merged_data[prompt]["category"] = data.get("prompt_category") + + if found_files != len(CONDITIONS): + return f"

Error: Found prediction files for only {found_files}/{len(CONDITIONS)} conditions.

", gr.update( + interactive=True), gr.update(interactive=False) + + GLOBAL_STATE["all_eval_data"] = [ + {"prompt": p, "predictions": d["predictions"], "category": d["category"]} + for p, d in merged_data.items() if len(d["predictions"]) == len(CONDITIONS) + ] + # ▲▲▲ END OF UPDATE ▲▲▲ + + if not GLOBAL_STATE["all_eval_data"]: + return "

Error: No valid evaluation data could be loaded.

", gr.update( + interactive=True), gr.update(interactive=False) + + GLOBAL_STATE["shuffled_indices"] = list(range(len(GLOBAL_STATE["all_eval_data"]))) + random.shuffle(GLOBAL_STATE["shuffled_indices"]) + GLOBAL_STATE["current_prompt_index"] = 0 + GLOBAL_STATE["current_criterion_index"] = 0 + GLOBAL_STATE["data_loaded"] = True + GLOBAL_STATE["start_time"] = datetime.now() + for i in range(len(GLOBAL_STATE["all_eval_data"])): + prompt_text = GLOBAL_STATE["all_eval_data"][i]["prompt"] + GLOBAL_STATE["evaluation_results"][prompt_text] = {} + + logger.info(f"Loaded and merged data for {len(GLOBAL_STATE['all_eval_data'])} prompts.") + done_msg = "

Data loaded successfully. Please proceed to the 'Evaluation' tab. / データの読み込みに成功しました。「評価」タブに進んでください。

" + return done_msg, gr.update(interactive=False, visible=False), gr.update(interactive=True) + + +# --- Core Logic --- + +def _create_button_updates(): + updates = [] + for img_label in IMAGE_LABELS: + selected_rank = GLOBAL_STATE["current_ranks"].get(img_label) + for rank_val in range(1, 6): + if rank_val == selected_rank: + updates.append(gr.update(variant='primary')) + else: + updates.append(gr.update(variant='secondary')) + return updates + + +def handle_rank_button_click(image_label, rank): + if GLOBAL_STATE["current_ranks"].get(image_label) == rank: + GLOBAL_STATE["current_ranks"][image_label] = None + else: + GLOBAL_STATE["current_ranks"][image_label] = rank + return _create_button_updates() + + +def handle_absolute_score_click(score): + if GLOBAL_STATE["current_absolute_score"] == score: + GLOBAL_STATE["current_absolute_score"] = None + else: + GLOBAL_STATE["current_absolute_score"] = score + + updates = [] + for i in range(1, 8): + if i == GLOBAL_STATE["current_absolute_score"]: + updates.append(gr.update(variant='primary')) + else: + updates.append(gr.update(variant='secondary')) + return updates + + +# ▼▼▼ 追加 ▼▼▼ +def handle_absolute_score_worst_click(score): + if GLOBAL_STATE["current_absolute_score_worst"] == score: + GLOBAL_STATE["current_absolute_score_worst"] = None + else: + GLOBAL_STATE["current_absolute_score_worst"] = score + + updates = [] + for i in range(1, 8): + if i == GLOBAL_STATE["current_absolute_score_worst"]: + updates.append(gr.update(variant='primary')) + else: + updates.append(gr.update(variant='secondary')) + return updates + +# ▼▼▼ 1. UIフリーズ問題を修正 ▼▼▼ + + +# ▼▼▼ 修正後の display_current_prompt_and_criterion 関数 ▼▼▼ +def display_current_prompt_and_criterion(): + if not GLOBAL_STATE["data_loaded"] or GLOBAL_STATE["current_prompt_index"] >= len(GLOBAL_STATE["all_eval_data"]): + done_msg = "

All prompts have been evaluated! Please proceed to the 'Export' tab.
すべてのプロンプトの評価が完了しました!「エクスポート」タブに進んでください。

" + empty_button_updates = [gr.update(variant='secondary')] * 25 + empty_abs_updates = [gr.update(variant='secondary')] * 7 + return [ + gr.update(value="Finished! / 完了!"), + gr.update(value=""), + gr.update(value=done_msg), + gr.update(value="", visible=False), + *[gr.update(value=None)] * 5, + *empty_button_updates, + gr.update(visible=False), # abs_group_best + *empty_abs_updates, + gr.update(visible=False), # abs_group_worst + *empty_abs_updates, + gr.update(interactive=False), + gr.update(interactive=False) + ] + + prompt_idx = GLOBAL_STATE["shuffled_indices"][GLOBAL_STATE["current_prompt_index"]] + criterion_idx = GLOBAL_STATE["current_criterion_index"] + + current_data = GLOBAL_STATE["all_eval_data"][prompt_idx] + prompt_text = current_data["prompt"] + criterion_name = CRITERIA[criterion_idx] + + progress_text = f"Prompt {GLOBAL_STATE['current_prompt_index'] + 1} / {len(GLOBAL_STATE['all_eval_data'])} - **{criterion_name}**" + prompt_display_text = f"## \"{prompt_text}\"" + guidance_text = f"### Please rank the 5 images based on **{CRITERIA_GUIDANCE_EN[criterion_idx]}**.
5つの画像を、**「{CRITERIA_GUIDANCE_JP[criterion_idx]}」**を基準にランキング付けしてください。" + + if criterion_idx == 0: + GLOBAL_STATE["image_orders"] = {} + + if criterion_name not in GLOBAL_STATE["image_orders"]: + conditions_shuffled = random.sample(CONDITIONS, len(CONDITIONS)) + GLOBAL_STATE["image_orders"][criterion_name] = conditions_shuffled + + current_image_order = GLOBAL_STATE["image_orders"][criterion_name] + image_updates = [] + for cond_name in current_image_order: + prediction = current_data["predictions"][cond_name] + img_path = get_image_path_from_prediction(prediction) + image_updates.append(gr.update(value=img_path if img_path and os.path.exists(img_path) else None)) + + saved_ranks_dict = GLOBAL_STATE["evaluation_results"].get(prompt_text, {}).get("ranks", {}).get(criterion_name) + if saved_ranks_dict: + label_to_condition = {label: cond for label, cond in zip(IMAGE_LABELS, current_image_order)} + condition_to_label = {v: k for k, v in label_to_condition.items()} + GLOBAL_STATE["current_ranks"] = { + condition_to_label[cond]: rank for cond, rank in saved_ranks_dict.items() if cond in condition_to_label + } + else: + GLOBAL_STATE["current_ranks"] = {label: None for label in IMAGE_LABELS} + + button_updates = _create_button_updates() + + # --- Absolute Score (Best) --- + is_alignment_criterion = (criterion_name == "Alignment") + abs_group_update = gr.update(visible=is_alignment_criterion) + saved_abs_score = GLOBAL_STATE["evaluation_results"].get(prompt_text, {}).get("absolute_score") + GLOBAL_STATE["current_absolute_score"] = saved_abs_score if is_alignment_criterion else None + + abs_button_updates = [] + for i in range(1, 8): + variant = 'primary' if i == GLOBAL_STATE["current_absolute_score"] else 'secondary' + abs_button_updates.append(gr.update(variant=variant)) + + # --- Absolute Score (Worst) --- + abs_group_worst_update = gr.update(visible=is_alignment_criterion) + saved_abs_score_worst = GLOBAL_STATE["evaluation_results"].get(prompt_text, {}).get("absolute_score_worst") + GLOBAL_STATE["current_absolute_score_worst"] = saved_abs_score_worst if is_alignment_criterion else None + + abs_button_worst_updates = [] + for i in range(1, 8): + variant = 'primary' if i == GLOBAL_STATE["current_absolute_score_worst"] else 'secondary' + abs_button_worst_updates.append(gr.update(variant=variant)) + + return [ + gr.update(value=progress_text), + gr.update(value=prompt_display_text), + gr.update(value=guidance_text), + gr.update(value="", visible=False), + *image_updates, + *button_updates, + abs_group_update, + *abs_button_updates, + abs_group_worst_update, + *abs_button_worst_updates, + gr.update( + interactive=(GLOBAL_STATE["current_prompt_index"] > 0 or GLOBAL_STATE["current_criterion_index"] > 0)), + gr.update(interactive=True) + ] + + +# ▼▼▼ 修正後の validate_and_navigate 関数 ▼▼▼ +def validate_and_navigate(): + ranks = GLOBAL_STATE["current_ranks"] + error_msg = None + criterion_name = CRITERIA[GLOBAL_STATE["current_criterion_index"]] + is_alignment_criterion = (criterion_name == "Alignment") + + # --- Validation --- + if any(r is None for r in ranks.values()): + error_msg = "Please rank all 5 images. / 5つすべての画像を評価してください。" + elif 1 not in ranks.values(): + error_msg = "You must assign a rank of '1' to at least one image. / 最低1つは「1位」を付けてください。" + elif is_alignment_criterion and GLOBAL_STATE["current_absolute_score"] is None: + error_msg = "Please provide an absolute score for the BEST matching image (1-7). / 最も一致している画像について、絶対評価(1~7)を選択してください。" + elif is_alignment_criterion and GLOBAL_STATE["current_absolute_score_worst"] is None: + error_msg = "Please provide an absolute score for the WORST matching image (1-7). / 最も一致していない画像について、絶対評価(1~7)を選択してください。" + + if error_msg: + # The number of components to update is now 53 (1 tab + 52 eval components) + no_change_updates = [gr.update()] * 53 + no_change_updates[4] = gr.update( # error_display is the 5th component (index 4) + value=f"

{error_msg}

", + visible=True) + return no_change_updates + + # ... (Rank tie-breaking validation logic is unchanged) ... + sorted_ranks = sorted(list(ranks.values())) + rank_counts = Counter(sorted_ranks) + i = 0 + while i < len(sorted_ranks): + current_rank = sorted_ranks[i] + count = rank_counts[current_rank] + if i + count < len(sorted_ranks): + next_rank = sorted_ranks[i + count] + expected_next_rank = current_rank + count + if next_rank < expected_next_rank: + error_msg = f"Ranking rule violation (tie-breaking). After {count} instance(s) of rank '{current_rank}', the next rank must be >= {expected_next_rank}, but it is '{next_rank}'. / 順位付けのルール違反です。'{current_rank}'位が{count}つあるため、次の順位は{expected_next_rank}位以上である必要がありますが、'{next_rank}'位が入力されています。" + break + i += count + if error_msg: + no_change_updates = [gr.update()] * 53 + no_change_updates[4] = gr.update( + value=f"

{error_msg}

", + visible=True) + return no_change_updates + # --- End of Validation --- + + prompt_idx = GLOBAL_STATE["shuffled_indices"][GLOBAL_STATE["current_prompt_index"]] + current_data = GLOBAL_STATE["all_eval_data"][prompt_idx] + prompt_text = current_data["prompt"] + current_image_order = GLOBAL_STATE["image_orders"][criterion_name] + + label_to_condition = {label: cond for label, cond in zip(IMAGE_LABELS, current_image_order)} + ranks_by_condition = {label_to_condition[label]: rank for label, rank in ranks.items()} + + if "ranks" not in GLOBAL_STATE["evaluation_results"][prompt_text]: + GLOBAL_STATE["evaluation_results"][prompt_text]["ranks"] = {} + if "orders" not in GLOBAL_STATE["evaluation_results"][prompt_text]: + GLOBAL_STATE["evaluation_results"][prompt_text]["orders"] = {} + + GLOBAL_STATE["evaluation_results"][prompt_text]["ranks"][criterion_name] = ranks_by_condition + GLOBAL_STATE["evaluation_results"][prompt_text]["orders"][criterion_name] = current_image_order + + if is_alignment_criterion: + GLOBAL_STATE["evaluation_results"][prompt_text]["absolute_score"] = GLOBAL_STATE["current_absolute_score"] + GLOBAL_STATE["evaluation_results"][prompt_text]["absolute_score_worst"] = GLOBAL_STATE[ + "current_absolute_score_worst"] + + logger.info( + f"Saved rank for P:{GLOBAL_STATE['participant_id']}, Prompt:'{prompt_text}', Criterion:{criterion_name}, Ranks:{ranks_by_condition}") + + GLOBAL_STATE["current_criterion_index"] += 1 + if GLOBAL_STATE["current_criterion_index"] >= len(CRITERIA): + GLOBAL_STATE["current_criterion_index"] = 0 + GLOBAL_STATE["current_prompt_index"] += 1 + + if GLOBAL_STATE["current_prompt_index"] >= len(GLOBAL_STATE["all_eval_data"]): + GLOBAL_STATE["end_time"] = datetime.now() + eval_panel_updates = display_current_prompt_and_criterion() + # Activate export tab on completion + return [gr.update(interactive=True)] + eval_panel_updates + else: + # Keep export tab state as is + return [gr.update()] + display_current_prompt_and_criterion() + + + +def navigate_previous(): + GLOBAL_STATE["current_criterion_index"] -= 1 + if GLOBAL_STATE["current_criterion_index"] < 0: + GLOBAL_STATE["current_criterion_index"] = len(CRITERIA) - 1 + GLOBAL_STATE["current_prompt_index"] -= 1 + GLOBAL_STATE["current_prompt_index"] = max(0, GLOBAL_STATE["current_prompt_index"]) + return display_current_prompt_and_criterion() + +# ▼▼▼ 修正後の export_results 関数 ▼▼▼ +def export_results(participant_id, alignment_reason, naturalness_reason, attractiveness_reason, optional_comment): + if not alignment_reason.strip() or not naturalness_reason.strip() or not attractiveness_reason.strip(): + error_msg = "

Please fill in the reasoning for all three criteria (Alignment, Naturalness, Attractiveness). / 3つの評価基準(一致度, 自然さ, 魅力度)すべての判断理由を記入してください。

" + return None, error_msg + + if not participant_id: + return None, "

Participant ID is missing. / 参加者IDがありません。

" + + output_dir = os.path.join(BASE_RESULTS_DIR, participant_id) + os.makedirs(output_dir, exist_ok=True) + filename = f"evaluation_results_{participant_id}_{datetime.now().strftime('%Y%m%d_%H%M%S')}.json" + filepath = os.path.join(output_dir, filename) + + duration = (GLOBAL_STATE["end_time"] - GLOBAL_STATE["start_time"]).total_seconds() if GLOBAL_STATE.get( + "start_time") and GLOBAL_STATE.get("end_time") else None + + prompt_to_category = {item["prompt"]: item["category"] for item in GLOBAL_STATE["all_eval_data"]} + + final_results_list = [] + for prompt, data in GLOBAL_STATE["evaluation_results"].items(): + if not data: continue + + ranks_data = data.get("ranks", {}) + orders_data = data.get("orders", {}) + + final_results_list.append({ + "prompt": prompt, + "prompt_category": prompt_to_category.get(prompt), + "image_order_alignment": orders_data.get("Alignment", []), + "image_order_naturalness": orders_data.get("Naturalness", []), + "image_order_attractiveness": orders_data.get("Attractiveness", []), + "alignment_ranks": ranks_data.get("Alignment", {}), + "naturalness_ranks": ranks_data.get("Naturalness", {}), + "attractiveness_ranks": ranks_data.get("Attractiveness", {}), + "alignment_absolute_score": data.get("absolute_score"), + # ▼▼▼ 追加 ▼▼▼ + "alignment_absolute_score_worst": data.get("absolute_score_worst") + }) + + export_data = { + "metadata": { + "participant_id": participant_id, + "export_timestamp": datetime.now().isoformat(), + "total_prompts_evaluated": len(final_results_list), + "evaluation_duration_seconds": duration, + "reasoning": { + "alignment": alignment_reason, + "naturalness": naturalness_reason, + "attractiveness": attractiveness_reason, + }, + "optional_comment": optional_comment, + }, + "results": final_results_list + } + + try: + with open(filepath, 'w', encoding='utf-8') as f: + json.dump(export_data, f, ensure_ascii=False, indent=2) + logger.info(f"Successfully exported results to: {filepath}") + except Exception as e: + logger.error(f"Failed to write export file: {e}") + return None, f"

An error occurred during file export: {e}

" + + upload_link = "https://drive.google.com/drive/folders/1ujIPF-67Y6OG8qBm1TYG3FsmuYxqSAcR?usp=drive_link" + status_message = f""" +
+

エクスポートが完了しました。/ Export complete.

+

上のボタンからJSONファイルをダウンロードし、指定された場所にアップロードして実験を終了してください。ご協力ありがとうございました。

+

Please download the JSON file and upload it to the designated location. Thank you for your cooperation.

+

アップロード先 / Upload to: {upload_link}

+
""" + return gr.update(value=filepath, visible=True), status_message + + +## ▼▼▼ 修正後の create_gradio_interface 関数 ▼▼▼ +def create_gradio_interface(): + css = """ + .gradio-container { font-family: 'Arial', sans-serif; } + .feedback { padding: 10px; border-radius: 5px; font-weight: bold; text-align: center; margin-top: 10px; } + .feedback.green { background-color: #e6ffed; color: #2f6f4a; } + .feedback.red { background-color: #ffe6e6; color: #b30000; } + .image-label { font-size: 2.5em; font-weight: bold; margin-bottom: 10px; color: #333; } + .prompt-display { text-align: center; margin-bottom: 5px; padding: 15px; background-color: #f0f8ff; border-radius: 8px; } + .prompt-sub-guidance { text-align: center; font-size: 0.9em; color: #555; margin-top: 5px; margin-bottom: 15px; } + .rank-instruction { + color: #D32F2F; + font-size: 1.1em; + text-align: left; + margin-bottom: 20px; + padding: 15px; + border: 1px solid #f5c6cb; + border-radius: 8px; + background-color: #f8d7da; + line-height: 1.6; + } + .rank-instruction ul { padding-left: 20px; margin: 0; } + .rank-guidance { text-align: center; margin-bottom: 10px; font-size: 1.2em; } + .rank-btn-row { justify-content: center; gap: 5px !important; } + .rank-btn { + min-width: 45px !important; + max-width: 45px !important; + height: 45px !important; + font-size: 1.2em !important; + font-weight: bold !important; + border-radius: 8px !important; + border: 1px solid #ccc !important; + } + .rank-btn.secondary { + background: #f0f0f0 !important; + color: #333 !important; + } + .rank-btn.secondary:hover { + background: #e0e0e0 !important; + border-color: #bbb !important; + } + .absolute-eval-group { + border: 1px solid #ddd; + border-radius: 8px; + padding: 15px; + margin-top: 20px; + } + """ + + with gr.Blocks(title="Expression Evaluation Experiment", css=css) as app: + gr.Markdown("# Text-to-Expression Evaluation Experiment / テキストからの表情生成 評価実験") + + with gr.Tabs() as tabs: + with gr.TabItem("1. Setup / セットアップ") as tab_setup: + gr.Markdown("## (A) Participant Information / 参加者情報") + gr.Markdown("Please enter your participant ID and click 'Confirm'. / 参加者IDを入力して「確定」を押してください。") + with gr.Row(): + participant_id_input = gr.Textbox(label="Participant ID", placeholder="e.g., P01") + confirm_id_btn = gr.Button("Confirm / 確定", variant="primary") + setup_warning = gr.Markdown(visible=False) + with gr.Group(visible=False) as setup_main_group: + gr.Markdown("---") + gr.Markdown("## (B) Instructions & Data Loading / 注意事項とデータ読み込み") + gr.Markdown( + """
+

注意事項 / Instructions

+
""") + gr.Markdown( + "Click the button below to load your evaluation data. / 下のボタンを押して、評価データを読み込んでください。") + load_data_btn = gr.Button("Load Data / データ読み込み", variant="primary") + setup_status = gr.Markdown("Waiting to start...") + + with gr.TabItem("2. Evaluation / 評価", interactive=False) as tab_evaluation: + progress_text = gr.Markdown("Prompt 0 / 0") + + image_components = [] + rank_buttons = [] + with gr.Row(equal_height=False): + for label in IMAGE_LABELS: + with gr.Column(scale=1): + with gr.Group(): + gr.Markdown(f"
{label}
") + img = gr.Image(type="filepath", show_label=False, height=300) + image_components.append(img) + with gr.Row(elem_classes="rank-btn-row"): + for rank_val in range(1, 6): + btn = gr.Button(str(rank_val), variant='secondary', elem_classes="rank-btn") + rank_buttons.append(btn) + + prompt_display = gr.Markdown("## \"Prompt Text Here\"", elem_classes="prompt-display") + gr.Markdown( + "

You may use AI or web search for the meaning of the text. However, please do not ask an AI about the emotion of the image itself.
意味についてはAIに聞いたりネット検索しても構いません。ただし、画像そのものの感情をAIに尋ねるのを止めてください。

") + guidance_display = gr.Markdown("### Guidance", elem_classes="rank-guidance") + error_display = gr.Markdown(visible=False) + + gr.Markdown( + """ + ランキングの付け方 / How to Rank: + + """, + elem_classes="rank-instruction" + ) + + # ▼▼▼ 修正: 絶対評価(Best)のUI ▼▼▼ + with gr.Group(visible=False, elem_classes="absolute-eval-group") as absolute_eval_group_best: + gr.Markdown("---") + gr.Markdown( + "#### 絶対評価 (Best) / Absolute Score (Best)\n最もテキストと一致している画像について、どのていど一致しているかを評価してください。\n(Please evaluate the degree of alignment for the image that **best** matches the text.)") + absolute_score_buttons = [] + with gr.Row(): + with gr.Column(scale=1): + gr.Markdown( + "

1 (全く一致してない / Not at all)

") + with gr.Column(scale=3): + with gr.Row(elem_classes="rank-btn-row"): + for i in range(1, 8): + btn = gr.Button(str(i), variant='secondary', elem_classes="rank-btn") + absolute_score_buttons.append(btn) + with gr.Column(scale=1): + gr.Markdown("

7 (完全に一致 / Absolutely)

") + + # ▼▼▼ 追加: 絶対評価(Worst)のUI ▼▼▼ + with gr.Group(visible=False, elem_classes="absolute-eval-group") as absolute_eval_group_worst: + gr.Markdown( + "#### 絶対評価 (Worst) / Absolute Score (Worst)\n最もテキストと一致していない画像について、どのていど一致していないかを評価してください。\n(Please evaluate the degree of alignment for the image that **least** matches the text.)") + absolute_score_worst_buttons = [] + with gr.Row(): + with gr.Column(scale=1): + gr.Markdown( + "

1 (全く一致してない / Not at all)

") + with gr.Column(scale=3): + with gr.Row(elem_classes="rank-btn-row"): + for i in range(1, 8): + btn = gr.Button(str(i), variant='secondary', elem_classes="rank-btn") + absolute_score_worst_buttons.append(btn) + with gr.Column(scale=1): + gr.Markdown("

7 (完全に一致 / Absolutely)

") + + with gr.Row(): + prev_btn = gr.Button("← Previous / 前へ", interactive=False) + next_btn = gr.Button("Save & Next / 保存して次へ →", variant="primary") + + with gr.TabItem("3. Export / エクスポート", interactive=False) as tab_export: + gr.Markdown("## (C) Final Comments & Export / 最終コメントとエクスポート") + gr.Markdown( + "Thank you for completing the evaluation. Please provide the reasoning for your judgments for each criterion below. / 評価お疲れ様でした。以下の各評価基準について、判断の理由をご記入ください。") + + with gr.Group(): + gr.Markdown("#### Reasoning for Judgments (Required) / 判断理由(必須)") + alignment_reason_box = gr.Textbox(label="Alignment / 一致度", lines=3, + placeholder="Why did you rank them this way for alignment? / なぜ一致度について、このような順位付けをしましたか?") + naturalness_reason_box = gr.Textbox(label="Naturalness / 自然さ", lines=3, + placeholder="Why did you rank them this way for naturalness? / なぜ自然さについて、このような順位付けをしましたか?") + attractiveness_reason_box = gr.Textbox(label="Attractiveness / 魅力度", lines=3, + placeholder="Why did you rank them this way for attractiveness? / なぜ魅力度について、このような順位付けをしましたか?") + + with gr.Group(): + gr.Markdown("#### Overall Comments (Optional) / 全体的な感想(任意)") + optional_comment_box = gr.Textbox(label="Any other comments? / その他、実験全体に関するご意見・ご感想", + lines=4, + placeholder="e.g., 'Image B often looked the most natural.' / 例:「Bの画像が最も自然に見えることが多かったです。」") + + gr.Markdown("---") + gr.Markdown( + "Finally, click the button below to export your results. / 最後に、下のボタンを押して結果をエクスポートしてください。") + export_btn = gr.Button("Export Results / 結果をエクスポート", variant="primary") + download_file = gr.File(label="Download JSON", visible=False) + export_status = gr.Markdown() + + # --- Event Handlers --- + def check_and_confirm_id(pid): + pid = pid.strip() + if re.fullmatch(r"P\d{2}", pid): + GLOBAL_STATE["participant_id"] = pid + return gr.update(visible=False), gr.update(visible=True) + else: + error_msg = "

Invalid ID. Must be 'P' followed by two digits (e.g., P01). / 無効なIDです。「P」と数字2桁の形式(例: P01)で入力してください。

" + return gr.update(value=error_msg, visible=True), gr.update(visible=False) + + confirm_id_btn.click(check_and_confirm_id, [participant_id_input], [setup_warning, setup_main_group]) + load_data_btn.click(load_evaluation_data, [participant_id_input], [setup_status, load_data_btn, tab_evaluation]) + + # ▼▼▼ 修正: all_eval_outputs に新しいUIコンポーネントを追加 ▼▼▼ + all_eval_outputs = [ + progress_text, prompt_display, guidance_display, error_display, *image_components, + *rank_buttons, + absolute_eval_group_best, *absolute_score_buttons, + absolute_eval_group_worst, *absolute_score_worst_buttons, + prev_btn, next_btn + ] + + btn_idx = 0 + for label in IMAGE_LABELS: + for rank_val in range(1, 6): + btn = rank_buttons[btn_idx] + btn.click( + partial(handle_rank_button_click, label, rank_val), + [], + rank_buttons + ) + btn_idx += 1 + + for i, btn in enumerate(absolute_score_buttons): + btn.click( + partial(handle_absolute_score_click, i + 1), + [], + absolute_score_buttons + ) + + # ▼▼▼ 追加: 新しいボタンのイベントハンドラを接続 ▼▼▼ + for i, btn in enumerate(absolute_score_worst_buttons): + btn.click( + partial(handle_absolute_score_worst_click, i + 1), + [], + absolute_score_worst_buttons + ) + + tab_evaluation.select(display_current_prompt_and_criterion, [], all_eval_outputs) + + # ▼▼▼ 修正: next_btn の出力に tab_export を追加 ▼▼▼ + next_btn.click(validate_and_navigate, [], [tab_export, *all_eval_outputs]) + + prev_btn.click(navigate_previous, [], all_eval_outputs) + + export_tab_interactive_components = [alignment_reason_box, naturalness_reason_box, attractiveness_reason_box, + optional_comment_box, export_btn] + + def on_select_export_tab(): + # end_time is set only when all evaluations are complete + if GLOBAL_STATE.get("end_time"): + return [gr.update(interactive=True)] * 5 + # This logic is now handled by next_btn click, but kept as a fallback. + return [gr.update(interactive=False)] * 5 + + tab_export.select(on_select_export_tab, [], export_tab_interactive_components) + + export_btn.click( + export_results, + [participant_id_input, alignment_reason_box, naturalness_reason_box, attractiveness_reason_box, + optional_comment_box], + [download_file, export_status] + ) + + return app + +if __name__ == "__main__": + os.makedirs(LOG_DIR, exist_ok=True) + log_file_path = os.path.join(LOG_DIR, "evaluation_ui_log_{time}.log") + + random.seed(datetime.now().timestamp()) + logger.remove() + logger.add(sys.stderr, level="INFO") + logger.add(log_file_path, rotation="10 MB") + + app = create_gradio_interface() + app.launch(share=True, debug=True) \ No newline at end of file diff --git a/combined_data/blendshape_annotation_preprocess.py b/combined_data/blendshape_annotation_preprocess.py new file mode 100644 index 0000000000000000000000000000000000000000..573ba8b1278c46c1ff43fb44117c749f4fdb4d9a --- /dev/null +++ b/combined_data/blendshape_annotation_preprocess.py @@ -0,0 +1,114 @@ +import os +import json +import torch +import numpy as np +from PIL import Image +from tqdm import tqdm +from loguru import logger +from typing import Dict, List, Tuple + +# ---- あなたの定義済み Dataset, transforms があるなら import ---- +# from your_dataset import BlendShapeDataset, image_transform + +def unify_index(idx: int, group_size: int) -> int: + """ + BlendShape の選択 index が group_size と同じ場合、-1 (none) に変換して返す。 + """ + if idx == group_size: + return -1 + return idx + +def build_combination_to_filename( + teacher_data_file: str, + meta_file: str, +) -> Tuple[Dict[Tuple[int, ...], str], List[int]]: + """ + BlendShapeData.json を読み込み、 + 例: + { (g0_idx, g1_idx, g2_idx): "000001.png", ... } + のような辞書を作成して返す。 + + さらに各グループのサイズ (blendShapeNames数 + 1) のリスト group_sizes も返す。 + """ + with open(meta_file, "r", encoding="utf-8") as f: + meta = json.load(f) + blend_shape_groups = meta["blendShapeGroupsMeta"] + # group_sizes[i] = len(そのグループの blendShapeNames) + 1(none枠) + group_sizes = [len(g["blendShapeNames"]) + 1 for g in blend_shape_groups] + + # teacher_data_file 読み込み + with open(teacher_data_file, "r", encoding="utf-8") as f: + teacher_data = json.load(f) + data_list = teacher_data["dataList"] + + combination_to_filename = {} + for data in data_list: + photo_filename = data["photoFileName"] + blendShapeSelections = data["blendShapeSelectionsPerGroup"] + + # グループ順に selectedBlendShapeIndex を取得しつつ、-1の場合は-1のまま、 + # group_sizeと一致していたら-1へ変換(理想的には -1 しか登場しない想定だが一応対応) + combo = [] + for group_idx, selection in enumerate(blendShapeSelections): + sel_idx = selection["selectedBlendShapeIndex"] + # group_sizes[group_idx] と同じなら none として -1 + sel_idx = unify_index(sel_idx, group_sizes[group_idx]) + combo.append(sel_idx) + + combo = tuple(combo) # dictのキーにするのでtuple化 + combination_to_filename[combo] = photo_filename + + return combination_to_filename, group_sizes + + + +def main_offline_precompute(): + """ + 1. Dataset(JSON)から (組み合わせ -> filename) を作る + 2. CLIP モデルロード + 3. filename -> embedding + 4. ペアワイズ類似度 + 5. 保存 + """ + import argparse + parser = argparse.ArgumentParser() + parser.add_argument("--image_dir", type=str, default="lapwing/images") + parser.add_argument("--meta_file", type=str, default="lapwing/texts/BlendShapeGroupsMeta.json") + parser.add_argument("--teacher_data_file", type=str, default="lapwing/texts/BlendShapeData.json") + parser.add_argument("--clip_model_name", type=str, default="ViT-L-14") + parser.add_argument("--clip_pretrained", type=str, default="openai") + parser.add_argument("--batch_size", type=int, default=8) + parser.add_argument("--device", type=str, default="cuda") + parser.add_argument("--out_comb2fn", type=str, default="combination_to_filename.json") + parser.add_argument("--out_sims", type=str, default="pairwise_clip_sims.json") + + args = parser.parse_args() + + # 1. 組み合わせ->filename辞書の作成 + combination_to_filename, group_sizes = build_combination_to_filename( + teacher_data_file=args.teacher_data_file, + meta_file=args.meta_file, + ) + + + # 5. 保存 (JSON形式) + # 5.1 (combination -> filename) + # group_sizes も保存しておくと後段のオンライン時に参照しやすい + # tupleは文字列化する必要あり + comb2fn_dict = { + "group_sizes": group_sizes, + "mapping": { + ",".join(map(str, comb)): fn + for comb, fn in combination_to_filename.items() + } + } + with open(args.out_comb2fn, "w", encoding="utf-8") as f: + json.dump(comb2fn_dict, f, ensure_ascii=False, indent=2) + + # データ出力 + for combo, filename in combination_to_filename.items(): + logger.info(f"Combination: {combo}, Filename: {filename}") + + +if __name__ == "__main__": + main_offline_precompute() diff --git a/combined_data/combination_to_filename.json b/combined_data/combination_to_filename.json new file mode 100644 index 0000000000000000000000000000000000000000..ce29c8241683b9b5129e9985b257f8aedaf165b0 --- /dev/null +++ b/combined_data/combination_to_filename.json @@ -0,0 +1,80 @@ +{ + "group_sizes": [ + 8, + 9 + ], + "mapping": { + "-1,-1": "000001.png", + "-1,0": "000002.png", + "-1,1": "000003.png", + "-1,2": "000004.png", + "-1,3": "000005.png", + "-1,4": "000006.png", + "-1,5": "000007.png", + "-1,6": "000008.png", + "-1,7": "000009.png", + "0,-1": "000010.png", + "0,0": "000011.png", + "0,1": "000012.png", + "0,2": "000013.png", + "0,3": "000014.png", + "0,4": "000015.png", + "0,5": "000016.png", + "0,6": "000017.png", + "0,7": "000018.png", + "1,-1": "000019.png", + "1,0": "000020.png", + "1,1": "000021.png", + "1,2": "000022.png", + "1,3": "000023.png", + "1,4": "000024.png", + "1,5": "000025.png", + "1,6": "000026.png", + "1,7": "000027.png", + "2,-1": "000028.png", + "2,0": "000029.png", + "2,1": "000030.png", + "2,2": "000031.png", + "2,3": "000032.png", + "2,4": "000033.png", + "2,5": "000034.png", + "2,6": "000035.png", + "2,7": "000036.png", + "3,-1": "000037.png", + "3,0": "000038.png", + "3,1": "000039.png", + "3,2": "000040.png", + "3,3": "000041.png", + "3,4": "000042.png", + "3,5": "000043.png", + "3,6": "000044.png", + "3,7": "000045.png", + "4,-1": "000046.png", + "4,0": "000047.png", + "4,1": "000048.png", + "4,2": "000049.png", + "4,3": "000050.png", + "4,4": "000051.png", + "4,5": "000052.png", + "4,6": "000053.png", + "4,7": "000054.png", + "5,-1": "000055.png", + "5,0": "000056.png", + "5,1": "000057.png", + "5,2": "000058.png", + "5,3": "000059.png", + "5,4": "000060.png", + "5,5": "000061.png", + "5,6": "000062.png", + "5,7": "000063.png", + "6,-1": "000064.png", + "6,0": "000065.png", + "6,1": "000066.png", + "6,2": "000067.png", + "6,3": "000068.png", + "6,4": "000069.png", + "6,5": "000070.png", + "6,6": "000071.png", + "6,7": "000072.png" + } +} \ No newline at end of file diff --git a/combined_data/lapwing/images/000001.png b/combined_data/lapwing/images/000001.png new file mode 100644 index 0000000000000000000000000000000000000000..8e104298bec687d00baf9965217f8cd9d8e38f5f Binary files /dev/null and b/combined_data/lapwing/images/000001.png differ diff --git a/combined_data/lapwing/images/000002.png b/combined_data/lapwing/images/000002.png new file mode 100644 index 0000000000000000000000000000000000000000..1e94cff39c7df855f545ff0b6f5193d9bf31cd6e Binary files /dev/null and b/combined_data/lapwing/images/000002.png differ diff --git a/combined_data/lapwing/images/000003.png b/combined_data/lapwing/images/000003.png new file mode 100644 index 0000000000000000000000000000000000000000..850361b602929aa459f4e8877bc0cb68c6af8266 Binary files /dev/null and b/combined_data/lapwing/images/000003.png differ diff --git a/combined_data/lapwing/images/000004.png b/combined_data/lapwing/images/000004.png new file mode 100644 index 0000000000000000000000000000000000000000..98b2ce2e46c452fc1bd89c59e71c2bf99d1cc595 Binary files /dev/null and b/combined_data/lapwing/images/000004.png differ diff --git a/combined_data/lapwing/images/000005.png b/combined_data/lapwing/images/000005.png new file mode 100644 index 0000000000000000000000000000000000000000..b3a31a344b651aeef2f69897d99600bac52295bf Binary files /dev/null and b/combined_data/lapwing/images/000005.png differ diff --git a/combined_data/lapwing/images/000006.png b/combined_data/lapwing/images/000006.png new file mode 100644 index 0000000000000000000000000000000000000000..e0d42487b08a5547cdcfd3f550c101d13b7474f5 Binary files /dev/null and b/combined_data/lapwing/images/000006.png differ diff --git a/combined_data/lapwing/images/000007.png b/combined_data/lapwing/images/000007.png new file mode 100644 index 0000000000000000000000000000000000000000..8ba316d6f2906156a51b4a19aa38530a4650463b Binary files /dev/null and b/combined_data/lapwing/images/000007.png differ diff --git a/combined_data/lapwing/images/000008.png b/combined_data/lapwing/images/000008.png new file mode 100644 index 0000000000000000000000000000000000000000..44d4d97a1c53438371620dacbdb735ea5cfd028e Binary files /dev/null and b/combined_data/lapwing/images/000008.png differ diff --git a/combined_data/lapwing/images/000009.png b/combined_data/lapwing/images/000009.png new file mode 100644 index 0000000000000000000000000000000000000000..f34e8ed0209e105d0c57f6c544fca3cb462c36c2 Binary files /dev/null and b/combined_data/lapwing/images/000009.png differ diff --git a/combined_data/lapwing/images/000010.png b/combined_data/lapwing/images/000010.png new file mode 100644 index 0000000000000000000000000000000000000000..ca359310048b75a4f0c5536ce1684a110dc743df Binary files /dev/null and b/combined_data/lapwing/images/000010.png differ diff --git a/combined_data/lapwing/images/000011.png b/combined_data/lapwing/images/000011.png new file mode 100644 index 0000000000000000000000000000000000000000..cb96e68bfbe483a7647c2b86fc2eb9dd9c1dc310 Binary files /dev/null and b/combined_data/lapwing/images/000011.png differ diff --git a/combined_data/lapwing/images/000012.png b/combined_data/lapwing/images/000012.png new file mode 100644 index 0000000000000000000000000000000000000000..0e3a3c8b964c83f5915e066cf1cb679a6a20f962 Binary files /dev/null and b/combined_data/lapwing/images/000012.png differ diff --git a/combined_data/lapwing/images/000013.png b/combined_data/lapwing/images/000013.png new file mode 100644 index 0000000000000000000000000000000000000000..47aba563884d2b92a5c9a8d0c9e111a610b1e148 Binary files /dev/null and b/combined_data/lapwing/images/000013.png differ diff --git a/combined_data/lapwing/images/000014.png b/combined_data/lapwing/images/000014.png new file mode 100644 index 0000000000000000000000000000000000000000..4cf23b4afc5045ea5f2a77b4884180b852ea13cc Binary files /dev/null and b/combined_data/lapwing/images/000014.png differ diff --git a/combined_data/lapwing/images/000015.png b/combined_data/lapwing/images/000015.png new file mode 100644 index 0000000000000000000000000000000000000000..9e041eb43696cf83432eafca2a6feec5c9948ae4 Binary files /dev/null and b/combined_data/lapwing/images/000015.png differ diff --git a/combined_data/lapwing/images/000016.png b/combined_data/lapwing/images/000016.png new file mode 100644 index 0000000000000000000000000000000000000000..d9eadcd0e1cc00410e1519b2d22c40e0ac308b61 Binary files /dev/null and b/combined_data/lapwing/images/000016.png differ diff --git a/combined_data/lapwing/images/000017.png b/combined_data/lapwing/images/000017.png new file mode 100644 index 0000000000000000000000000000000000000000..e191a6a1bd7ee1267a9cd36817137241de2c7355 Binary files /dev/null and b/combined_data/lapwing/images/000017.png differ diff --git a/combined_data/lapwing/images/000018.png b/combined_data/lapwing/images/000018.png new file mode 100644 index 0000000000000000000000000000000000000000..d8d63308d0befbc2f52920db97796b488799dc47 Binary files /dev/null and b/combined_data/lapwing/images/000018.png differ diff --git a/combined_data/lapwing/images/000019.png b/combined_data/lapwing/images/000019.png new file mode 100644 index 0000000000000000000000000000000000000000..38274c888bcdb056f8d1ecae4b7a0e3ed1300a85 Binary files /dev/null and b/combined_data/lapwing/images/000019.png differ diff --git a/combined_data/lapwing/images/000020.png b/combined_data/lapwing/images/000020.png new file mode 100644 index 0000000000000000000000000000000000000000..bc20850be478be6f28071606703f42015dd6886f Binary files /dev/null and b/combined_data/lapwing/images/000020.png differ diff --git a/combined_data/lapwing/images/000021.png b/combined_data/lapwing/images/000021.png new file mode 100644 index 0000000000000000000000000000000000000000..c82f03707bb3104714793854785329237fcbc2de Binary files /dev/null and b/combined_data/lapwing/images/000021.png differ diff --git a/combined_data/lapwing/images/000022.png b/combined_data/lapwing/images/000022.png new file mode 100644 index 0000000000000000000000000000000000000000..fc839a073b057f45d540c9b44d8c3a501574ebbc Binary files /dev/null and b/combined_data/lapwing/images/000022.png differ diff --git a/combined_data/lapwing/images/000023.png b/combined_data/lapwing/images/000023.png new file mode 100644 index 0000000000000000000000000000000000000000..d8854aff5bac4b6f6d2e6de6c3e089b95c6150d6 Binary files /dev/null and b/combined_data/lapwing/images/000023.png differ diff --git a/combined_data/lapwing/images/000024.png b/combined_data/lapwing/images/000024.png new file mode 100644 index 0000000000000000000000000000000000000000..ecd8c7d832956d09d113581620527682fc051bcb Binary files /dev/null and b/combined_data/lapwing/images/000024.png differ diff --git a/combined_data/lapwing/images/000025.png b/combined_data/lapwing/images/000025.png new file mode 100644 index 0000000000000000000000000000000000000000..558d067e9f439b00ee009f418a1d3a3e22f972c7 Binary files /dev/null and b/combined_data/lapwing/images/000025.png differ diff --git a/combined_data/lapwing/images/000026.png b/combined_data/lapwing/images/000026.png new file mode 100644 index 0000000000000000000000000000000000000000..d936876563b446d773c34297cd4ead9fc5e9d8b7 Binary files /dev/null and b/combined_data/lapwing/images/000026.png differ diff --git a/combined_data/lapwing/images/000027.png b/combined_data/lapwing/images/000027.png new file mode 100644 index 0000000000000000000000000000000000000000..1795a5342bcc365c5ab9e0ac911b67dac3c469a8 Binary files /dev/null and b/combined_data/lapwing/images/000027.png differ diff --git a/combined_data/lapwing/images/000028.png b/combined_data/lapwing/images/000028.png new file mode 100644 index 0000000000000000000000000000000000000000..d7bd2d6cde3bccf4b42dcc1740af5866efdec2c4 Binary files /dev/null and b/combined_data/lapwing/images/000028.png differ diff --git a/combined_data/lapwing/images/000029.png b/combined_data/lapwing/images/000029.png new file mode 100644 index 0000000000000000000000000000000000000000..2d6918b7739df5c5ef24ba08cc9b0b16df4f42a2 Binary files /dev/null and b/combined_data/lapwing/images/000029.png differ diff --git a/combined_data/lapwing/images/000030.png b/combined_data/lapwing/images/000030.png new file mode 100644 index 0000000000000000000000000000000000000000..4ae60ab5ecf5dc74912cf7b04ef81ba4ff6ab506 Binary files /dev/null and b/combined_data/lapwing/images/000030.png differ diff --git a/combined_data/lapwing/images/000031.png b/combined_data/lapwing/images/000031.png new file mode 100644 index 0000000000000000000000000000000000000000..2d80db15130fbe079fe06216729cdd4aa6a2d1d8 Binary files /dev/null and b/combined_data/lapwing/images/000031.png differ diff --git a/combined_data/lapwing/images/000032.png b/combined_data/lapwing/images/000032.png new file mode 100644 index 0000000000000000000000000000000000000000..4f21daeb930b67322394db22dc0dce915a474e4a Binary files /dev/null and b/combined_data/lapwing/images/000032.png differ diff --git a/combined_data/lapwing/images/000033.png b/combined_data/lapwing/images/000033.png new file mode 100644 index 0000000000000000000000000000000000000000..77a1b6ea8f28fa45fe8a3023748cd9638c6dcbda Binary files /dev/null and b/combined_data/lapwing/images/000033.png differ diff --git a/combined_data/lapwing/images/000034.png b/combined_data/lapwing/images/000034.png new file mode 100644 index 0000000000000000000000000000000000000000..5fadb77c6f78ac843d355aad00df65dd8ee2ffa3 Binary files /dev/null and b/combined_data/lapwing/images/000034.png differ diff --git a/combined_data/lapwing/images/000035.png b/combined_data/lapwing/images/000035.png new file mode 100644 index 0000000000000000000000000000000000000000..3f557ff4ecbeea5a71318ac1b63a7ae01234d3d5 Binary files /dev/null and b/combined_data/lapwing/images/000035.png differ diff --git a/combined_data/lapwing/images/000036.png b/combined_data/lapwing/images/000036.png new file mode 100644 index 0000000000000000000000000000000000000000..a40f4ad84b806d62808b007383dddf0b959f9484 Binary files /dev/null and b/combined_data/lapwing/images/000036.png differ diff --git a/combined_data/lapwing/images/000037.png b/combined_data/lapwing/images/000037.png new file mode 100644 index 0000000000000000000000000000000000000000..4f98d4e55f9856d89dbde01f24242ef7a41a1e6a Binary files /dev/null and b/combined_data/lapwing/images/000037.png differ diff --git a/combined_data/lapwing/images/000038.png b/combined_data/lapwing/images/000038.png new file mode 100644 index 0000000000000000000000000000000000000000..3df344c948fff1b4ebadf9d67cfd0a5a85379acb Binary files /dev/null and b/combined_data/lapwing/images/000038.png differ diff --git a/combined_data/lapwing/images/000039.png b/combined_data/lapwing/images/000039.png new file mode 100644 index 0000000000000000000000000000000000000000..5a888412e96b6b92d968dfe8ca6c11dc3695fcb4 Binary files /dev/null and b/combined_data/lapwing/images/000039.png differ diff --git a/combined_data/lapwing/images/000040.png b/combined_data/lapwing/images/000040.png new file mode 100644 index 0000000000000000000000000000000000000000..b155db8b96ad5fb73c12d84f742f0229a7bc770c Binary files /dev/null and b/combined_data/lapwing/images/000040.png differ diff --git a/combined_data/lapwing/images/000041.png b/combined_data/lapwing/images/000041.png new file mode 100644 index 0000000000000000000000000000000000000000..f56a1f76ac01dbd52f1e07e2ba38032f24698827 Binary files /dev/null and b/combined_data/lapwing/images/000041.png differ diff --git a/combined_data/lapwing/images/000042.png b/combined_data/lapwing/images/000042.png new file mode 100644 index 0000000000000000000000000000000000000000..7c0d9dcf12e06801b43980b9fd20c6fe935bb053 Binary files /dev/null and b/combined_data/lapwing/images/000042.png differ diff --git a/combined_data/lapwing/images/000043.png b/combined_data/lapwing/images/000043.png new file mode 100644 index 0000000000000000000000000000000000000000..6ebb3ca2bda49cbba406567e2190fa642b4eb4e0 Binary files /dev/null and b/combined_data/lapwing/images/000043.png differ diff --git a/combined_data/lapwing/images/000044.png b/combined_data/lapwing/images/000044.png new file mode 100644 index 0000000000000000000000000000000000000000..5a9f3493fb61b63001308998f2a818abf1aa3217 Binary files /dev/null and b/combined_data/lapwing/images/000044.png differ diff --git a/combined_data/lapwing/images/000045.png b/combined_data/lapwing/images/000045.png new file mode 100644 index 0000000000000000000000000000000000000000..94202a08124298a7ff79981b75de7ce09b660b7f Binary files /dev/null and b/combined_data/lapwing/images/000045.png differ diff --git a/combined_data/lapwing/images/000046.png b/combined_data/lapwing/images/000046.png new file mode 100644 index 0000000000000000000000000000000000000000..94b54673f1e8a4bb0353ffa15221a0c69ac9d1b7 Binary files /dev/null and b/combined_data/lapwing/images/000046.png differ diff --git a/combined_data/lapwing/images/000047.png b/combined_data/lapwing/images/000047.png new file mode 100644 index 0000000000000000000000000000000000000000..78a938cd746f8876988f10d3d4443e5581f72edb Binary files /dev/null and b/combined_data/lapwing/images/000047.png differ diff --git a/combined_data/lapwing/images/000048.png b/combined_data/lapwing/images/000048.png new file mode 100644 index 0000000000000000000000000000000000000000..2471db0c3172eb4d13090665d7f6840f74ed74c8 Binary files /dev/null and b/combined_data/lapwing/images/000048.png differ diff --git a/combined_data/lapwing/images/000049.png b/combined_data/lapwing/images/000049.png new file mode 100644 index 0000000000000000000000000000000000000000..54fe3d51c6a89d1f2abc00556c01cad4ccfc230f Binary files /dev/null and b/combined_data/lapwing/images/000049.png differ diff --git a/combined_data/lapwing/images/000050.png b/combined_data/lapwing/images/000050.png new file mode 100644 index 0000000000000000000000000000000000000000..c4e37f00caf90dc3f1bbe7308892dc0a30a876bc Binary files /dev/null and b/combined_data/lapwing/images/000050.png differ diff --git a/combined_data/lapwing/images/000051.png b/combined_data/lapwing/images/000051.png new file mode 100644 index 0000000000000000000000000000000000000000..028f15c0d2bb4b285dcc0c9b76411657fa00339a Binary files /dev/null and b/combined_data/lapwing/images/000051.png differ diff --git a/combined_data/lapwing/images/000052.png b/combined_data/lapwing/images/000052.png new file mode 100644 index 0000000000000000000000000000000000000000..f11db9835c71b843ce14ecf597ea60a1996efeda Binary files /dev/null and b/combined_data/lapwing/images/000052.png differ diff --git a/combined_data/lapwing/images/000053.png b/combined_data/lapwing/images/000053.png new file mode 100644 index 0000000000000000000000000000000000000000..fead4def9db769f7990ef570dd1a75e0ad894c66 Binary files /dev/null and b/combined_data/lapwing/images/000053.png differ diff --git a/combined_data/lapwing/images/000054.png b/combined_data/lapwing/images/000054.png new file mode 100644 index 0000000000000000000000000000000000000000..2155d5ce5b26e84c31be3181492ac020469a8ebf Binary files /dev/null and b/combined_data/lapwing/images/000054.png differ diff --git a/combined_data/lapwing/images/000055.png b/combined_data/lapwing/images/000055.png new file mode 100644 index 0000000000000000000000000000000000000000..e2f31202b742861a6211f42521b0d908b14bf1e2 Binary files /dev/null and b/combined_data/lapwing/images/000055.png differ diff --git a/combined_data/lapwing/images/000056.png b/combined_data/lapwing/images/000056.png new file mode 100644 index 0000000000000000000000000000000000000000..28ffe475eb726b183798fc1df2a81ff1b8905cb4 Binary files /dev/null and b/combined_data/lapwing/images/000056.png differ diff --git a/combined_data/lapwing/images/000057.png b/combined_data/lapwing/images/000057.png new file mode 100644 index 0000000000000000000000000000000000000000..07eb01854dc0884144da561b4300c72961417264 Binary files /dev/null and b/combined_data/lapwing/images/000057.png differ diff --git a/combined_data/lapwing/images/000058.png b/combined_data/lapwing/images/000058.png new file mode 100644 index 0000000000000000000000000000000000000000..3d5e01f1c0750a58a683121f952afacb1b5e6ee6 Binary files /dev/null and b/combined_data/lapwing/images/000058.png differ diff --git a/combined_data/lapwing/images/000059.png b/combined_data/lapwing/images/000059.png new file mode 100644 index 0000000000000000000000000000000000000000..d33f0de5a7ac75a8188107ea56c4788570139df7 Binary files /dev/null and b/combined_data/lapwing/images/000059.png differ diff --git a/combined_data/lapwing/images/000060.png b/combined_data/lapwing/images/000060.png new file mode 100644 index 0000000000000000000000000000000000000000..665c2f49cb66f5f8684fdba28d1094d22edbf0ac Binary files /dev/null and b/combined_data/lapwing/images/000060.png differ diff --git a/combined_data/lapwing/images/000061.png b/combined_data/lapwing/images/000061.png new file mode 100644 index 0000000000000000000000000000000000000000..7ebd33399651d78c8b411041ad6ac0e8847ee355 Binary files /dev/null and b/combined_data/lapwing/images/000061.png differ diff --git a/combined_data/lapwing/images/000062.png b/combined_data/lapwing/images/000062.png new file mode 100644 index 0000000000000000000000000000000000000000..1b61cfecb1a7d3f8f938c17c12bd04b47cb1cbba Binary files /dev/null and b/combined_data/lapwing/images/000062.png differ diff --git a/combined_data/lapwing/images/000063.png b/combined_data/lapwing/images/000063.png new file mode 100644 index 0000000000000000000000000000000000000000..f14194f513cf2e7114f4854e4746e11a59dd2849 Binary files /dev/null and b/combined_data/lapwing/images/000063.png differ diff --git a/combined_data/lapwing/images/000064.png b/combined_data/lapwing/images/000064.png new file mode 100644 index 0000000000000000000000000000000000000000..5357b5d577eb64e48b883260454be8d69748ba01 Binary files /dev/null and b/combined_data/lapwing/images/000064.png differ diff --git a/combined_data/lapwing/images/000065.png b/combined_data/lapwing/images/000065.png new file mode 100644 index 0000000000000000000000000000000000000000..b0cc6948f499334bcff75e7d7af5af16c0d0cac9 Binary files /dev/null and b/combined_data/lapwing/images/000065.png differ diff --git a/combined_data/lapwing/images/000066.png b/combined_data/lapwing/images/000066.png new file mode 100644 index 0000000000000000000000000000000000000000..9c3a3b398e356f31c52a3181db5668e6d410548b Binary files /dev/null and b/combined_data/lapwing/images/000066.png differ diff --git a/combined_data/lapwing/images/000067.png b/combined_data/lapwing/images/000067.png new file mode 100644 index 0000000000000000000000000000000000000000..4d936a82185d2730b6f5039a15982b86d1c62754 Binary files /dev/null and b/combined_data/lapwing/images/000067.png differ diff --git a/combined_data/lapwing/images/000068.png b/combined_data/lapwing/images/000068.png new file mode 100644 index 0000000000000000000000000000000000000000..cfd886ee78b347b11766281820006748ba52e50b Binary files /dev/null and b/combined_data/lapwing/images/000068.png differ diff --git a/combined_data/lapwing/images/000069.png b/combined_data/lapwing/images/000069.png new file mode 100644 index 0000000000000000000000000000000000000000..658f0620e4db24daa32f06d7f1f3040aca256fae Binary files /dev/null and b/combined_data/lapwing/images/000069.png differ diff --git a/combined_data/lapwing/images/000070.png b/combined_data/lapwing/images/000070.png new file mode 100644 index 0000000000000000000000000000000000000000..ee85350bbe38d100330f301d32cda4e4cf2890e9 Binary files /dev/null and b/combined_data/lapwing/images/000070.png differ diff --git a/combined_data/lapwing/images/000071.png b/combined_data/lapwing/images/000071.png new file mode 100644 index 0000000000000000000000000000000000000000..8b4f22a4ca6cd8b430f387cd146a753ed0edf944 Binary files /dev/null and b/combined_data/lapwing/images/000071.png differ diff --git a/combined_data/lapwing/images/000072.png b/combined_data/lapwing/images/000072.png new file mode 100644 index 0000000000000000000000000000000000000000..5030ee9dbafbc18d9cd1808a78359031418b0ede Binary files /dev/null and b/combined_data/lapwing/images/000072.png differ diff --git a/combined_data/lapwing/texts/BlendShapeData.json b/combined_data/lapwing/texts/BlendShapeData.json new file mode 100644 index 0000000000000000000000000000000000000000..9e985d5bf430790a87fb78dfc2673797c75c3d70 --- /dev/null +++ b/combined_data/lapwing/texts/BlendShapeData.json @@ -0,0 +1,1228 @@ +{ + "dataList": [ + { + "photoFileName": "000001.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": -1, + "selectedBlendShapeIndexInSkinnedMeshRender": -1 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": -1, + "selectedBlendShapeIndexInSkinnedMeshRender": -1 + } + ] + }, + { + "photoFileName": "000002.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": -1, + "selectedBlendShapeIndexInSkinnedMeshRender": -1 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 0, + "selectedBlendShapeIndexInSkinnedMeshRender": 130 + } + ] + }, + { + "photoFileName": "000003.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": -1, + "selectedBlendShapeIndexInSkinnedMeshRender": -1 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 1, + "selectedBlendShapeIndexInSkinnedMeshRender": 131 + } + ] + }, + { + "photoFileName": "000004.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": -1, + "selectedBlendShapeIndexInSkinnedMeshRender": -1 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 2, + "selectedBlendShapeIndexInSkinnedMeshRender": 132 + } + ] + }, + { + "photoFileName": "000005.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": -1, + "selectedBlendShapeIndexInSkinnedMeshRender": -1 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 3, + "selectedBlendShapeIndexInSkinnedMeshRender": 133 + } + ] + }, + { + "photoFileName": "000006.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": -1, + "selectedBlendShapeIndexInSkinnedMeshRender": -1 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 4, + "selectedBlendShapeIndexInSkinnedMeshRender": 134 + } + ] + }, + { + "photoFileName": "000007.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": -1, + "selectedBlendShapeIndexInSkinnedMeshRender": -1 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 5, + "selectedBlendShapeIndexInSkinnedMeshRender": 135 + } + ] + }, + { + "photoFileName": "000008.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": -1, + "selectedBlendShapeIndexInSkinnedMeshRender": -1 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 6, + "selectedBlendShapeIndexInSkinnedMeshRender": 155 + } + ] + }, + { + "photoFileName": "000009.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": -1, + "selectedBlendShapeIndexInSkinnedMeshRender": -1 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 7, + "selectedBlendShapeIndexInSkinnedMeshRender": 156 + } + ] + }, + { + "photoFileName": "000010.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 0, + "selectedBlendShapeIndexInSkinnedMeshRender": 113 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": -1, + "selectedBlendShapeIndexInSkinnedMeshRender": -1 + } + ] + }, + { + "photoFileName": "000011.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 0, + "selectedBlendShapeIndexInSkinnedMeshRender": 113 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 0, + "selectedBlendShapeIndexInSkinnedMeshRender": 130 + } + ] + }, + { + "photoFileName": "000012.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 0, + "selectedBlendShapeIndexInSkinnedMeshRender": 113 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 1, + "selectedBlendShapeIndexInSkinnedMeshRender": 131 + } + ] + }, + { + "photoFileName": "000013.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 0, + "selectedBlendShapeIndexInSkinnedMeshRender": 113 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 2, + "selectedBlendShapeIndexInSkinnedMeshRender": 132 + } + ] + }, + { + "photoFileName": "000014.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 0, + "selectedBlendShapeIndexInSkinnedMeshRender": 113 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 3, + "selectedBlendShapeIndexInSkinnedMeshRender": 133 + } + ] + }, + { + "photoFileName": "000015.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 0, + "selectedBlendShapeIndexInSkinnedMeshRender": 113 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 4, + "selectedBlendShapeIndexInSkinnedMeshRender": 134 + } + ] + }, + { + "photoFileName": "000016.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 0, + "selectedBlendShapeIndexInSkinnedMeshRender": 113 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 5, + "selectedBlendShapeIndexInSkinnedMeshRender": 135 + } + ] + }, + { + "photoFileName": "000017.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 0, + "selectedBlendShapeIndexInSkinnedMeshRender": 113 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 6, + "selectedBlendShapeIndexInSkinnedMeshRender": 155 + } + ] + }, + { + "photoFileName": "000018.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 0, + "selectedBlendShapeIndexInSkinnedMeshRender": 113 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 7, + "selectedBlendShapeIndexInSkinnedMeshRender": 156 + } + ] + }, + { + "photoFileName": "000019.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 1, + "selectedBlendShapeIndexInSkinnedMeshRender": 114 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": -1, + "selectedBlendShapeIndexInSkinnedMeshRender": -1 + } + ] + }, + { + "photoFileName": "000020.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 1, + "selectedBlendShapeIndexInSkinnedMeshRender": 114 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 0, + "selectedBlendShapeIndexInSkinnedMeshRender": 130 + } + ] + }, + { + "photoFileName": "000021.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 1, + "selectedBlendShapeIndexInSkinnedMeshRender": 114 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 1, + "selectedBlendShapeIndexInSkinnedMeshRender": 131 + } + ] + }, + { + "photoFileName": "000022.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 1, + "selectedBlendShapeIndexInSkinnedMeshRender": 114 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 2, + "selectedBlendShapeIndexInSkinnedMeshRender": 132 + } + ] + }, + { + "photoFileName": "000023.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 1, + "selectedBlendShapeIndexInSkinnedMeshRender": 114 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 3, + "selectedBlendShapeIndexInSkinnedMeshRender": 133 + } + ] + }, + { + "photoFileName": "000024.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 1, + "selectedBlendShapeIndexInSkinnedMeshRender": 114 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 4, + "selectedBlendShapeIndexInSkinnedMeshRender": 134 + } + ] + }, + { + "photoFileName": "000025.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 1, + "selectedBlendShapeIndexInSkinnedMeshRender": 114 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 5, + "selectedBlendShapeIndexInSkinnedMeshRender": 135 + } + ] + }, + { + "photoFileName": "000026.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 1, + "selectedBlendShapeIndexInSkinnedMeshRender": 114 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 6, + "selectedBlendShapeIndexInSkinnedMeshRender": 155 + } + ] + }, + { + "photoFileName": "000027.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 1, + "selectedBlendShapeIndexInSkinnedMeshRender": 114 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 7, + "selectedBlendShapeIndexInSkinnedMeshRender": 156 + } + ] + }, + { + "photoFileName": "000028.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 2, + "selectedBlendShapeIndexInSkinnedMeshRender": 119 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": -1, + "selectedBlendShapeIndexInSkinnedMeshRender": -1 + } + ] + }, + { + "photoFileName": "000029.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 2, + "selectedBlendShapeIndexInSkinnedMeshRender": 119 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 0, + "selectedBlendShapeIndexInSkinnedMeshRender": 130 + } + ] + }, + { + "photoFileName": "000030.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 2, + "selectedBlendShapeIndexInSkinnedMeshRender": 119 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 1, + "selectedBlendShapeIndexInSkinnedMeshRender": 131 + } + ] + }, + { + "photoFileName": "000031.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 2, + "selectedBlendShapeIndexInSkinnedMeshRender": 119 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 2, + "selectedBlendShapeIndexInSkinnedMeshRender": 132 + } + ] + }, + { + "photoFileName": "000032.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 2, + "selectedBlendShapeIndexInSkinnedMeshRender": 119 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 3, + "selectedBlendShapeIndexInSkinnedMeshRender": 133 + } + ] + }, + { + "photoFileName": "000033.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 2, + "selectedBlendShapeIndexInSkinnedMeshRender": 119 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 4, + "selectedBlendShapeIndexInSkinnedMeshRender": 134 + } + ] + }, + { + "photoFileName": "000034.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 2, + "selectedBlendShapeIndexInSkinnedMeshRender": 119 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 5, + "selectedBlendShapeIndexInSkinnedMeshRender": 135 + } + ] + }, + { + "photoFileName": "000035.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 2, + "selectedBlendShapeIndexInSkinnedMeshRender": 119 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 6, + "selectedBlendShapeIndexInSkinnedMeshRender": 155 + } + ] + }, + { + "photoFileName": "000036.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 2, + "selectedBlendShapeIndexInSkinnedMeshRender": 119 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 7, + "selectedBlendShapeIndexInSkinnedMeshRender": 156 + } + ] + }, + { + "photoFileName": "000037.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 3, + "selectedBlendShapeIndexInSkinnedMeshRender": 120 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": -1, + "selectedBlendShapeIndexInSkinnedMeshRender": -1 + } + ] + }, + { + "photoFileName": "000038.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 3, + "selectedBlendShapeIndexInSkinnedMeshRender": 120 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 0, + "selectedBlendShapeIndexInSkinnedMeshRender": 130 + } + ] + }, + { + "photoFileName": "000039.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 3, + "selectedBlendShapeIndexInSkinnedMeshRender": 120 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 1, + "selectedBlendShapeIndexInSkinnedMeshRender": 131 + } + ] + }, + { + "photoFileName": "000040.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 3, + "selectedBlendShapeIndexInSkinnedMeshRender": 120 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 2, + "selectedBlendShapeIndexInSkinnedMeshRender": 132 + } + ] + }, + { + "photoFileName": "000041.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 3, + "selectedBlendShapeIndexInSkinnedMeshRender": 120 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 3, + "selectedBlendShapeIndexInSkinnedMeshRender": 133 + } + ] + }, + { + "photoFileName": "000042.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 3, + "selectedBlendShapeIndexInSkinnedMeshRender": 120 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 4, + "selectedBlendShapeIndexInSkinnedMeshRender": 134 + } + ] + }, + { + "photoFileName": "000043.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 3, + "selectedBlendShapeIndexInSkinnedMeshRender": 120 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 5, + "selectedBlendShapeIndexInSkinnedMeshRender": 135 + } + ] + }, + { + "photoFileName": "000044.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 3, + "selectedBlendShapeIndexInSkinnedMeshRender": 120 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 6, + "selectedBlendShapeIndexInSkinnedMeshRender": 155 + } + ] + }, + { + "photoFileName": "000045.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 3, + "selectedBlendShapeIndexInSkinnedMeshRender": 120 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 7, + "selectedBlendShapeIndexInSkinnedMeshRender": 156 + } + ] + }, + { + "photoFileName": "000046.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 4, + "selectedBlendShapeIndexInSkinnedMeshRender": 121 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": -1, + "selectedBlendShapeIndexInSkinnedMeshRender": -1 + } + ] + }, + { + "photoFileName": "000047.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 4, + "selectedBlendShapeIndexInSkinnedMeshRender": 121 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 0, + "selectedBlendShapeIndexInSkinnedMeshRender": 130 + } + ] + }, + { + "photoFileName": "000048.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 4, + "selectedBlendShapeIndexInSkinnedMeshRender": 121 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 1, + "selectedBlendShapeIndexInSkinnedMeshRender": 131 + } + ] + }, + { + "photoFileName": "000049.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 4, + "selectedBlendShapeIndexInSkinnedMeshRender": 121 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 2, + "selectedBlendShapeIndexInSkinnedMeshRender": 132 + } + ] + }, + { + "photoFileName": "000050.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 4, + "selectedBlendShapeIndexInSkinnedMeshRender": 121 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 3, + "selectedBlendShapeIndexInSkinnedMeshRender": 133 + } + ] + }, + { + "photoFileName": "000051.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 4, + "selectedBlendShapeIndexInSkinnedMeshRender": 121 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 4, + "selectedBlendShapeIndexInSkinnedMeshRender": 134 + } + ] + }, + { + "photoFileName": "000052.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 4, + "selectedBlendShapeIndexInSkinnedMeshRender": 121 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 5, + "selectedBlendShapeIndexInSkinnedMeshRender": 135 + } + ] + }, + { + "photoFileName": "000053.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 4, + "selectedBlendShapeIndexInSkinnedMeshRender": 121 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 6, + "selectedBlendShapeIndexInSkinnedMeshRender": 155 + } + ] + }, + { + "photoFileName": "000054.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 4, + "selectedBlendShapeIndexInSkinnedMeshRender": 121 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 7, + "selectedBlendShapeIndexInSkinnedMeshRender": 156 + } + ] + }, + { + "photoFileName": "000055.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 5, + "selectedBlendShapeIndexInSkinnedMeshRender": 99 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": -1, + "selectedBlendShapeIndexInSkinnedMeshRender": -1 + } + ] + }, + { + "photoFileName": "000056.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 5, + "selectedBlendShapeIndexInSkinnedMeshRender": 99 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 0, + "selectedBlendShapeIndexInSkinnedMeshRender": 130 + } + ] + }, + { + "photoFileName": "000057.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 5, + "selectedBlendShapeIndexInSkinnedMeshRender": 99 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 1, + "selectedBlendShapeIndexInSkinnedMeshRender": 131 + } + ] + }, + { + "photoFileName": "000058.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 5, + "selectedBlendShapeIndexInSkinnedMeshRender": 99 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 2, + "selectedBlendShapeIndexInSkinnedMeshRender": 132 + } + ] + }, + { + "photoFileName": "000059.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 5, + "selectedBlendShapeIndexInSkinnedMeshRender": 99 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 3, + "selectedBlendShapeIndexInSkinnedMeshRender": 133 + } + ] + }, + { + "photoFileName": "000060.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 5, + "selectedBlendShapeIndexInSkinnedMeshRender": 99 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 4, + "selectedBlendShapeIndexInSkinnedMeshRender": 134 + } + ] + }, + { + "photoFileName": "000061.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 5, + "selectedBlendShapeIndexInSkinnedMeshRender": 99 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 5, + "selectedBlendShapeIndexInSkinnedMeshRender": 135 + } + ] + }, + { + "photoFileName": "000062.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 5, + "selectedBlendShapeIndexInSkinnedMeshRender": 99 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 6, + "selectedBlendShapeIndexInSkinnedMeshRender": 155 + } + ] + }, + { + "photoFileName": "000063.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 5, + "selectedBlendShapeIndexInSkinnedMeshRender": 99 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 7, + "selectedBlendShapeIndexInSkinnedMeshRender": 156 + } + ] + }, + { + "photoFileName": "000064.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 6, + "selectedBlendShapeIndexInSkinnedMeshRender": 100 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": -1, + "selectedBlendShapeIndexInSkinnedMeshRender": -1 + } + ] + }, + { + "photoFileName": "000065.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 6, + "selectedBlendShapeIndexInSkinnedMeshRender": 100 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 0, + "selectedBlendShapeIndexInSkinnedMeshRender": 130 + } + ] + }, + { + "photoFileName": "000066.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 6, + "selectedBlendShapeIndexInSkinnedMeshRender": 100 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 1, + "selectedBlendShapeIndexInSkinnedMeshRender": 131 + } + ] + }, + { + "photoFileName": "000067.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 6, + "selectedBlendShapeIndexInSkinnedMeshRender": 100 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 2, + "selectedBlendShapeIndexInSkinnedMeshRender": 132 + } + ] + }, + { + "photoFileName": "000068.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 6, + "selectedBlendShapeIndexInSkinnedMeshRender": 100 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 3, + "selectedBlendShapeIndexInSkinnedMeshRender": 133 + } + ] + }, + { + "photoFileName": "000069.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 6, + "selectedBlendShapeIndexInSkinnedMeshRender": 100 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 4, + "selectedBlendShapeIndexInSkinnedMeshRender": 134 + } + ] + }, + { + "photoFileName": "000070.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 6, + "selectedBlendShapeIndexInSkinnedMeshRender": 100 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 5, + "selectedBlendShapeIndexInSkinnedMeshRender": 135 + } + ] + }, + { + "photoFileName": "000071.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 6, + "selectedBlendShapeIndexInSkinnedMeshRender": 100 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 6, + "selectedBlendShapeIndexInSkinnedMeshRender": 155 + } + ] + }, + { + "photoFileName": "000072.png", + "blendShapeSelectionsPerGroup": [ + { + "groupIndex": 0, + "groupName": "Eyes", + "selectedBlendShapeIndex": 6, + "selectedBlendShapeIndexInSkinnedMeshRender": 100 + }, + { + "groupIndex": 1, + "groupName": "Eye Brow", + "selectedBlendShapeIndex": 7, + "selectedBlendShapeIndexInSkinnedMeshRender": 156 + } + ] + } + ] +} \ No newline at end of file diff --git a/combined_data/lapwing/texts/BlendShapeGroupsMeta.json b/combined_data/lapwing/texts/BlendShapeGroupsMeta.json new file mode 100644 index 0000000000000000000000000000000000000000..746d223c7e21e266f3e92c3260df09f65bdb2341 --- /dev/null +++ b/combined_data/lapwing/texts/BlendShapeGroupsMeta.json @@ -0,0 +1,48 @@ +{ + "blendShapeGroupsMeta": [ + { + "groupName": "Eyes", + "blendShapeNames": [ + "まばたき", + "笑い", + "なごみ", + "びっくり", + "じと目", + "irisSwap", + "irisShrink" + ], + "isDiscrete": [ + true, + true, + true, + true, + true, + true, + true + ] + }, + { + "groupName": "Eye Brow", + "blendShapeNames": [ + "真面目", + "困る", + "怒り", + "にこり", + "上", + "下", + "browArcDown", + "browDownAngry" + ], + "isDiscrete": [ + true, + true, + true, + true, + true, + true, + true, + true + ] + } + ] +} \ No newline at end of file diff --git a/results/P99/HitL_results_P99.json b/results/P99/HitL_results_P99.json new file mode 100644 index 0000000000000000000000000000000000000000..dd035a3bb29956d5bdb9aaab626fee71335e4e94 --- /dev/null +++ b/results/P99/HitL_results_P99.json @@ -0,0 +1,10261 @@ +{ + "metadata": { + "participant_id": "P99", + "num_clusters_hitl": 13, + "num_clusters_initial": 8, + "cluster_labels_initial": { + "0": "envy", + "1": "irritated", + "2": "neutral", + "3": "anger", + "4": "rage", + "5": "surprised", + "6": "calm down", + "7": "fear" + }, + "cluster_labels": { + "0": "envy", + "1": "irritated", + "2": "neutral", + "3": "anger", + "4": "rage", + "5": "surprised", + "6": "calm down", + "7": "fear", + "8": "very rage", + "9": "forgiving", + "10": "annoyed", + "11": "fun", + "12": "suspecious" + }, + "constraints": [ + { + "type": "fixed-cluster", + "sample_idx": 899, + "value": 0 + }, + { + "type": "fixed-cluster", + "sample_idx": 395, + "value": 1 + }, + { + "type": "fixed-cluster", + "sample_idx": 218, + "value": 2 + }, + { + "type": "fixed-cluster", + "sample_idx": 882, + "value": 3 + }, + { + "type": "fixed-cluster", + "sample_idx": 273, + "value": 4 + }, + { + "type": "fixed-cluster", + "sample_idx": 941, + "value": 5 + }, + { + "type": "fixed-cluster", + "sample_idx": 812, + "value": 6 + }, + { + "type": "fixed-cluster", + "sample_idx": 363, + "value": 7 + }, + { + "type": "fixed-cluster", + "sample_idx": 501, + "value": 8 + }, + { + "type": "fixed-cluster", + "sample_idx": 492, + "value": 9 + }, + { + "type": "fixed-cluster", + "sample_idx": 639, + "value": 9 + }, + { + "type": "fixed-cluster", + "sample_idx": 908, + "value": 8 + }, + { + "type": "fixed-cluster", + "sample_idx": 709, + "value": 8 + }, + { + "type": "fixed-cluster", + "sample_idx": 913, + "value": 9 + }, + { + "type": "fixed-cluster", + "sample_idx": 978, + "value": 9 + }, + { + "type": "fixed-cluster", + "sample_idx": 595, + "value": 10 + }, + { + "type": "fixed-cluster", + "sample_idx": 18, + "value": 8 + }, + { + "type": "fixed-cluster", + "sample_idx": 673, + "value": 9 + }, + { + "type": "fixed-cluster", + "sample_idx": 183, + "value": 11 + }, + { + "type": "fixed-cluster", + "sample_idx": 72, + "value": 10 + }, + { + "type": "fixed-cluster", + "sample_idx": 965, + "value": 10 + }, + { + "type": "fixed-cluster", + "sample_idx": 802, + "value": 10 + }, + { + "type": "fixed-cluster", + "sample_idx": 711, + "value": 12 + }, + { + "type": "fixed-cluster", + "sample_idx": 274, + "value": 10 + }, + { + "type": "fixed-cluster", + "sample_idx": 0, + "value": 11 + }, + { + "type": "fixed-cluster", + "sample_idx": 439, + "value": 12 + }, + { + "type": "fixed-cluster", + "sample_idx": 841, + "value": 10 + }, + { + "type": "fixed-cluster", + "sample_idx": 635, + "value": 12 + }, + { + "type": "fixed-cluster", + "sample_idx": 307, + "value": 10 + }, + { + "type": "fixed-cluster", + "sample_idx": 923, + "value": 10 + }, + { + "type": "fixed-cluster", + "sample_idx": 508, + "value": 9 + }, + { + "type": "fixed-cluster", + "sample_idx": 497, + "value": 6 + }, + { + "type": "fixed-cluster", + "sample_idx": 972, + "value": 6 + }, + { + "type": "fixed-cluster", + "sample_idx": 53, + "value": 6 + }, + { + "type": "fixed-cluster", + "sample_idx": 472, + "value": 6 + }, + { + "type": "fixed-cluster", + "sample_idx": 260, + "value": 6 + }, + { + "type": "fixed-cluster", + "sample_idx": 652, + "value": 6 + }, + { + "type": "fixed-cluster", + "sample_idx": 587, + "value": 6 + }, + { + "type": "fixed-cluster", + "sample_idx": 214, + "value": 6 + }, + { + "type": "fixed-cluster", + "sample_idx": 720, + "value": 6 + } + ], + "evaluation_choice": "HitL", + "evaluation_layout_is_left_hitl": false, + "annotation_duration_seconds": 610.6094789505005, + "objective_scores": { + "hitl_silhouette": 0.3645821511745453, + "kmeans_matched_silhouette": 0.40304991602897644 + }, + "system_info": { + "random_seed_used": 42, + "script_parameters": { + "dataset_dir": "./data/lapwing", + "image_dir": "./data/lapwing\\images", + "text_dir": "./data/lapwing\\texts", + "bbox_json": "./data/lapwing\\texts\\bounding_boxes.json", + "output_dir": "./experiments", + "labels_name": "HitL_results", + "results_dir": "./results" + }, + "library_versions": { + "torch": "2.1.0+cu121", + "sklearn": "1.6.0", + "transformers": "4.50.3", + "gradio": "5.23.1" + } + } + }, + "samples": [ + { + "image_file": "000001.png", + "image_path": "./data/lapwing\\images\\000001.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": true, + "boundary_sample": true + }, + { + "image_file": "000002.png", + "image_path": "./data/lapwing\\images\\000002.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000003.png", + "image_path": "./data/lapwing\\images\\000003.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000004.png", + "image_path": "./data/lapwing\\images\\000004.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000005.png", + "image_path": "./data/lapwing\\images\\000005.png", + "cluster_id": 3, + "emotion_label": "anger", + "initial_kmeans_cluster_id": 3, + "initial_kmeans_emotion_label": "anger", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000006.png", + "image_path": "./data/lapwing\\images\\000006.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000007.png", + "image_path": "./data/lapwing\\images\\000007.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000008.png", + "image_path": "./data/lapwing\\images\\000008.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000009.png", + "image_path": "./data/lapwing\\images\\000009.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000010.png", + "image_path": "./data/lapwing\\images\\000010.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000011.png", + "image_path": "./data/lapwing\\images\\000011.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000012.png", + "image_path": "./data/lapwing\\images\\000012.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000013.png", + "image_path": "./data/lapwing\\images\\000013.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000014.png", + "image_path": "./data/lapwing\\images\\000014.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000015.png", + "image_path": "./data/lapwing\\images\\000015.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000016.png", + "image_path": "./data/lapwing\\images\\000016.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000017.png", + "image_path": "./data/lapwing\\images\\000017.png", + "cluster_id": 3, + "emotion_label": "anger", + "initial_kmeans_cluster_id": 3, + "initial_kmeans_emotion_label": "anger", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000018.png", + "image_path": "./data/lapwing\\images\\000018.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000019.png", + "image_path": "./data/lapwing\\images\\000019.png", + "cluster_id": 8, + "emotion_label": "very rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": true, + "boundary_sample": false + }, + { + "image_file": "000020.png", + "image_path": "./data/lapwing\\images\\000020.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000021.png", + "image_path": "./data/lapwing\\images\\000021.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000022.png", + "image_path": "./data/lapwing\\images\\000022.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000023.png", + "image_path": "./data/lapwing\\images\\000023.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000024.png", + "image_path": "./data/lapwing\\images\\000024.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000025.png", + "image_path": "./data/lapwing\\images\\000025.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000026.png", + "image_path": "./data/lapwing\\images\\000026.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000027.png", + "image_path": "./data/lapwing\\images\\000027.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000028.png", + "image_path": "./data/lapwing\\images\\000028.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000029.png", + "image_path": "./data/lapwing\\images\\000029.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000030.png", + "image_path": "./data/lapwing\\images\\000030.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000031.png", + "image_path": "./data/lapwing\\images\\000031.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000032.png", + "image_path": "./data/lapwing\\images\\000032.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000033.png", + "image_path": "./data/lapwing\\images\\000033.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000034.png", + "image_path": "./data/lapwing\\images\\000034.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000035.png", + "image_path": "./data/lapwing\\images\\000035.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000036.png", + "image_path": "./data/lapwing\\images\\000036.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000037.png", + "image_path": "./data/lapwing\\images\\000037.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000038.png", + "image_path": "./data/lapwing\\images\\000038.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000039.png", + "image_path": "./data/lapwing\\images\\000039.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000040.png", + "image_path": "./data/lapwing\\images\\000040.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000041.png", + "image_path": "./data/lapwing\\images\\000041.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000042.png", + "image_path": "./data/lapwing\\images\\000042.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000043.png", + "image_path": "./data/lapwing\\images\\000043.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000044.png", + "image_path": "./data/lapwing\\images\\000044.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000045.png", + "image_path": "./data/lapwing\\images\\000045.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000046.png", + "image_path": "./data/lapwing\\images\\000046.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000047.png", + "image_path": "./data/lapwing\\images\\000047.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000048.png", + "image_path": "./data/lapwing\\images\\000048.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000049.png", + "image_path": "./data/lapwing\\images\\000049.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000050.png", + "image_path": "./data/lapwing\\images\\000050.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000051.png", + "image_path": "./data/lapwing\\images\\000051.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000052.png", + "image_path": "./data/lapwing\\images\\000052.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000053.png", + "image_path": "./data/lapwing\\images\\000053.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000054.png", + "image_path": "./data/lapwing\\images\\000054.png", + "cluster_id": 6, + "emotion_label": "calm down", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": true, + "boundary_sample": false + }, + { + "image_file": "000055.png", + "image_path": "./data/lapwing\\images\\000055.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000056.png", + "image_path": "./data/lapwing\\images\\000056.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000057.png", + "image_path": "./data/lapwing\\images\\000057.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000058.png", + "image_path": "./data/lapwing\\images\\000058.png", + "cluster_id": 6, + "emotion_label": "calm down", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000059.png", + "image_path": "./data/lapwing\\images\\000059.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000060.png", + "image_path": "./data/lapwing\\images\\000060.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000061.png", + "image_path": "./data/lapwing\\images\\000061.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000062.png", + "image_path": "./data/lapwing\\images\\000062.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000063.png", + "image_path": "./data/lapwing\\images\\000063.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000064.png", + "image_path": "./data/lapwing\\images\\000064.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000065.png", + "image_path": "./data/lapwing\\images\\000065.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000066.png", + "image_path": "./data/lapwing\\images\\000066.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000067.png", + "image_path": "./data/lapwing\\images\\000067.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000068.png", + "image_path": "./data/lapwing\\images\\000068.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000069.png", + "image_path": "./data/lapwing\\images\\000069.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000070.png", + "image_path": "./data/lapwing\\images\\000070.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000071.png", + "image_path": "./data/lapwing\\images\\000071.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000072.png", + "image_path": "./data/lapwing\\images\\000072.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000073.png", + "image_path": "./data/lapwing\\images\\000073.png", + "cluster_id": 10, + "emotion_label": "annoyed", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": true, + "boundary_sample": false + }, + { + "image_file": "000074.png", + "image_path": "./data/lapwing\\images\\000074.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000075.png", + "image_path": "./data/lapwing\\images\\000075.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000076.png", + "image_path": "./data/lapwing\\images\\000076.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000077.png", + "image_path": "./data/lapwing\\images\\000077.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000078.png", + "image_path": "./data/lapwing\\images\\000078.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000079.png", + "image_path": "./data/lapwing\\images\\000079.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000080.png", + "image_path": "./data/lapwing\\images\\000080.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000081.png", + "image_path": "./data/lapwing\\images\\000081.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000082.png", + "image_path": "./data/lapwing\\images\\000082.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000083.png", + "image_path": "./data/lapwing\\images\\000083.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000084.png", + "image_path": "./data/lapwing\\images\\000084.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000085.png", + "image_path": "./data/lapwing\\images\\000085.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000086.png", + "image_path": "./data/lapwing\\images\\000086.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000087.png", + "image_path": "./data/lapwing\\images\\000087.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000088.png", + "image_path": "./data/lapwing\\images\\000088.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000089.png", + "image_path": "./data/lapwing\\images\\000089.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000090.png", + "image_path": "./data/lapwing\\images\\000090.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000091.png", + "image_path": "./data/lapwing\\images\\000091.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000092.png", + "image_path": "./data/lapwing\\images\\000092.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000093.png", + "image_path": "./data/lapwing\\images\\000093.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000094.png", + "image_path": "./data/lapwing\\images\\000094.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000095.png", + "image_path": "./data/lapwing\\images\\000095.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000096.png", + "image_path": "./data/lapwing\\images\\000096.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000097.png", + "image_path": "./data/lapwing\\images\\000097.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000098.png", + "image_path": "./data/lapwing\\images\\000098.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000099.png", + "image_path": "./data/lapwing\\images\\000099.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000100.png", + "image_path": "./data/lapwing\\images\\000100.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000101.png", + "image_path": "./data/lapwing\\images\\000101.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000102.png", + "image_path": "./data/lapwing\\images\\000102.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000103.png", + "image_path": "./data/lapwing\\images\\000103.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000104.png", + "image_path": "./data/lapwing\\images\\000104.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000105.png", + "image_path": "./data/lapwing\\images\\000105.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000106.png", + "image_path": "./data/lapwing\\images\\000106.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000107.png", + "image_path": "./data/lapwing\\images\\000107.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000108.png", + "image_path": "./data/lapwing\\images\\000108.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000109.png", + "image_path": "./data/lapwing\\images\\000109.png", + "cluster_id": 3, + "emotion_label": "anger", + "initial_kmeans_cluster_id": 3, + "initial_kmeans_emotion_label": "anger", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000110.png", + "image_path": "./data/lapwing\\images\\000110.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000111.png", + "image_path": "./data/lapwing\\images\\000111.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000112.png", + "image_path": "./data/lapwing\\images\\000112.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000113.png", + "image_path": "./data/lapwing\\images\\000113.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000114.png", + "image_path": "./data/lapwing\\images\\000114.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000115.png", + "image_path": "./data/lapwing\\images\\000115.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000116.png", + "image_path": "./data/lapwing\\images\\000116.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000117.png", + "image_path": "./data/lapwing\\images\\000117.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000118.png", + "image_path": "./data/lapwing\\images\\000118.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000119.png", + "image_path": "./data/lapwing\\images\\000119.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000120.png", + "image_path": "./data/lapwing\\images\\000120.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000121.png", + "image_path": "./data/lapwing\\images\\000121.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000122.png", + "image_path": "./data/lapwing\\images\\000122.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000123.png", + "image_path": "./data/lapwing\\images\\000123.png", + "cluster_id": 6, + "emotion_label": "calm down", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000124.png", + "image_path": "./data/lapwing\\images\\000124.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000125.png", + "image_path": "./data/lapwing\\images\\000125.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000126.png", + "image_path": "./data/lapwing\\images\\000126.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000127.png", + "image_path": "./data/lapwing\\images\\000127.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000128.png", + "image_path": "./data/lapwing\\images\\000128.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000129.png", + "image_path": "./data/lapwing\\images\\000129.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000130.png", + "image_path": "./data/lapwing\\images\\000130.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000131.png", + "image_path": "./data/lapwing\\images\\000131.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000132.png", + "image_path": "./data/lapwing\\images\\000132.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000133.png", + "image_path": "./data/lapwing\\images\\000133.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000134.png", + "image_path": "./data/lapwing\\images\\000134.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000135.png", + "image_path": "./data/lapwing\\images\\000135.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000136.png", + "image_path": "./data/lapwing\\images\\000136.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000137.png", + "image_path": "./data/lapwing\\images\\000137.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000138.png", + "image_path": "./data/lapwing\\images\\000138.png", + "cluster_id": 6, + "emotion_label": "calm down", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000139.png", + "image_path": "./data/lapwing\\images\\000139.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000140.png", + "image_path": "./data/lapwing\\images\\000140.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000141.png", + "image_path": "./data/lapwing\\images\\000141.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000142.png", + "image_path": "./data/lapwing\\images\\000142.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000143.png", + "image_path": "./data/lapwing\\images\\000143.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000144.png", + "image_path": "./data/lapwing\\images\\000144.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000145.png", + "image_path": "./data/lapwing\\images\\000145.png", + "cluster_id": 10, + "emotion_label": "annoyed", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000146.png", + "image_path": "./data/lapwing\\images\\000146.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000147.png", + "image_path": "./data/lapwing\\images\\000147.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000148.png", + "image_path": "./data/lapwing\\images\\000148.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000149.png", + "image_path": "./data/lapwing\\images\\000149.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000150.png", + "image_path": "./data/lapwing\\images\\000150.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000151.png", + "image_path": "./data/lapwing\\images\\000151.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000152.png", + "image_path": "./data/lapwing\\images\\000152.png", + "cluster_id": 6, + "emotion_label": "calm down", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000153.png", + "image_path": "./data/lapwing\\images\\000153.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000154.png", + "image_path": "./data/lapwing\\images\\000154.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000155.png", + "image_path": "./data/lapwing\\images\\000155.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000156.png", + "image_path": "./data/lapwing\\images\\000156.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000157.png", + "image_path": "./data/lapwing\\images\\000157.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000158.png", + "image_path": "./data/lapwing\\images\\000158.png", + "cluster_id": 6, + "emotion_label": "calm down", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000159.png", + "image_path": "./data/lapwing\\images\\000159.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000160.png", + "image_path": "./data/lapwing\\images\\000160.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000161.png", + "image_path": "./data/lapwing\\images\\000161.png", + "cluster_id": 3, + "emotion_label": "anger", + "initial_kmeans_cluster_id": 3, + "initial_kmeans_emotion_label": "anger", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000162.png", + "image_path": "./data/lapwing\\images\\000162.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000163.png", + "image_path": "./data/lapwing\\images\\000163.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000164.png", + "image_path": "./data/lapwing\\images\\000164.png", + "cluster_id": 3, + "emotion_label": "anger", + "initial_kmeans_cluster_id": 3, + "initial_kmeans_emotion_label": "anger", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000165.png", + "image_path": "./data/lapwing\\images\\000165.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000166.png", + "image_path": "./data/lapwing\\images\\000166.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000167.png", + "image_path": "./data/lapwing\\images\\000167.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000168.png", + "image_path": "./data/lapwing\\images\\000168.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000169.png", + "image_path": "./data/lapwing\\images\\000169.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000170.png", + "image_path": "./data/lapwing\\images\\000170.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000171.png", + "image_path": "./data/lapwing\\images\\000171.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000172.png", + "image_path": "./data/lapwing\\images\\000172.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000173.png", + "image_path": "./data/lapwing\\images\\000173.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000174.png", + "image_path": "./data/lapwing\\images\\000174.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000175.png", + "image_path": "./data/lapwing\\images\\000175.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000176.png", + "image_path": "./data/lapwing\\images\\000176.png", + "cluster_id": 10, + "emotion_label": "annoyed", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000177.png", + "image_path": "./data/lapwing\\images\\000177.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000178.png", + "image_path": "./data/lapwing\\images\\000178.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000179.png", + "image_path": "./data/lapwing\\images\\000179.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000180.png", + "image_path": "./data/lapwing\\images\\000180.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000181.png", + "image_path": "./data/lapwing\\images\\000181.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000182.png", + "image_path": "./data/lapwing\\images\\000182.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000183.png", + "image_path": "./data/lapwing\\images\\000183.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000184.png", + "image_path": "./data/lapwing\\images\\000184.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": true, + "boundary_sample": true + }, + { + "image_file": "000185.png", + "image_path": "./data/lapwing\\images\\000185.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000186.png", + "image_path": "./data/lapwing\\images\\000186.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000187.png", + "image_path": "./data/lapwing\\images\\000187.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000188.png", + "image_path": "./data/lapwing\\images\\000188.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000189.png", + "image_path": "./data/lapwing\\images\\000189.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000190.png", + "image_path": "./data/lapwing\\images\\000190.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000191.png", + "image_path": "./data/lapwing\\images\\000191.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000192.png", + "image_path": "./data/lapwing\\images\\000192.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000193.png", + "image_path": "./data/lapwing\\images\\000193.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000194.png", + "image_path": "./data/lapwing\\images\\000194.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000195.png", + "image_path": "./data/lapwing\\images\\000195.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000196.png", + "image_path": "./data/lapwing\\images\\000196.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000197.png", + "image_path": "./data/lapwing\\images\\000197.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000198.png", + "image_path": "./data/lapwing\\images\\000198.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000199.png", + "image_path": "./data/lapwing\\images\\000199.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000200.png", + "image_path": "./data/lapwing\\images\\000200.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000201.png", + "image_path": "./data/lapwing\\images\\000201.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000202.png", + "image_path": "./data/lapwing\\images\\000202.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000203.png", + "image_path": "./data/lapwing\\images\\000203.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000204.png", + "image_path": "./data/lapwing\\images\\000204.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000205.png", + "image_path": "./data/lapwing\\images\\000205.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000206.png", + "image_path": "./data/lapwing\\images\\000206.png", + "cluster_id": 10, + "emotion_label": "annoyed", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000207.png", + "image_path": "./data/lapwing\\images\\000207.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000208.png", + "image_path": "./data/lapwing\\images\\000208.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000209.png", + "image_path": "./data/lapwing\\images\\000209.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000210.png", + "image_path": "./data/lapwing\\images\\000210.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000211.png", + "image_path": "./data/lapwing\\images\\000211.png", + "cluster_id": 6, + "emotion_label": "calm down", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000212.png", + "image_path": "./data/lapwing\\images\\000212.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000213.png", + "image_path": "./data/lapwing\\images\\000213.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000214.png", + "image_path": "./data/lapwing\\images\\000214.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000215.png", + "image_path": "./data/lapwing\\images\\000215.png", + "cluster_id": 6, + "emotion_label": "calm down", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": true, + "boundary_sample": true + }, + { + "image_file": "000216.png", + "image_path": "./data/lapwing\\images\\000216.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000217.png", + "image_path": "./data/lapwing\\images\\000217.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000218.png", + "image_path": "./data/lapwing\\images\\000218.png", + "cluster_id": 10, + "emotion_label": "annoyed", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000219.png", + "image_path": "./data/lapwing\\images\\000219.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": true, + "boundary_sample": false + }, + { + "image_file": "000220.png", + "image_path": "./data/lapwing\\images\\000220.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000221.png", + "image_path": "./data/lapwing\\images\\000221.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000222.png", + "image_path": "./data/lapwing\\images\\000222.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000223.png", + "image_path": "./data/lapwing\\images\\000223.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000224.png", + "image_path": "./data/lapwing\\images\\000224.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000225.png", + "image_path": "./data/lapwing\\images\\000225.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000226.png", + "image_path": "./data/lapwing\\images\\000226.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000227.png", + "image_path": "./data/lapwing\\images\\000227.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000228.png", + "image_path": "./data/lapwing\\images\\000228.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000229.png", + "image_path": "./data/lapwing\\images\\000229.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000230.png", + "image_path": "./data/lapwing\\images\\000230.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000231.png", + "image_path": "./data/lapwing\\images\\000231.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000232.png", + "image_path": "./data/lapwing\\images\\000232.png", + "cluster_id": 3, + "emotion_label": "anger", + "initial_kmeans_cluster_id": 3, + "initial_kmeans_emotion_label": "anger", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000233.png", + "image_path": "./data/lapwing\\images\\000233.png", + "cluster_id": 6, + "emotion_label": "calm down", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000234.png", + "image_path": "./data/lapwing\\images\\000234.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000235.png", + "image_path": "./data/lapwing\\images\\000235.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000236.png", + "image_path": "./data/lapwing\\images\\000236.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000237.png", + "image_path": "./data/lapwing\\images\\000237.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000238.png", + "image_path": "./data/lapwing\\images\\000238.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000239.png", + "image_path": "./data/lapwing\\images\\000239.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000240.png", + "image_path": "./data/lapwing\\images\\000240.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000241.png", + "image_path": "./data/lapwing\\images\\000241.png", + "cluster_id": 9, + "emotion_label": "forgiving", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000242.png", + "image_path": "./data/lapwing\\images\\000242.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000243.png", + "image_path": "./data/lapwing\\images\\000243.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000244.png", + "image_path": "./data/lapwing\\images\\000244.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000245.png", + "image_path": "./data/lapwing\\images\\000245.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000246.png", + "image_path": "./data/lapwing\\images\\000246.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000247.png", + "image_path": "./data/lapwing\\images\\000247.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000248.png", + "image_path": "./data/lapwing\\images\\000248.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000249.png", + "image_path": "./data/lapwing\\images\\000249.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000250.png", + "image_path": "./data/lapwing\\images\\000250.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000251.png", + "image_path": "./data/lapwing\\images\\000251.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000252.png", + "image_path": "./data/lapwing\\images\\000252.png", + "cluster_id": 6, + "emotion_label": "calm down", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000253.png", + "image_path": "./data/lapwing\\images\\000253.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000254.png", + "image_path": "./data/lapwing\\images\\000254.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000255.png", + "image_path": "./data/lapwing\\images\\000255.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000256.png", + "image_path": "./data/lapwing\\images\\000256.png", + "cluster_id": 3, + "emotion_label": "anger", + "initial_kmeans_cluster_id": 3, + "initial_kmeans_emotion_label": "anger", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000257.png", + "image_path": "./data/lapwing\\images\\000257.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000258.png", + "image_path": "./data/lapwing\\images\\000258.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000259.png", + "image_path": "./data/lapwing\\images\\000259.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000260.png", + "image_path": "./data/lapwing\\images\\000260.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000261.png", + "image_path": "./data/lapwing\\images\\000261.png", + "cluster_id": 6, + "emotion_label": "calm down", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": true, + "boundary_sample": false + }, + { + "image_file": "000262.png", + "image_path": "./data/lapwing\\images\\000262.png", + "cluster_id": 6, + "emotion_label": "calm down", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000263.png", + "image_path": "./data/lapwing\\images\\000263.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000264.png", + "image_path": "./data/lapwing\\images\\000264.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000265.png", + "image_path": "./data/lapwing\\images\\000265.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000266.png", + "image_path": "./data/lapwing\\images\\000266.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000267.png", + "image_path": "./data/lapwing\\images\\000267.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000268.png", + "image_path": "./data/lapwing\\images\\000268.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000269.png", + "image_path": "./data/lapwing\\images\\000269.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000270.png", + "image_path": "./data/lapwing\\images\\000270.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000271.png", + "image_path": "./data/lapwing\\images\\000271.png", + "cluster_id": 3, + "emotion_label": "anger", + "initial_kmeans_cluster_id": 3, + "initial_kmeans_emotion_label": "anger", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000272.png", + "image_path": "./data/lapwing\\images\\000272.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000273.png", + "image_path": "./data/lapwing\\images\\000273.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000274.png", + "image_path": "./data/lapwing\\images\\000274.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": true, + "boundary_sample": false + }, + { + "image_file": "000275.png", + "image_path": "./data/lapwing\\images\\000275.png", + "cluster_id": 10, + "emotion_label": "annoyed", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": true, + "boundary_sample": false + }, + { + "image_file": "000276.png", + "image_path": "./data/lapwing\\images\\000276.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000277.png", + "image_path": "./data/lapwing\\images\\000277.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000278.png", + "image_path": "./data/lapwing\\images\\000278.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000279.png", + "image_path": "./data/lapwing\\images\\000279.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000280.png", + "image_path": "./data/lapwing\\images\\000280.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000281.png", + "image_path": "./data/lapwing\\images\\000281.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000282.png", + "image_path": "./data/lapwing\\images\\000282.png", + "cluster_id": 3, + "emotion_label": "anger", + "initial_kmeans_cluster_id": 3, + "initial_kmeans_emotion_label": "anger", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000283.png", + "image_path": "./data/lapwing\\images\\000283.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000284.png", + "image_path": "./data/lapwing\\images\\000284.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000285.png", + "image_path": "./data/lapwing\\images\\000285.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000286.png", + "image_path": "./data/lapwing\\images\\000286.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000287.png", + "image_path": "./data/lapwing\\images\\000287.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000288.png", + "image_path": "./data/lapwing\\images\\000288.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000289.png", + "image_path": "./data/lapwing\\images\\000289.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000290.png", + "image_path": "./data/lapwing\\images\\000290.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000291.png", + "image_path": "./data/lapwing\\images\\000291.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000292.png", + "image_path": "./data/lapwing\\images\\000292.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000293.png", + "image_path": "./data/lapwing\\images\\000293.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000294.png", + "image_path": "./data/lapwing\\images\\000294.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000295.png", + "image_path": "./data/lapwing\\images\\000295.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000296.png", + "image_path": "./data/lapwing\\images\\000296.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000297.png", + "image_path": "./data/lapwing\\images\\000297.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000298.png", + "image_path": "./data/lapwing\\images\\000298.png", + "cluster_id": 3, + "emotion_label": "anger", + "initial_kmeans_cluster_id": 3, + "initial_kmeans_emotion_label": "anger", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000299.png", + "image_path": "./data/lapwing\\images\\000299.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000300.png", + "image_path": "./data/lapwing\\images\\000300.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000301.png", + "image_path": "./data/lapwing\\images\\000301.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000302.png", + "image_path": "./data/lapwing\\images\\000302.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000303.png", + "image_path": "./data/lapwing\\images\\000303.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000304.png", + "image_path": "./data/lapwing\\images\\000304.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000305.png", + "image_path": "./data/lapwing\\images\\000305.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000306.png", + "image_path": "./data/lapwing\\images\\000306.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000307.png", + "image_path": "./data/lapwing\\images\\000307.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000308.png", + "image_path": "./data/lapwing\\images\\000308.png", + "cluster_id": 10, + "emotion_label": "annoyed", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": true, + "boundary_sample": false + }, + { + "image_file": "000309.png", + "image_path": "./data/lapwing\\images\\000309.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000310.png", + "image_path": "./data/lapwing\\images\\000310.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000311.png", + "image_path": "./data/lapwing\\images\\000311.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000312.png", + "image_path": "./data/lapwing\\images\\000312.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000313.png", + "image_path": "./data/lapwing\\images\\000313.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000314.png", + "image_path": "./data/lapwing\\images\\000314.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000315.png", + "image_path": "./data/lapwing\\images\\000315.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000316.png", + "image_path": "./data/lapwing\\images\\000316.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000317.png", + "image_path": "./data/lapwing\\images\\000317.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000318.png", + "image_path": "./data/lapwing\\images\\000318.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000319.png", + "image_path": "./data/lapwing\\images\\000319.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000320.png", + "image_path": "./data/lapwing\\images\\000320.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000321.png", + "image_path": "./data/lapwing\\images\\000321.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000322.png", + "image_path": "./data/lapwing\\images\\000322.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000323.png", + "image_path": "./data/lapwing\\images\\000323.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000324.png", + "image_path": "./data/lapwing\\images\\000324.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000325.png", + "image_path": "./data/lapwing\\images\\000325.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000326.png", + "image_path": "./data/lapwing\\images\\000326.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000327.png", + "image_path": "./data/lapwing\\images\\000327.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000328.png", + "image_path": "./data/lapwing\\images\\000328.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000329.png", + "image_path": "./data/lapwing\\images\\000329.png", + "cluster_id": 3, + "emotion_label": "anger", + "initial_kmeans_cluster_id": 3, + "initial_kmeans_emotion_label": "anger", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000330.png", + "image_path": "./data/lapwing\\images\\000330.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000331.png", + "image_path": "./data/lapwing\\images\\000331.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000332.png", + "image_path": "./data/lapwing\\images\\000332.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000333.png", + "image_path": "./data/lapwing\\images\\000333.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000334.png", + "image_path": "./data/lapwing\\images\\000334.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000335.png", + "image_path": "./data/lapwing\\images\\000335.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000336.png", + "image_path": "./data/lapwing\\images\\000336.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000337.png", + "image_path": "./data/lapwing\\images\\000337.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000338.png", + "image_path": "./data/lapwing\\images\\000338.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000339.png", + "image_path": "./data/lapwing\\images\\000339.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000340.png", + "image_path": "./data/lapwing\\images\\000340.png", + "cluster_id": 3, + "emotion_label": "anger", + "initial_kmeans_cluster_id": 3, + "initial_kmeans_emotion_label": "anger", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000341.png", + "image_path": "./data/lapwing\\images\\000341.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000342.png", + "image_path": "./data/lapwing\\images\\000342.png", + "cluster_id": 10, + "emotion_label": "annoyed", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000343.png", + "image_path": "./data/lapwing\\images\\000343.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000344.png", + "image_path": "./data/lapwing\\images\\000344.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000345.png", + "image_path": "./data/lapwing\\images\\000345.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000346.png", + "image_path": "./data/lapwing\\images\\000346.png", + "cluster_id": 3, + "emotion_label": "anger", + "initial_kmeans_cluster_id": 3, + "initial_kmeans_emotion_label": "anger", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000347.png", + "image_path": "./data/lapwing\\images\\000347.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000348.png", + "image_path": "./data/lapwing\\images\\000348.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000349.png", + "image_path": "./data/lapwing\\images\\000349.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000350.png", + "image_path": "./data/lapwing\\images\\000350.png", + "cluster_id": 6, + "emotion_label": "calm down", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000351.png", + "image_path": "./data/lapwing\\images\\000351.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000352.png", + "image_path": "./data/lapwing\\images\\000352.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000353.png", + "image_path": "./data/lapwing\\images\\000353.png", + "cluster_id": 10, + "emotion_label": "annoyed", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000354.png", + "image_path": "./data/lapwing\\images\\000354.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000355.png", + "image_path": "./data/lapwing\\images\\000355.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000356.png", + "image_path": "./data/lapwing\\images\\000356.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000357.png", + "image_path": "./data/lapwing\\images\\000357.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000358.png", + "image_path": "./data/lapwing\\images\\000358.png", + "cluster_id": 6, + "emotion_label": "calm down", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000359.png", + "image_path": "./data/lapwing\\images\\000359.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000360.png", + "image_path": "./data/lapwing\\images\\000360.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000361.png", + "image_path": "./data/lapwing\\images\\000361.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000362.png", + "image_path": "./data/lapwing\\images\\000362.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000363.png", + "image_path": "./data/lapwing\\images\\000363.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000364.png", + "image_path": "./data/lapwing\\images\\000364.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": true, + "boundary_sample": false + }, + { + "image_file": "000365.png", + "image_path": "./data/lapwing\\images\\000365.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000366.png", + "image_path": "./data/lapwing\\images\\000366.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000367.png", + "image_path": "./data/lapwing\\images\\000367.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000368.png", + "image_path": "./data/lapwing\\images\\000368.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000369.png", + "image_path": "./data/lapwing\\images\\000369.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000370.png", + "image_path": "./data/lapwing\\images\\000370.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000371.png", + "image_path": "./data/lapwing\\images\\000371.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000372.png", + "image_path": "./data/lapwing\\images\\000372.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000373.png", + "image_path": "./data/lapwing\\images\\000373.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000374.png", + "image_path": "./data/lapwing\\images\\000374.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000375.png", + "image_path": "./data/lapwing\\images\\000375.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000376.png", + "image_path": "./data/lapwing\\images\\000376.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000377.png", + "image_path": "./data/lapwing\\images\\000377.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000378.png", + "image_path": "./data/lapwing\\images\\000378.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000379.png", + "image_path": "./data/lapwing\\images\\000379.png", + "cluster_id": 6, + "emotion_label": "calm down", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000380.png", + "image_path": "./data/lapwing\\images\\000380.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000381.png", + "image_path": "./data/lapwing\\images\\000381.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000382.png", + "image_path": "./data/lapwing\\images\\000382.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000383.png", + "image_path": "./data/lapwing\\images\\000383.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000384.png", + "image_path": "./data/lapwing\\images\\000384.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000385.png", + "image_path": "./data/lapwing\\images\\000385.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000386.png", + "image_path": "./data/lapwing\\images\\000386.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000387.png", + "image_path": "./data/lapwing\\images\\000387.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000388.png", + "image_path": "./data/lapwing\\images\\000388.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000389.png", + "image_path": "./data/lapwing\\images\\000389.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000390.png", + "image_path": "./data/lapwing\\images\\000390.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000391.png", + "image_path": "./data/lapwing\\images\\000391.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000392.png", + "image_path": "./data/lapwing\\images\\000392.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000393.png", + "image_path": "./data/lapwing\\images\\000393.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000394.png", + "image_path": "./data/lapwing\\images\\000394.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000395.png", + "image_path": "./data/lapwing\\images\\000395.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000396.png", + "image_path": "./data/lapwing\\images\\000396.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": true, + "boundary_sample": false + }, + { + "image_file": "000397.png", + "image_path": "./data/lapwing\\images\\000397.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000398.png", + "image_path": "./data/lapwing\\images\\000398.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000399.png", + "image_path": "./data/lapwing\\images\\000399.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000400.png", + "image_path": "./data/lapwing\\images\\000400.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000401.png", + "image_path": "./data/lapwing\\images\\000401.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000402.png", + "image_path": "./data/lapwing\\images\\000402.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000403.png", + "image_path": "./data/lapwing\\images\\000403.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000404.png", + "image_path": "./data/lapwing\\images\\000404.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000405.png", + "image_path": "./data/lapwing\\images\\000405.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000406.png", + "image_path": "./data/lapwing\\images\\000406.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000407.png", + "image_path": "./data/lapwing\\images\\000407.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000408.png", + "image_path": "./data/lapwing\\images\\000408.png", + "cluster_id": 10, + "emotion_label": "annoyed", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000409.png", + "image_path": "./data/lapwing\\images\\000409.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000410.png", + "image_path": "./data/lapwing\\images\\000410.png", + "cluster_id": 10, + "emotion_label": "annoyed", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000411.png", + "image_path": "./data/lapwing\\images\\000411.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000412.png", + "image_path": "./data/lapwing\\images\\000412.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000413.png", + "image_path": "./data/lapwing\\images\\000413.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000414.png", + "image_path": "./data/lapwing\\images\\000414.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000415.png", + "image_path": "./data/lapwing\\images\\000415.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000416.png", + "image_path": "./data/lapwing\\images\\000416.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000417.png", + "image_path": "./data/lapwing\\images\\000417.png", + "cluster_id": 6, + "emotion_label": "calm down", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000418.png", + "image_path": "./data/lapwing\\images\\000418.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000419.png", + "image_path": "./data/lapwing\\images\\000419.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000420.png", + "image_path": "./data/lapwing\\images\\000420.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000421.png", + "image_path": "./data/lapwing\\images\\000421.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000422.png", + "image_path": "./data/lapwing\\images\\000422.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000423.png", + "image_path": "./data/lapwing\\images\\000423.png", + "cluster_id": 6, + "emotion_label": "calm down", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000424.png", + "image_path": "./data/lapwing\\images\\000424.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000425.png", + "image_path": "./data/lapwing\\images\\000425.png", + "cluster_id": 10, + "emotion_label": "annoyed", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000426.png", + "image_path": "./data/lapwing\\images\\000426.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000427.png", + "image_path": "./data/lapwing\\images\\000427.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000428.png", + "image_path": "./data/lapwing\\images\\000428.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000429.png", + "image_path": "./data/lapwing\\images\\000429.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000430.png", + "image_path": "./data/lapwing\\images\\000430.png", + "cluster_id": 10, + "emotion_label": "annoyed", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000431.png", + "image_path": "./data/lapwing\\images\\000431.png", + "cluster_id": 3, + "emotion_label": "anger", + "initial_kmeans_cluster_id": 3, + "initial_kmeans_emotion_label": "anger", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000432.png", + "image_path": "./data/lapwing\\images\\000432.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000433.png", + "image_path": "./data/lapwing\\images\\000433.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000434.png", + "image_path": "./data/lapwing\\images\\000434.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000435.png", + "image_path": "./data/lapwing\\images\\000435.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000436.png", + "image_path": "./data/lapwing\\images\\000436.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000437.png", + "image_path": "./data/lapwing\\images\\000437.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000438.png", + "image_path": "./data/lapwing\\images\\000438.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000439.png", + "image_path": "./data/lapwing\\images\\000439.png", + "cluster_id": 10, + "emotion_label": "annoyed", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000440.png", + "image_path": "./data/lapwing\\images\\000440.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": true, + "boundary_sample": false + }, + { + "image_file": "000441.png", + "image_path": "./data/lapwing\\images\\000441.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000442.png", + "image_path": "./data/lapwing\\images\\000442.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000443.png", + "image_path": "./data/lapwing\\images\\000443.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000444.png", + "image_path": "./data/lapwing\\images\\000444.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000445.png", + "image_path": "./data/lapwing\\images\\000445.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000446.png", + "image_path": "./data/lapwing\\images\\000446.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000447.png", + "image_path": "./data/lapwing\\images\\000447.png", + "cluster_id": 10, + "emotion_label": "annoyed", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000448.png", + "image_path": "./data/lapwing\\images\\000448.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000449.png", + "image_path": "./data/lapwing\\images\\000449.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000450.png", + "image_path": "./data/lapwing\\images\\000450.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000451.png", + "image_path": "./data/lapwing\\images\\000451.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000452.png", + "image_path": "./data/lapwing\\images\\000452.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000453.png", + "image_path": "./data/lapwing\\images\\000453.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000454.png", + "image_path": "./data/lapwing\\images\\000454.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000455.png", + "image_path": "./data/lapwing\\images\\000455.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000456.png", + "image_path": "./data/lapwing\\images\\000456.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000457.png", + "image_path": "./data/lapwing\\images\\000457.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000458.png", + "image_path": "./data/lapwing\\images\\000458.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000459.png", + "image_path": "./data/lapwing\\images\\000459.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000460.png", + "image_path": "./data/lapwing\\images\\000460.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000461.png", + "image_path": "./data/lapwing\\images\\000461.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000462.png", + "image_path": "./data/lapwing\\images\\000462.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000463.png", + "image_path": "./data/lapwing\\images\\000463.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000464.png", + "image_path": "./data/lapwing\\images\\000464.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000465.png", + "image_path": "./data/lapwing\\images\\000465.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000466.png", + "image_path": "./data/lapwing\\images\\000466.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000467.png", + "image_path": "./data/lapwing\\images\\000467.png", + "cluster_id": 6, + "emotion_label": "calm down", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000468.png", + "image_path": "./data/lapwing\\images\\000468.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000469.png", + "image_path": "./data/lapwing\\images\\000469.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000470.png", + "image_path": "./data/lapwing\\images\\000470.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000471.png", + "image_path": "./data/lapwing\\images\\000471.png", + "cluster_id": 6, + "emotion_label": "calm down", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000472.png", + "image_path": "./data/lapwing\\images\\000472.png", + "cluster_id": 6, + "emotion_label": "calm down", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000473.png", + "image_path": "./data/lapwing\\images\\000473.png", + "cluster_id": 6, + "emotion_label": "calm down", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": true, + "boundary_sample": false + }, + { + "image_file": "000474.png", + "image_path": "./data/lapwing\\images\\000474.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000475.png", + "image_path": "./data/lapwing\\images\\000475.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000476.png", + "image_path": "./data/lapwing\\images\\000476.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000477.png", + "image_path": "./data/lapwing\\images\\000477.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000478.png", + "image_path": "./data/lapwing\\images\\000478.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000479.png", + "image_path": "./data/lapwing\\images\\000479.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000480.png", + "image_path": "./data/lapwing\\images\\000480.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000481.png", + "image_path": "./data/lapwing\\images\\000481.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000482.png", + "image_path": "./data/lapwing\\images\\000482.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000483.png", + "image_path": "./data/lapwing\\images\\000483.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000484.png", + "image_path": "./data/lapwing\\images\\000484.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000485.png", + "image_path": "./data/lapwing\\images\\000485.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000486.png", + "image_path": "./data/lapwing\\images\\000486.png", + "cluster_id": 6, + "emotion_label": "calm down", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000487.png", + "image_path": "./data/lapwing\\images\\000487.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000488.png", + "image_path": "./data/lapwing\\images\\000488.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000489.png", + "image_path": "./data/lapwing\\images\\000489.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000490.png", + "image_path": "./data/lapwing\\images\\000490.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000491.png", + "image_path": "./data/lapwing\\images\\000491.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000492.png", + "image_path": "./data/lapwing\\images\\000492.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000493.png", + "image_path": "./data/lapwing\\images\\000493.png", + "cluster_id": 9, + "emotion_label": "forgiving", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": true, + "boundary_sample": false + }, + { + "image_file": "000494.png", + "image_path": "./data/lapwing\\images\\000494.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000495.png", + "image_path": "./data/lapwing\\images\\000495.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000496.png", + "image_path": "./data/lapwing\\images\\000496.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000497.png", + "image_path": "./data/lapwing\\images\\000497.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000498.png", + "image_path": "./data/lapwing\\images\\000498.png", + "cluster_id": 6, + "emotion_label": "calm down", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": true, + "boundary_sample": false + }, + { + "image_file": "000499.png", + "image_path": "./data/lapwing\\images\\000499.png", + "cluster_id": 6, + "emotion_label": "calm down", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000500.png", + "image_path": "./data/lapwing\\images\\000500.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000501.png", + "image_path": "./data/lapwing\\images\\000501.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000502.png", + "image_path": "./data/lapwing\\images\\000502.png", + "cluster_id": 8, + "emotion_label": "very rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": true, + "boundary_sample": false + }, + { + "image_file": "000503.png", + "image_path": "./data/lapwing\\images\\000503.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000504.png", + "image_path": "./data/lapwing\\images\\000504.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000505.png", + "image_path": "./data/lapwing\\images\\000505.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000506.png", + "image_path": "./data/lapwing\\images\\000506.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000507.png", + "image_path": "./data/lapwing\\images\\000507.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000508.png", + "image_path": "./data/lapwing\\images\\000508.png", + "cluster_id": 6, + "emotion_label": "calm down", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000509.png", + "image_path": "./data/lapwing\\images\\000509.png", + "cluster_id": 9, + "emotion_label": "forgiving", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": true, + "boundary_sample": false + }, + { + "image_file": "000510.png", + "image_path": "./data/lapwing\\images\\000510.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000511.png", + "image_path": "./data/lapwing\\images\\000511.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000512.png", + "image_path": "./data/lapwing\\images\\000512.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000513.png", + "image_path": "./data/lapwing\\images\\000513.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000514.png", + "image_path": "./data/lapwing\\images\\000514.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000515.png", + "image_path": "./data/lapwing\\images\\000515.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000516.png", + "image_path": "./data/lapwing\\images\\000516.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000517.png", + "image_path": "./data/lapwing\\images\\000517.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000518.png", + "image_path": "./data/lapwing\\images\\000518.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000519.png", + "image_path": "./data/lapwing\\images\\000519.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000520.png", + "image_path": "./data/lapwing\\images\\000520.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000521.png", + "image_path": "./data/lapwing\\images\\000521.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000522.png", + "image_path": "./data/lapwing\\images\\000522.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000523.png", + "image_path": "./data/lapwing\\images\\000523.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000524.png", + "image_path": "./data/lapwing\\images\\000524.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000525.png", + "image_path": "./data/lapwing\\images\\000525.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000526.png", + "image_path": "./data/lapwing\\images\\000526.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000527.png", + "image_path": "./data/lapwing\\images\\000527.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000528.png", + "image_path": "./data/lapwing\\images\\000528.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000529.png", + "image_path": "./data/lapwing\\images\\000529.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000530.png", + "image_path": "./data/lapwing\\images\\000530.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000531.png", + "image_path": "./data/lapwing\\images\\000531.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000532.png", + "image_path": "./data/lapwing\\images\\000532.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000533.png", + "image_path": "./data/lapwing\\images\\000533.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000534.png", + "image_path": "./data/lapwing\\images\\000534.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000535.png", + "image_path": "./data/lapwing\\images\\000535.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000536.png", + "image_path": "./data/lapwing\\images\\000536.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000537.png", + "image_path": "./data/lapwing\\images\\000537.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000538.png", + "image_path": "./data/lapwing\\images\\000538.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000539.png", + "image_path": "./data/lapwing\\images\\000539.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000540.png", + "image_path": "./data/lapwing\\images\\000540.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000541.png", + "image_path": "./data/lapwing\\images\\000541.png", + "cluster_id": 6, + "emotion_label": "calm down", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000542.png", + "image_path": "./data/lapwing\\images\\000542.png", + "cluster_id": 3, + "emotion_label": "anger", + "initial_kmeans_cluster_id": 3, + "initial_kmeans_emotion_label": "anger", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000543.png", + "image_path": "./data/lapwing\\images\\000543.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000544.png", + "image_path": "./data/lapwing\\images\\000544.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000545.png", + "image_path": "./data/lapwing\\images\\000545.png", + "cluster_id": 3, + "emotion_label": "anger", + "initial_kmeans_cluster_id": 3, + "initial_kmeans_emotion_label": "anger", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000546.png", + "image_path": "./data/lapwing\\images\\000546.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000547.png", + "image_path": "./data/lapwing\\images\\000547.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000548.png", + "image_path": "./data/lapwing\\images\\000548.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000549.png", + "image_path": "./data/lapwing\\images\\000549.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000550.png", + "image_path": "./data/lapwing\\images\\000550.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000551.png", + "image_path": "./data/lapwing\\images\\000551.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000552.png", + "image_path": "./data/lapwing\\images\\000552.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000553.png", + "image_path": "./data/lapwing\\images\\000553.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000554.png", + "image_path": "./data/lapwing\\images\\000554.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000555.png", + "image_path": "./data/lapwing\\images\\000555.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000556.png", + "image_path": "./data/lapwing\\images\\000556.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000557.png", + "image_path": "./data/lapwing\\images\\000557.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000558.png", + "image_path": "./data/lapwing\\images\\000558.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000559.png", + "image_path": "./data/lapwing\\images\\000559.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000560.png", + "image_path": "./data/lapwing\\images\\000560.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000561.png", + "image_path": "./data/lapwing\\images\\000561.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000562.png", + "image_path": "./data/lapwing\\images\\000562.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000563.png", + "image_path": "./data/lapwing\\images\\000563.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000564.png", + "image_path": "./data/lapwing\\images\\000564.png", + "cluster_id": 6, + "emotion_label": "calm down", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000565.png", + "image_path": "./data/lapwing\\images\\000565.png", + "cluster_id": 9, + "emotion_label": "forgiving", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000566.png", + "image_path": "./data/lapwing\\images\\000566.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000567.png", + "image_path": "./data/lapwing\\images\\000567.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000568.png", + "image_path": "./data/lapwing\\images\\000568.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000569.png", + "image_path": "./data/lapwing\\images\\000569.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000570.png", + "image_path": "./data/lapwing\\images\\000570.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000571.png", + "image_path": "./data/lapwing\\images\\000571.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000572.png", + "image_path": "./data/lapwing\\images\\000572.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000573.png", + "image_path": "./data/lapwing\\images\\000573.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000574.png", + "image_path": "./data/lapwing\\images\\000574.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000575.png", + "image_path": "./data/lapwing\\images\\000575.png", + "cluster_id": 10, + "emotion_label": "annoyed", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000576.png", + "image_path": "./data/lapwing\\images\\000576.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000577.png", + "image_path": "./data/lapwing\\images\\000577.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000578.png", + "image_path": "./data/lapwing\\images\\000578.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000579.png", + "image_path": "./data/lapwing\\images\\000579.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000580.png", + "image_path": "./data/lapwing\\images\\000580.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000581.png", + "image_path": "./data/lapwing\\images\\000581.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000582.png", + "image_path": "./data/lapwing\\images\\000582.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000583.png", + "image_path": "./data/lapwing\\images\\000583.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000584.png", + "image_path": "./data/lapwing\\images\\000584.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000585.png", + "image_path": "./data/lapwing\\images\\000585.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000586.png", + "image_path": "./data/lapwing\\images\\000586.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000587.png", + "image_path": "./data/lapwing\\images\\000587.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000588.png", + "image_path": "./data/lapwing\\images\\000588.png", + "cluster_id": 6, + "emotion_label": "calm down", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": true, + "boundary_sample": false + }, + { + "image_file": "000589.png", + "image_path": "./data/lapwing\\images\\000589.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000590.png", + "image_path": "./data/lapwing\\images\\000590.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000591.png", + "image_path": "./data/lapwing\\images\\000591.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000592.png", + "image_path": "./data/lapwing\\images\\000592.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000593.png", + "image_path": "./data/lapwing\\images\\000593.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000594.png", + "image_path": "./data/lapwing\\images\\000594.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000595.png", + "image_path": "./data/lapwing\\images\\000595.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000596.png", + "image_path": "./data/lapwing\\images\\000596.png", + "cluster_id": 10, + "emotion_label": "annoyed", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": true, + "boundary_sample": false + }, + { + "image_file": "000597.png", + "image_path": "./data/lapwing\\images\\000597.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000598.png", + "image_path": "./data/lapwing\\images\\000598.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000599.png", + "image_path": "./data/lapwing\\images\\000599.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000600.png", + "image_path": "./data/lapwing\\images\\000600.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000601.png", + "image_path": "./data/lapwing\\images\\000601.png", + "cluster_id": 6, + "emotion_label": "calm down", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000602.png", + "image_path": "./data/lapwing\\images\\000602.png", + "cluster_id": 10, + "emotion_label": "annoyed", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000603.png", + "image_path": "./data/lapwing\\images\\000603.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000604.png", + "image_path": "./data/lapwing\\images\\000604.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000605.png", + "image_path": "./data/lapwing\\images\\000605.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000606.png", + "image_path": "./data/lapwing\\images\\000606.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000607.png", + "image_path": "./data/lapwing\\images\\000607.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000608.png", + "image_path": "./data/lapwing\\images\\000608.png", + "cluster_id": 3, + "emotion_label": "anger", + "initial_kmeans_cluster_id": 3, + "initial_kmeans_emotion_label": "anger", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000609.png", + "image_path": "./data/lapwing\\images\\000609.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000610.png", + "image_path": "./data/lapwing\\images\\000610.png", + "cluster_id": 6, + "emotion_label": "calm down", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000611.png", + "image_path": "./data/lapwing\\images\\000611.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000612.png", + "image_path": "./data/lapwing\\images\\000612.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000613.png", + "image_path": "./data/lapwing\\images\\000613.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000614.png", + "image_path": "./data/lapwing\\images\\000614.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000615.png", + "image_path": "./data/lapwing\\images\\000615.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000616.png", + "image_path": "./data/lapwing\\images\\000616.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000617.png", + "image_path": "./data/lapwing\\images\\000617.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000618.png", + "image_path": "./data/lapwing\\images\\000618.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000619.png", + "image_path": "./data/lapwing\\images\\000619.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000620.png", + "image_path": "./data/lapwing\\images\\000620.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000621.png", + "image_path": "./data/lapwing\\images\\000621.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000622.png", + "image_path": "./data/lapwing\\images\\000622.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000623.png", + "image_path": "./data/lapwing\\images\\000623.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000624.png", + "image_path": "./data/lapwing\\images\\000624.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000625.png", + "image_path": "./data/lapwing\\images\\000625.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000626.png", + "image_path": "./data/lapwing\\images\\000626.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000627.png", + "image_path": "./data/lapwing\\images\\000627.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000628.png", + "image_path": "./data/lapwing\\images\\000628.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000629.png", + "image_path": "./data/lapwing\\images\\000629.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000630.png", + "image_path": "./data/lapwing\\images\\000630.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000631.png", + "image_path": "./data/lapwing\\images\\000631.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000632.png", + "image_path": "./data/lapwing\\images\\000632.png", + "cluster_id": 3, + "emotion_label": "anger", + "initial_kmeans_cluster_id": 3, + "initial_kmeans_emotion_label": "anger", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000633.png", + "image_path": "./data/lapwing\\images\\000633.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000634.png", + "image_path": "./data/lapwing\\images\\000634.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000635.png", + "image_path": "./data/lapwing\\images\\000635.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000636.png", + "image_path": "./data/lapwing\\images\\000636.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": true, + "boundary_sample": false + }, + { + "image_file": "000637.png", + "image_path": "./data/lapwing\\images\\000637.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000638.png", + "image_path": "./data/lapwing\\images\\000638.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000639.png", + "image_path": "./data/lapwing\\images\\000639.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000640.png", + "image_path": "./data/lapwing\\images\\000640.png", + "cluster_id": 9, + "emotion_label": "forgiving", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": true, + "boundary_sample": false + }, + { + "image_file": "000641.png", + "image_path": "./data/lapwing\\images\\000641.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000642.png", + "image_path": "./data/lapwing\\images\\000642.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000643.png", + "image_path": "./data/lapwing\\images\\000643.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000644.png", + "image_path": "./data/lapwing\\images\\000644.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000645.png", + "image_path": "./data/lapwing\\images\\000645.png", + "cluster_id": 6, + "emotion_label": "calm down", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000646.png", + "image_path": "./data/lapwing\\images\\000646.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000647.png", + "image_path": "./data/lapwing\\images\\000647.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000648.png", + "image_path": "./data/lapwing\\images\\000648.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000649.png", + "image_path": "./data/lapwing\\images\\000649.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000650.png", + "image_path": "./data/lapwing\\images\\000650.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000651.png", + "image_path": "./data/lapwing\\images\\000651.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000652.png", + "image_path": "./data/lapwing\\images\\000652.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000653.png", + "image_path": "./data/lapwing\\images\\000653.png", + "cluster_id": 6, + "emotion_label": "calm down", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": true, + "boundary_sample": false + }, + { + "image_file": "000654.png", + "image_path": "./data/lapwing\\images\\000654.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000655.png", + "image_path": "./data/lapwing\\images\\000655.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000656.png", + "image_path": "./data/lapwing\\images\\000656.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000657.png", + "image_path": "./data/lapwing\\images\\000657.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000658.png", + "image_path": "./data/lapwing\\images\\000658.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000659.png", + "image_path": "./data/lapwing\\images\\000659.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000660.png", + "image_path": "./data/lapwing\\images\\000660.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000661.png", + "image_path": "./data/lapwing\\images\\000661.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000662.png", + "image_path": "./data/lapwing\\images\\000662.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000663.png", + "image_path": "./data/lapwing\\images\\000663.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000664.png", + "image_path": "./data/lapwing\\images\\000664.png", + "cluster_id": 10, + "emotion_label": "annoyed", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000665.png", + "image_path": "./data/lapwing\\images\\000665.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000666.png", + "image_path": "./data/lapwing\\images\\000666.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000667.png", + "image_path": "./data/lapwing\\images\\000667.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000668.png", + "image_path": "./data/lapwing\\images\\000668.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000669.png", + "image_path": "./data/lapwing\\images\\000669.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000670.png", + "image_path": "./data/lapwing\\images\\000670.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000671.png", + "image_path": "./data/lapwing\\images\\000671.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000672.png", + "image_path": "./data/lapwing\\images\\000672.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000673.png", + "image_path": "./data/lapwing\\images\\000673.png", + "cluster_id": 6, + "emotion_label": "calm down", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000674.png", + "image_path": "./data/lapwing\\images\\000674.png", + "cluster_id": 9, + "emotion_label": "forgiving", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": true, + "boundary_sample": false + }, + { + "image_file": "000675.png", + "image_path": "./data/lapwing\\images\\000675.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000676.png", + "image_path": "./data/lapwing\\images\\000676.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000677.png", + "image_path": "./data/lapwing\\images\\000677.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000678.png", + "image_path": "./data/lapwing\\images\\000678.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000679.png", + "image_path": "./data/lapwing\\images\\000679.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000680.png", + "image_path": "./data/lapwing\\images\\000680.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000681.png", + "image_path": "./data/lapwing\\images\\000681.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000682.png", + "image_path": "./data/lapwing\\images\\000682.png", + "cluster_id": 8, + "emotion_label": "very rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000683.png", + "image_path": "./data/lapwing\\images\\000683.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": true + }, + { + "image_file": "000684.png", + "image_path": "./data/lapwing\\images\\000684.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000685.png", + "image_path": "./data/lapwing\\images\\000685.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000686.png", + "image_path": "./data/lapwing\\images\\000686.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000687.png", + "image_path": "./data/lapwing\\images\\000687.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000688.png", + "image_path": "./data/lapwing\\images\\000688.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000689.png", + "image_path": "./data/lapwing\\images\\000689.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000690.png", + "image_path": "./data/lapwing\\images\\000690.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000691.png", + "image_path": "./data/lapwing\\images\\000691.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000692.png", + "image_path": "./data/lapwing\\images\\000692.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000693.png", + "image_path": "./data/lapwing\\images\\000693.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": true + }, + { + "image_file": "000694.png", + "image_path": "./data/lapwing\\images\\000694.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000695.png", + "image_path": "./data/lapwing\\images\\000695.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000696.png", + "image_path": "./data/lapwing\\images\\000696.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000697.png", + "image_path": "./data/lapwing\\images\\000697.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000698.png", + "image_path": "./data/lapwing\\images\\000698.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000699.png", + "image_path": "./data/lapwing\\images\\000699.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000700.png", + "image_path": "./data/lapwing\\images\\000700.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000701.png", + "image_path": "./data/lapwing\\images\\000701.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000702.png", + "image_path": "./data/lapwing\\images\\000702.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000703.png", + "image_path": "./data/lapwing\\images\\000703.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000704.png", + "image_path": "./data/lapwing\\images\\000704.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000705.png", + "image_path": "./data/lapwing\\images\\000705.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000706.png", + "image_path": "./data/lapwing\\images\\000706.png", + "cluster_id": 6, + "emotion_label": "calm down", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000707.png", + "image_path": "./data/lapwing\\images\\000707.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000708.png", + "image_path": "./data/lapwing\\images\\000708.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000709.png", + "image_path": "./data/lapwing\\images\\000709.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000710.png", + "image_path": "./data/lapwing\\images\\000710.png", + "cluster_id": 8, + "emotion_label": "very rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": true, + "boundary_sample": false + }, + { + "image_file": "000711.png", + "image_path": "./data/lapwing\\images\\000711.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000712.png", + "image_path": "./data/lapwing\\images\\000712.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": true, + "boundary_sample": false + }, + { + "image_file": "000713.png", + "image_path": "./data/lapwing\\images\\000713.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000714.png", + "image_path": "./data/lapwing\\images\\000714.png", + "cluster_id": 3, + "emotion_label": "anger", + "initial_kmeans_cluster_id": 3, + "initial_kmeans_emotion_label": "anger", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000715.png", + "image_path": "./data/lapwing\\images\\000715.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000716.png", + "image_path": "./data/lapwing\\images\\000716.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000717.png", + "image_path": "./data/lapwing\\images\\000717.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000718.png", + "image_path": "./data/lapwing\\images\\000718.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000719.png", + "image_path": "./data/lapwing\\images\\000719.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000720.png", + "image_path": "./data/lapwing\\images\\000720.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000721.png", + "image_path": "./data/lapwing\\images\\000721.png", + "cluster_id": 6, + "emotion_label": "calm down", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": true, + "boundary_sample": true + }, + { + "image_file": "000722.png", + "image_path": "./data/lapwing\\images\\000722.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000723.png", + "image_path": "./data/lapwing\\images\\000723.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000724.png", + "image_path": "./data/lapwing\\images\\000724.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000725.png", + "image_path": "./data/lapwing\\images\\000725.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000726.png", + "image_path": "./data/lapwing\\images\\000726.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000727.png", + "image_path": "./data/lapwing\\images\\000727.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000728.png", + "image_path": "./data/lapwing\\images\\000728.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000729.png", + "image_path": "./data/lapwing\\images\\000729.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000730.png", + "image_path": "./data/lapwing\\images\\000730.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000731.png", + "image_path": "./data/lapwing\\images\\000731.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000732.png", + "image_path": "./data/lapwing\\images\\000732.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": true + }, + { + "image_file": "000733.png", + "image_path": "./data/lapwing\\images\\000733.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000734.png", + "image_path": "./data/lapwing\\images\\000734.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000735.png", + "image_path": "./data/lapwing\\images\\000735.png", + "cluster_id": 3, + "emotion_label": "anger", + "initial_kmeans_cluster_id": 3, + "initial_kmeans_emotion_label": "anger", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000736.png", + "image_path": "./data/lapwing\\images\\000736.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000737.png", + "image_path": "./data/lapwing\\images\\000737.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000738.png", + "image_path": "./data/lapwing\\images\\000738.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000739.png", + "image_path": "./data/lapwing\\images\\000739.png", + "cluster_id": 8, + "emotion_label": "very rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000740.png", + "image_path": "./data/lapwing\\images\\000740.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000741.png", + "image_path": "./data/lapwing\\images\\000741.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000742.png", + "image_path": "./data/lapwing\\images\\000742.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000743.png", + "image_path": "./data/lapwing\\images\\000743.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000744.png", + "image_path": "./data/lapwing\\images\\000744.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000745.png", + "image_path": "./data/lapwing\\images\\000745.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000746.png", + "image_path": "./data/lapwing\\images\\000746.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000747.png", + "image_path": "./data/lapwing\\images\\000747.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000748.png", + "image_path": "./data/lapwing\\images\\000748.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000749.png", + "image_path": "./data/lapwing\\images\\000749.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000750.png", + "image_path": "./data/lapwing\\images\\000750.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000751.png", + "image_path": "./data/lapwing\\images\\000751.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000752.png", + "image_path": "./data/lapwing\\images\\000752.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000753.png", + "image_path": "./data/lapwing\\images\\000753.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000754.png", + "image_path": "./data/lapwing\\images\\000754.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000755.png", + "image_path": "./data/lapwing\\images\\000755.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000756.png", + "image_path": "./data/lapwing\\images\\000756.png", + "cluster_id": 6, + "emotion_label": "calm down", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000757.png", + "image_path": "./data/lapwing\\images\\000757.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000758.png", + "image_path": "./data/lapwing\\images\\000758.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000759.png", + "image_path": "./data/lapwing\\images\\000759.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000760.png", + "image_path": "./data/lapwing\\images\\000760.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000761.png", + "image_path": "./data/lapwing\\images\\000761.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000762.png", + "image_path": "./data/lapwing\\images\\000762.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000763.png", + "image_path": "./data/lapwing\\images\\000763.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000764.png", + "image_path": "./data/lapwing\\images\\000764.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000765.png", + "image_path": "./data/lapwing\\images\\000765.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000766.png", + "image_path": "./data/lapwing\\images\\000766.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000767.png", + "image_path": "./data/lapwing\\images\\000767.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000768.png", + "image_path": "./data/lapwing\\images\\000768.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": true + }, + { + "image_file": "000769.png", + "image_path": "./data/lapwing\\images\\000769.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000770.png", + "image_path": "./data/lapwing\\images\\000770.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000771.png", + "image_path": "./data/lapwing\\images\\000771.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000772.png", + "image_path": "./data/lapwing\\images\\000772.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000773.png", + "image_path": "./data/lapwing\\images\\000773.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000774.png", + "image_path": "./data/lapwing\\images\\000774.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000775.png", + "image_path": "./data/lapwing\\images\\000775.png", + "cluster_id": 3, + "emotion_label": "anger", + "initial_kmeans_cluster_id": 3, + "initial_kmeans_emotion_label": "anger", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000776.png", + "image_path": "./data/lapwing\\images\\000776.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000777.png", + "image_path": "./data/lapwing\\images\\000777.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000778.png", + "image_path": "./data/lapwing\\images\\000778.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000779.png", + "image_path": "./data/lapwing\\images\\000779.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000780.png", + "image_path": "./data/lapwing\\images\\000780.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000781.png", + "image_path": "./data/lapwing\\images\\000781.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": true + }, + { + "image_file": "000782.png", + "image_path": "./data/lapwing\\images\\000782.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000783.png", + "image_path": "./data/lapwing\\images\\000783.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000784.png", + "image_path": "./data/lapwing\\images\\000784.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000785.png", + "image_path": "./data/lapwing\\images\\000785.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000786.png", + "image_path": "./data/lapwing\\images\\000786.png", + "cluster_id": 6, + "emotion_label": "calm down", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000787.png", + "image_path": "./data/lapwing\\images\\000787.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000788.png", + "image_path": "./data/lapwing\\images\\000788.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000789.png", + "image_path": "./data/lapwing\\images\\000789.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000790.png", + "image_path": "./data/lapwing\\images\\000790.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000791.png", + "image_path": "./data/lapwing\\images\\000791.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000792.png", + "image_path": "./data/lapwing\\images\\000792.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000793.png", + "image_path": "./data/lapwing\\images\\000793.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000794.png", + "image_path": "./data/lapwing\\images\\000794.png", + "cluster_id": 3, + "emotion_label": "anger", + "initial_kmeans_cluster_id": 3, + "initial_kmeans_emotion_label": "anger", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000795.png", + "image_path": "./data/lapwing\\images\\000795.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000796.png", + "image_path": "./data/lapwing\\images\\000796.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000797.png", + "image_path": "./data/lapwing\\images\\000797.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000798.png", + "image_path": "./data/lapwing\\images\\000798.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000799.png", + "image_path": "./data/lapwing\\images\\000799.png", + "cluster_id": 3, + "emotion_label": "anger", + "initial_kmeans_cluster_id": 3, + "initial_kmeans_emotion_label": "anger", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000800.png", + "image_path": "./data/lapwing\\images\\000800.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000801.png", + "image_path": "./data/lapwing\\images\\000801.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000802.png", + "image_path": "./data/lapwing\\images\\000802.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000803.png", + "image_path": "./data/lapwing\\images\\000803.png", + "cluster_id": 10, + "emotion_label": "annoyed", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": true, + "boundary_sample": true + }, + { + "image_file": "000804.png", + "image_path": "./data/lapwing\\images\\000804.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000805.png", + "image_path": "./data/lapwing\\images\\000805.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000806.png", + "image_path": "./data/lapwing\\images\\000806.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000807.png", + "image_path": "./data/lapwing\\images\\000807.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000808.png", + "image_path": "./data/lapwing\\images\\000808.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000809.png", + "image_path": "./data/lapwing\\images\\000809.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000810.png", + "image_path": "./data/lapwing\\images\\000810.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000811.png", + "image_path": "./data/lapwing\\images\\000811.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000812.png", + "image_path": "./data/lapwing\\images\\000812.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000813.png", + "image_path": "./data/lapwing\\images\\000813.png", + "cluster_id": 6, + "emotion_label": "calm down", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": true, + "boundary_sample": true + }, + { + "image_file": "000814.png", + "image_path": "./data/lapwing\\images\\000814.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000815.png", + "image_path": "./data/lapwing\\images\\000815.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000816.png", + "image_path": "./data/lapwing\\images\\000816.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000817.png", + "image_path": "./data/lapwing\\images\\000817.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000818.png", + "image_path": "./data/lapwing\\images\\000818.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000819.png", + "image_path": "./data/lapwing\\images\\000819.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000820.png", + "image_path": "./data/lapwing\\images\\000820.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000821.png", + "image_path": "./data/lapwing\\images\\000821.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": true + }, + { + "image_file": "000822.png", + "image_path": "./data/lapwing\\images\\000822.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000823.png", + "image_path": "./data/lapwing\\images\\000823.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000824.png", + "image_path": "./data/lapwing\\images\\000824.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000825.png", + "image_path": "./data/lapwing\\images\\000825.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000826.png", + "image_path": "./data/lapwing\\images\\000826.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000827.png", + "image_path": "./data/lapwing\\images\\000827.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000828.png", + "image_path": "./data/lapwing\\images\\000828.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000829.png", + "image_path": "./data/lapwing\\images\\000829.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000830.png", + "image_path": "./data/lapwing\\images\\000830.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000831.png", + "image_path": "./data/lapwing\\images\\000831.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000832.png", + "image_path": "./data/lapwing\\images\\000832.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000833.png", + "image_path": "./data/lapwing\\images\\000833.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000834.png", + "image_path": "./data/lapwing\\images\\000834.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000835.png", + "image_path": "./data/lapwing\\images\\000835.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000836.png", + "image_path": "./data/lapwing\\images\\000836.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000837.png", + "image_path": "./data/lapwing\\images\\000837.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000838.png", + "image_path": "./data/lapwing\\images\\000838.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000839.png", + "image_path": "./data/lapwing\\images\\000839.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000840.png", + "image_path": "./data/lapwing\\images\\000840.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000841.png", + "image_path": "./data/lapwing\\images\\000841.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000842.png", + "image_path": "./data/lapwing\\images\\000842.png", + "cluster_id": 10, + "emotion_label": "annoyed", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": true, + "boundary_sample": false + }, + { + "image_file": "000843.png", + "image_path": "./data/lapwing\\images\\000843.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000844.png", + "image_path": "./data/lapwing\\images\\000844.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000845.png", + "image_path": "./data/lapwing\\images\\000845.png", + "cluster_id": 6, + "emotion_label": "calm down", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000846.png", + "image_path": "./data/lapwing\\images\\000846.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000847.png", + "image_path": "./data/lapwing\\images\\000847.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000848.png", + "image_path": "./data/lapwing\\images\\000848.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000849.png", + "image_path": "./data/lapwing\\images\\000849.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000850.png", + "image_path": "./data/lapwing\\images\\000850.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000851.png", + "image_path": "./data/lapwing\\images\\000851.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000852.png", + "image_path": "./data/lapwing\\images\\000852.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000853.png", + "image_path": "./data/lapwing\\images\\000853.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000854.png", + "image_path": "./data/lapwing\\images\\000854.png", + "cluster_id": 3, + "emotion_label": "anger", + "initial_kmeans_cluster_id": 3, + "initial_kmeans_emotion_label": "anger", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000855.png", + "image_path": "./data/lapwing\\images\\000855.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000856.png", + "image_path": "./data/lapwing\\images\\000856.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000857.png", + "image_path": "./data/lapwing\\images\\000857.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000858.png", + "image_path": "./data/lapwing\\images\\000858.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000859.png", + "image_path": "./data/lapwing\\images\\000859.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000860.png", + "image_path": "./data/lapwing\\images\\000860.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000861.png", + "image_path": "./data/lapwing\\images\\000861.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000862.png", + "image_path": "./data/lapwing\\images\\000862.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000863.png", + "image_path": "./data/lapwing\\images\\000863.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000864.png", + "image_path": "./data/lapwing\\images\\000864.png", + "cluster_id": 10, + "emotion_label": "annoyed", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000865.png", + "image_path": "./data/lapwing\\images\\000865.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000866.png", + "image_path": "./data/lapwing\\images\\000866.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000867.png", + "image_path": "./data/lapwing\\images\\000867.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000868.png", + "image_path": "./data/lapwing\\images\\000868.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000869.png", + "image_path": "./data/lapwing\\images\\000869.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000870.png", + "image_path": "./data/lapwing\\images\\000870.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000871.png", + "image_path": "./data/lapwing\\images\\000871.png", + "cluster_id": 6, + "emotion_label": "calm down", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000872.png", + "image_path": "./data/lapwing\\images\\000872.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000873.png", + "image_path": "./data/lapwing\\images\\000873.png", + "cluster_id": 10, + "emotion_label": "annoyed", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000874.png", + "image_path": "./data/lapwing\\images\\000874.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000875.png", + "image_path": "./data/lapwing\\images\\000875.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000876.png", + "image_path": "./data/lapwing\\images\\000876.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000877.png", + "image_path": "./data/lapwing\\images\\000877.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000878.png", + "image_path": "./data/lapwing\\images\\000878.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000879.png", + "image_path": "./data/lapwing\\images\\000879.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000880.png", + "image_path": "./data/lapwing\\images\\000880.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000881.png", + "image_path": "./data/lapwing\\images\\000881.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000882.png", + "image_path": "./data/lapwing\\images\\000882.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000883.png", + "image_path": "./data/lapwing\\images\\000883.png", + "cluster_id": 3, + "emotion_label": "anger", + "initial_kmeans_cluster_id": 3, + "initial_kmeans_emotion_label": "anger", + "manually_labeled": true, + "boundary_sample": false + }, + { + "image_file": "000884.png", + "image_path": "./data/lapwing\\images\\000884.png", + "cluster_id": 3, + "emotion_label": "anger", + "initial_kmeans_cluster_id": 3, + "initial_kmeans_emotion_label": "anger", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000885.png", + "image_path": "./data/lapwing\\images\\000885.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000886.png", + "image_path": "./data/lapwing\\images\\000886.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000887.png", + "image_path": "./data/lapwing\\images\\000887.png", + "cluster_id": 3, + "emotion_label": "anger", + "initial_kmeans_cluster_id": 3, + "initial_kmeans_emotion_label": "anger", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000888.png", + "image_path": "./data/lapwing\\images\\000888.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000889.png", + "image_path": "./data/lapwing\\images\\000889.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000890.png", + "image_path": "./data/lapwing\\images\\000890.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000891.png", + "image_path": "./data/lapwing\\images\\000891.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000892.png", + "image_path": "./data/lapwing\\images\\000892.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000893.png", + "image_path": "./data/lapwing\\images\\000893.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000894.png", + "image_path": "./data/lapwing\\images\\000894.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000895.png", + "image_path": "./data/lapwing\\images\\000895.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000896.png", + "image_path": "./data/lapwing\\images\\000896.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000897.png", + "image_path": "./data/lapwing\\images\\000897.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000898.png", + "image_path": "./data/lapwing\\images\\000898.png", + "cluster_id": 10, + "emotion_label": "annoyed", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000899.png", + "image_path": "./data/lapwing\\images\\000899.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000900.png", + "image_path": "./data/lapwing\\images\\000900.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": true, + "boundary_sample": false + }, + { + "image_file": "000901.png", + "image_path": "./data/lapwing\\images\\000901.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000902.png", + "image_path": "./data/lapwing\\images\\000902.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000903.png", + "image_path": "./data/lapwing\\images\\000903.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000904.png", + "image_path": "./data/lapwing\\images\\000904.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000905.png", + "image_path": "./data/lapwing\\images\\000905.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000906.png", + "image_path": "./data/lapwing\\images\\000906.png", + "cluster_id": 6, + "emotion_label": "calm down", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000907.png", + "image_path": "./data/lapwing\\images\\000907.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000908.png", + "image_path": "./data/lapwing\\images\\000908.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000909.png", + "image_path": "./data/lapwing\\images\\000909.png", + "cluster_id": 8, + "emotion_label": "very rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": true, + "boundary_sample": false + }, + { + "image_file": "000910.png", + "image_path": "./data/lapwing\\images\\000910.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000911.png", + "image_path": "./data/lapwing\\images\\000911.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000912.png", + "image_path": "./data/lapwing\\images\\000912.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000913.png", + "image_path": "./data/lapwing\\images\\000913.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000914.png", + "image_path": "./data/lapwing\\images\\000914.png", + "cluster_id": 9, + "emotion_label": "forgiving", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": true, + "boundary_sample": false + }, + { + "image_file": "000915.png", + "image_path": "./data/lapwing\\images\\000915.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000916.png", + "image_path": "./data/lapwing\\images\\000916.png", + "cluster_id": 3, + "emotion_label": "anger", + "initial_kmeans_cluster_id": 3, + "initial_kmeans_emotion_label": "anger", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000917.png", + "image_path": "./data/lapwing\\images\\000917.png", + "cluster_id": 3, + "emotion_label": "anger", + "initial_kmeans_cluster_id": 3, + "initial_kmeans_emotion_label": "anger", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000918.png", + "image_path": "./data/lapwing\\images\\000918.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000919.png", + "image_path": "./data/lapwing\\images\\000919.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000920.png", + "image_path": "./data/lapwing\\images\\000920.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000921.png", + "image_path": "./data/lapwing\\images\\000921.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000922.png", + "image_path": "./data/lapwing\\images\\000922.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000923.png", + "image_path": "./data/lapwing\\images\\000923.png", + "cluster_id": 6, + "emotion_label": "calm down", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000924.png", + "image_path": "./data/lapwing\\images\\000924.png", + "cluster_id": 10, + "emotion_label": "annoyed", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": true, + "boundary_sample": false + }, + { + "image_file": "000925.png", + "image_path": "./data/lapwing\\images\\000925.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000926.png", + "image_path": "./data/lapwing\\images\\000926.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000927.png", + "image_path": "./data/lapwing\\images\\000927.png", + "cluster_id": 3, + "emotion_label": "anger", + "initial_kmeans_cluster_id": 3, + "initial_kmeans_emotion_label": "anger", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000928.png", + "image_path": "./data/lapwing\\images\\000928.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000929.png", + "image_path": "./data/lapwing\\images\\000929.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000930.png", + "image_path": "./data/lapwing\\images\\000930.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000931.png", + "image_path": "./data/lapwing\\images\\000931.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000932.png", + "image_path": "./data/lapwing\\images\\000932.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000933.png", + "image_path": "./data/lapwing\\images\\000933.png", + "cluster_id": 3, + "emotion_label": "anger", + "initial_kmeans_cluster_id": 3, + "initial_kmeans_emotion_label": "anger", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000934.png", + "image_path": "./data/lapwing\\images\\000934.png", + "cluster_id": 10, + "emotion_label": "annoyed", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000935.png", + "image_path": "./data/lapwing\\images\\000935.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000936.png", + "image_path": "./data/lapwing\\images\\000936.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000937.png", + "image_path": "./data/lapwing\\images\\000937.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000938.png", + "image_path": "./data/lapwing\\images\\000938.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000939.png", + "image_path": "./data/lapwing\\images\\000939.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000940.png", + "image_path": "./data/lapwing\\images\\000940.png", + "cluster_id": 6, + "emotion_label": "calm down", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000941.png", + "image_path": "./data/lapwing\\images\\000941.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000942.png", + "image_path": "./data/lapwing\\images\\000942.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": true, + "boundary_sample": false + }, + { + "image_file": "000943.png", + "image_path": "./data/lapwing\\images\\000943.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000944.png", + "image_path": "./data/lapwing\\images\\000944.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000945.png", + "image_path": "./data/lapwing\\images\\000945.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000946.png", + "image_path": "./data/lapwing\\images\\000946.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000947.png", + "image_path": "./data/lapwing\\images\\000947.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000948.png", + "image_path": "./data/lapwing\\images\\000948.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000949.png", + "image_path": "./data/lapwing\\images\\000949.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000950.png", + "image_path": "./data/lapwing\\images\\000950.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000951.png", + "image_path": "./data/lapwing\\images\\000951.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000952.png", + "image_path": "./data/lapwing\\images\\000952.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000953.png", + "image_path": "./data/lapwing\\images\\000953.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000954.png", + "image_path": "./data/lapwing\\images\\000954.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000955.png", + "image_path": "./data/lapwing\\images\\000955.png", + "cluster_id": 6, + "emotion_label": "calm down", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000956.png", + "image_path": "./data/lapwing\\images\\000956.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000957.png", + "image_path": "./data/lapwing\\images\\000957.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000958.png", + "image_path": "./data/lapwing\\images\\000958.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000959.png", + "image_path": "./data/lapwing\\images\\000959.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000960.png", + "image_path": "./data/lapwing\\images\\000960.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000961.png", + "image_path": "./data/lapwing\\images\\000961.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000962.png", + "image_path": "./data/lapwing\\images\\000962.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000963.png", + "image_path": "./data/lapwing\\images\\000963.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000964.png", + "image_path": "./data/lapwing\\images\\000964.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": true + }, + { + "image_file": "000965.png", + "image_path": "./data/lapwing\\images\\000965.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000966.png", + "image_path": "./data/lapwing\\images\\000966.png", + "cluster_id": 10, + "emotion_label": "annoyed", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": true, + "boundary_sample": false + }, + { + "image_file": "000967.png", + "image_path": "./data/lapwing\\images\\000967.png", + "cluster_id": 3, + "emotion_label": "anger", + "initial_kmeans_cluster_id": 3, + "initial_kmeans_emotion_label": "anger", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000968.png", + "image_path": "./data/lapwing\\images\\000968.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000969.png", + "image_path": "./data/lapwing\\images\\000969.png", + "cluster_id": 9, + "emotion_label": "forgiving", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000970.png", + "image_path": "./data/lapwing\\images\\000970.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000971.png", + "image_path": "./data/lapwing\\images\\000971.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000972.png", + "image_path": "./data/lapwing\\images\\000972.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000973.png", + "image_path": "./data/lapwing\\images\\000973.png", + "cluster_id": 6, + "emotion_label": "calm down", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": true, + "boundary_sample": false + }, + { + "image_file": "000974.png", + "image_path": "./data/lapwing\\images\\000974.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000975.png", + "image_path": "./data/lapwing\\images\\000975.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000976.png", + "image_path": "./data/lapwing\\images\\000976.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000977.png", + "image_path": "./data/lapwing\\images\\000977.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000978.png", + "image_path": "./data/lapwing\\images\\000978.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000979.png", + "image_path": "./data/lapwing\\images\\000979.png", + "cluster_id": 9, + "emotion_label": "forgiving", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": true, + "boundary_sample": false + }, + { + "image_file": "000980.png", + "image_path": "./data/lapwing\\images\\000980.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000981.png", + "image_path": "./data/lapwing\\images\\000981.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000982.png", + "image_path": "./data/lapwing\\images\\000982.png", + "cluster_id": 11, + "emotion_label": "fun", + "initial_kmeans_cluster_id": 6, + "initial_kmeans_emotion_label": "calm down", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000983.png", + "image_path": "./data/lapwing\\images\\000983.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000984.png", + "image_path": "./data/lapwing\\images\\000984.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000985.png", + "image_path": "./data/lapwing\\images\\000985.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000986.png", + "image_path": "./data/lapwing\\images\\000986.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000987.png", + "image_path": "./data/lapwing\\images\\000987.png", + "cluster_id": 4, + "emotion_label": "rage", + "initial_kmeans_cluster_id": 4, + "initial_kmeans_emotion_label": "rage", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000988.png", + "image_path": "./data/lapwing\\images\\000988.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000989.png", + "image_path": "./data/lapwing\\images\\000989.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000990.png", + "image_path": "./data/lapwing\\images\\000990.png", + "cluster_id": 6, + "emotion_label": "calm down", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000991.png", + "image_path": "./data/lapwing\\images\\000991.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000992.png", + "image_path": "./data/lapwing\\images\\000992.png", + "cluster_id": 7, + "emotion_label": "fear", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000993.png", + "image_path": "./data/lapwing\\images\\000993.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000994.png", + "image_path": "./data/lapwing\\images\\000994.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000995.png", + "image_path": "./data/lapwing\\images\\000995.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000996.png", + "image_path": "./data/lapwing\\images\\000996.png", + "cluster_id": 2, + "emotion_label": "neutral", + "initial_kmeans_cluster_id": 2, + "initial_kmeans_emotion_label": "neutral", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000997.png", + "image_path": "./data/lapwing\\images\\000997.png", + "cluster_id": 1, + "emotion_label": "irritated", + "initial_kmeans_cluster_id": 1, + "initial_kmeans_emotion_label": "irritated", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000998.png", + "image_path": "./data/lapwing\\images\\000998.png", + "cluster_id": 5, + "emotion_label": "surprised", + "initial_kmeans_cluster_id": 5, + "initial_kmeans_emotion_label": "surprised", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "000999.png", + "image_path": "./data/lapwing\\images\\000999.png", + "cluster_id": 12, + "emotion_label": "suspecious", + "initial_kmeans_cluster_id": 7, + "initial_kmeans_emotion_label": "fear", + "manually_labeled": false, + "boundary_sample": false + }, + { + "image_file": "001000.png", + "image_path": "./data/lapwing\\images\\001000.png", + "cluster_id": 0, + "emotion_label": "envy", + "initial_kmeans_cluster_id": 0, + "initial_kmeans_emotion_label": "envy", + "manually_labeled": false, + "boundary_sample": false + } + ] +} \ No newline at end of file diff --git a/results/P99/LLM-based/P99_LLM-based_all_predictions.jsonl b/results/P99/LLM-based/P99_LLM-based_all_predictions.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..8e93d134a014229cf2c1d6e0610d4dba2c54c5fe --- /dev/null +++ b/results/P99/LLM-based/P99_LLM-based_all_predictions.jsonl @@ -0,0 +1,2 @@ +{"participant_id": "P99", "condition": "LLM-based", "text_prompt": "happy", "prompt_category": "basic_emotion", "prediction": {"blendshape_names": {"Eyes": "笑い", "Eye Brow": "にこり"}, "blendshape_index": {"0": 1, "1": 3}, "blendshape_confidence": {"0": 1.0, "1": 1.0}}} +{"participant_id": "P99", "condition": "LLM-based", "text_prompt": "sad", "prompt_category": "basic_emotion", "prediction": {"blendshape_names": {"Eyes": "じと目", "Eye Brow": "困る"}, "blendshape_index": {"0": 4, "1": 1}, "blendshape_confidence": {"0": 1.0, "1": 1.0}}} diff --git a/results/P99/Ours/P99_Ours_all_predictions.jsonl b/results/P99/Ours/P99_Ours_all_predictions.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..313e842d6e2c224df6ed2840b5632285328e75dc --- /dev/null +++ b/results/P99/Ours/P99_Ours_all_predictions.jsonl @@ -0,0 +1,2 @@ +{"participant_id": "P99", "condition": "Ours", "text_prompt": "happy", "prompt_category": "basic_emotion", "prediction": {"blendshape_names": {"Eyes": "笑い", "Eye Brow": "none"}, "blendshape_index": {"0": 1, "1": -1}, "blendshape_confidence": {"0": 0.8829594850540161, "1": 0.918801486492157}}} +{"participant_id": "P99", "condition": "Ours", "text_prompt": "sad", "prompt_category": "basic_emotion", "prediction": {"blendshape_names": {"Eyes": "笑い", "Eye Brow": "browArcDown"}, "blendshape_index": {"0": 1, "1": 6}, "blendshape_confidence": {"0": 0.9188652038574219, "1": 0.9860095977783203}}} diff --git a/results/P99/evaluation_results_P99_20250723_173117.json b/results/P99/evaluation_results_P99_20250723_173117.json new file mode 100644 index 0000000000000000000000000000000000000000..4332b9434f28a463bf8dab9b4b64a7e8d5baa8b6 --- /dev/null +++ b/results/P99/evaluation_results_P99_20250723_173117.json @@ -0,0 +1,110 @@ +{ + "metadata": { + "participant_id": "P99", + "export_timestamp": "2025-07-23T17:31:17.826275", + "total_prompts_evaluated": 2, + "evaluation_duration_seconds": 73.845999, + "reasoning": { + "alignment": "あああ", + "naturalness": "えええ", + "attractiveness": "っっd" + }, + "optional_comment": "っっd" + }, + "results": [ + { + "prompt": "happy", + "prompt_category": "basic_emotion", + "image_order_alignment": [ + "w_o_HitL", + "LLM-based", + "w_o_Proto_Loss", + "Ours", + "w_o_Tuning" + ], + "image_order_naturalness": [ + "w_o_HitL", + "Ours", + "w_o_Tuning", + "LLM-based", + "w_o_Proto_Loss" + ], + "image_order_attractiveness": [ + "LLM-based", + "Ours", + "w_o_HitL", + "w_o_Tuning", + "w_o_Proto_Loss" + ], + "alignment_rank_by_condition": [ + "w_o_HitL", + "LLM-based", + "w_o_Proto_Loss", + "w_o_Tuning", + "Ours" + ], + "naturalness_rank_by_condition": [ + "w_o_Proto_Loss", + "w_o_Tuning", + "LLM-based", + "w_o_HitL", + "Ours" + ], + "attractiveness_rank_by_condition": [ + "w_o_Tuning", + "w_o_Proto_Loss", + "w_o_HitL", + "Ours", + "LLM-based" + ], + "alignment_absolute_score": 7 + }, + { + "prompt": "sad", + "prompt_category": "basic_emotion", + "image_order_alignment": [ + "Ours", + "w_o_Proto_Loss", + "w_o_HitL", + "w_o_Tuning", + "LLM-based" + ], + "image_order_naturalness": [ + "w_o_Tuning", + "w_o_HitL", + "LLM-based", + "Ours", + "w_o_Proto_Loss" + ], + "image_order_attractiveness": [ + "LLM-based", + "w_o_Proto_Loss", + "w_o_HitL", + "Ours", + "w_o_Tuning" + ], + "alignment_rank_by_condition": [ + "w_o_Proto_Loss", + "w_o_HitL", + "w_o_Tuning", + "Ours", + "LLM-based" + ], + "naturalness_rank_by_condition": [ + "w_o_Proto_Loss", + "w_o_HitL", + "LLM-based", + "w_o_Tuning", + "Ours" + ], + "attractiveness_rank_by_condition": [ + "w_o_Proto_Loss", + "LLM-based", + "w_o_HitL", + "w_o_Tuning", + "Ours" + ], + "alignment_absolute_score": 7 + } + ] +} \ No newline at end of file diff --git a/results/P99/evaluation_results_P99_20250723_180011.json b/results/P99/evaluation_results_P99_20250723_180011.json new file mode 100644 index 0000000000000000000000000000000000000000..336d10b272229f564c00b4af15c25d09131b767c --- /dev/null +++ b/results/P99/evaluation_results_P99_20250723_180011.json @@ -0,0 +1,112 @@ +{ + "metadata": { + "participant_id": "P99", + "export_timestamp": "2025-07-23T18:00:11.105238", + "total_prompts_evaluated": 2, + "evaluation_duration_seconds": 117.319474, + "reasoning": { + "alignment": "あああ", + "naturalness": "あああ", + "attractiveness": "あああ" + }, + "optional_comment": "ええええ" + }, + "results": [ + { + "prompt": "happy", + "prompt_category": "basic_emotion", + "image_order_alignment": [ + "Ours", + "w_o_Proto_Loss", + "LLM-based", + "w_o_Tuning", + "w_o_HitL" + ], + "image_order_naturalness": [ + "w_o_Tuning", + "Ours", + "w_o_Proto_Loss", + "LLM-based", + "w_o_HitL" + ], + "image_order_attractiveness": [ + "w_o_Tuning", + "w_o_Proto_Loss", + "w_o_HitL", + "Ours", + "LLM-based" + ], + "alignment_ranks": { + "Ours": 1, + "w_o_Proto_Loss": 1, + "LLM-based": 1, + "w_o_Tuning": 4, + "w_o_HitL": 5 + }, + "naturalness_ranks": { + "w_o_Tuning": 5, + "Ours": 1, + "w_o_Proto_Loss": 1, + "LLM-based": 1, + "w_o_HitL": 4 + }, + "attractiveness_ranks": { + "w_o_Tuning": 5, + "w_o_Proto_Loss": 1, + "w_o_HitL": 4, + "Ours": 1, + "LLM-based": 1 + }, + "alignment_absolute_score": 5, + "alignment_absolute_score_worst": 1 + }, + { + "prompt": "sad", + "prompt_category": "basic_emotion", + "image_order_alignment": [ + "Ours", + "w_o_HitL", + "w_o_Proto_Loss", + "w_o_Tuning", + "LLM-based" + ], + "image_order_naturalness": [ + "LLM-based", + "w_o_HitL", + "w_o_Tuning", + "w_o_Proto_Loss", + "Ours" + ], + "image_order_attractiveness": [ + "w_o_HitL", + "Ours", + "LLM-based", + "w_o_Tuning", + "w_o_Proto_Loss" + ], + "alignment_ranks": { + "Ours": 2, + "w_o_HitL": 4, + "w_o_Proto_Loss": 2, + "w_o_Tuning": 1, + "LLM-based": 5 + }, + "naturalness_ranks": { + "LLM-based": 5, + "w_o_HitL": 4, + "w_o_Tuning": 1, + "w_o_Proto_Loss": 2, + "Ours": 2 + }, + "attractiveness_ranks": { + "w_o_HitL": 5, + "Ours": 2, + "LLM-based": 4, + "w_o_Tuning": 1, + "w_o_Proto_Loss": 2 + }, + "alignment_absolute_score": 6, + "alignment_absolute_score_worst": 1 + } + ] +} \ No newline at end of file diff --git a/results/P99/w_o_HitL/P99_w_o_HitL_all_predictions.jsonl b/results/P99/w_o_HitL/P99_w_o_HitL_all_predictions.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..152f45fac7bfd4d8e3889451bdb77115a824128e --- /dev/null +++ b/results/P99/w_o_HitL/P99_w_o_HitL_all_predictions.jsonl @@ -0,0 +1,2 @@ +{"participant_id": "P99", "condition": "w_o_HitL", "text_prompt": "happy", "prompt_category": "basic_emotion", "prediction": {"blendshape_names": {"Eyes": "びっくり", "Eye Brow": "none"}, "blendshape_index": {"0": 3, "1": -1}, "blendshape_confidence": {"0": 0.9955354928970337, "1": 0.48252469301223755}}} +{"participant_id": "P99", "condition": "w_o_HitL", "text_prompt": "sad", "prompt_category": "basic_emotion", "prediction": {"blendshape_names": {"Eyes": "まばたき", "Eye Brow": "真面目"}, "blendshape_index": {"0": 0, "1": 0}, "blendshape_confidence": {"0": 0.9925839900970459, "1": 0.9879806637763977}}} diff --git a/results/P99/w_o_Proto_Loss/P99_w_o_Proto_Loss_all_predictions.jsonl b/results/P99/w_o_Proto_Loss/P99_w_o_Proto_Loss_all_predictions.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..9da4b222f616620db211771c1a3f8b56e2396596 --- /dev/null +++ b/results/P99/w_o_Proto_Loss/P99_w_o_Proto_Loss_all_predictions.jsonl @@ -0,0 +1,2 @@ +{"participant_id": "P99", "condition": "w_o_Proto_Loss", "text_prompt": "happy", "prompt_category": "basic_emotion", "prediction": {"blendshape_names": {"Eyes": "笑い", "Eye Brow": "none"}, "blendshape_index": {"0": 1, "1": -1}, "blendshape_confidence": {"0": 0.857072114944458, "1": 0.9783397912979126}}} +{"participant_id": "P99", "condition": "w_o_Proto_Loss", "text_prompt": "sad", "prompt_category": "basic_emotion", "prediction": {"blendshape_names": {"Eyes": "笑い", "Eye Brow": "browArcDown"}, "blendshape_index": {"0": 1, "1": 6}, "blendshape_confidence": {"0": 0.9462782144546509, "1": 0.9948987364768982}}} diff --git a/results/P99/w_o_Tuning/P99_w_o_Tuning_all_predictions.jsonl b/results/P99/w_o_Tuning/P99_w_o_Tuning_all_predictions.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..4de891e9afe68c6b2fcc3f887d909f26241e7297 --- /dev/null +++ b/results/P99/w_o_Tuning/P99_w_o_Tuning_all_predictions.jsonl @@ -0,0 +1,2 @@ +{"participant_id": "P99", "condition": "w_o_Tuning", "text_prompt": "happy", "prompt_category": "basic_emotion", "prediction": {"blendshape_names": {"Eyes": "irisSwap", "Eye Brow": "browArcDown"}, "blendshape_index": {"0": 5, "1": 6}, "blendshape_confidence": {"0": 0.5656874179840088, "1": 0.587822437286377}}} +{"participant_id": "P99", "condition": "w_o_Tuning", "text_prompt": "sad", "prompt_category": "basic_emotion", "prediction": {"blendshape_names": {"Eyes": "まばたき", "Eye Brow": "browArcDown"}, "blendshape_index": {"0": 0, "1": 6}, "blendshape_confidence": {"0": 0.49758368730545044, "1": 0.881377637386322}}}