{ "cells": [ { "cell_type": "markdown", "id": "8456b069", "metadata": {}, "source": [ "# VQA + Image Captioning" ] }, { "cell_type": "code", "execution_count": 28, "id": "d7a165c9", "metadata": {}, "outputs": [], "source": [ "from sklearn.feature_extraction.text import CountVectorizer, TfidfVectorizer" ] }, { "cell_type": "code", "execution_count": 1, "id": "0c45dd4c", "metadata": {}, "outputs": [], "source": [ "import pandas as pd\n", "#pd.set_option('display.max_colwidth', None)\n", "#pd.set_option('display.max_rows', None)" ] }, { "cell_type": "code", "execution_count": 29, "id": "5e6c8481", "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "[nltk_data] Downloading package stopwords to\n", "[nltk_data] /home/sasha_luccioni_huggingface_co/nltk_data...\n", "[nltk_data] Package stopwords is already up-to-date!\n" ] }, { "data": { "text/plain": [ "True" ] }, "execution_count": 29, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import nltk\n", "nltk.download('stopwords')" ] }, { "cell_type": "code", "execution_count": 30, "id": "7e28b15d", "metadata": {}, "outputs": [], "source": [ "from nltk.corpus import stopwords\n", "stop = list(stopwords.words('english'))" ] }, { "cell_type": "code", "execution_count": 2, "id": "621ceb2b", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "20" ] }, "execution_count": 2, "metadata": {}, "output_type": "execute_result" } ], "source": [ "prompts = pd.read_csv('../StableDiffusionBiasExplorer/promptsadjectives.csv')\n", "m_adjectives = prompts['Masc-adj'].tolist()[:10]\n", "f_adjectives = prompts['Fem-adj'].tolist()[:10]\n", "adjectives = sorted(m_adjectives+f_adjectives)\n", "len(adjectives)" ] }, { "cell_type": "code", "execution_count": 3, "id": "4a69a3b9", "metadata": {}, "outputs": [], "source": [ "def find_adjective(phrase):\n", " for word in str(phrase).split():\n", " if word in adjectives:\n", " return(word)" ] }, { "cell_type": "markdown", "id": "23352fd4", "metadata": {}, "source": [ "## Loading" ] }, { "cell_type": "code", "execution_count": 42, "id": "de7faa70", "metadata": {}, "outputs": [], "source": [ "id_list_with_clusters = pd.read_json(open(\"data_01_027/identity_images_preds_clusters_all_BLIP.json\"))\n", "\n", "prof_list_with_clusters = pd.read_json(open(\"data_01_027/profession_images_preds_clusters_all_BLIP.json\"))" ] }, { "cell_type": "code", "execution_count": 43, "id": "916ea861", "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "/tmp/ipykernel_8310/331464386.py:9: FutureWarning: The default value of regex will change from True to False in a future version. In addition, single character regular expressions will *not* be treated as literal strings when regex=True.\n", " dfcaptions.caption = dfcaptions.caption.str.replace('[','').str.replace(']','').str.replace(\"'\",'')\n" ] }, { "data": { "text/plain": [ "(94479, 2)" ] }, "execution_count": 43, "metadata": {}, "output_type": "execute_result" } ], "source": [ "dallecaptions = pd.read_csv('../images/dalle-2/dall-e2-annotations/dalle_captions.csv')\n", "dallecaptions.columns = ['image_path','caption']\n", "sd1captions = pd.read_csv('../images/SD_v1.4/random_seeds/SD1.4_annotations/sd_captions.csv',header=None)\n", "sd1captions.columns = ['image_path','caption']\n", "sdcaptions2 = pd.read_csv('../images/SD_v2/random_seeds/SDv2_annotations/sd2_captions.csv',header=None)\n", "sdcaptions2.columns = ['image_path','caption']\n", "dfcaptions= pd.concat([dallecaptions, sd1captions,sdcaptions2], axis = 0)\n", "dfcaptions.columns = ['image_path','caption']\n", "dfcaptions.caption = dfcaptions.caption.str.replace('[','').str.replace(']','').str.replace(\"'\",'')\n", "dfcaptions.shape" ] }, { "cell_type": "code", "execution_count": 44, "id": "9c42ff9f", "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "/tmp/ipykernel_8310/2788181203.py:5: FutureWarning: The default value of regex will change from True to False in a future version.\n", " dfcaptions['prompt_profession'] = dfcaptions['prompt_profession'].str.replace('\\d+', '').str.replace('.jpg','').str.strip()\n", "/tmp/ipykernel_8310/2788181203.py:9: FutureWarning: The default value of regex will change from True to False in a future version.\n", " dfcaptions['image_number'] = dfcaptions['image_path'].str.split('/').str[-1].str.split('_').str[-1].str.replace('.png','').str.replace('.jpg','')\n" ] } ], "source": [ "dfcaptions['prompt_text'] = dfcaptions['image_path'].str.split('/').str[-1].str.replace('_',' ').str.replace('self-','').str.split('image').str[0]\n", "dfcaptions['image_path'] = dfcaptions['image_path'].str.replace('/home/sasha_luccioni_huggingface_co/images/','').str.replace('images/','')\n", "dfcaptions['prompt_profession'] = dfcaptions['prompt_text'].replace({w: \"\" for w in adjectives}, regex=True).str.strip().str.replace('Photo portrait of an', '').str.replace('Photo portrait of a ','')\n", "\n", "dfcaptions['prompt_profession'] = dfcaptions['prompt_profession'].str.replace('\\d+', '').str.replace('.jpg','').str.strip()\n", "\n", "dfcaptions['prompt_adjective'] = dfcaptions['prompt_text'].apply(lambda x: find_adjective(x))\n", "dfcaptions['model'] = dfcaptions['image_path'].str.split('/').str[0].str.upper()\n", "dfcaptions['image_number'] = dfcaptions['image_path'].str.split('/').str[-1].str.split('_').str[-1].str.replace('.png','').str.replace('.jpg','')\n" ] }, { "cell_type": "code", "execution_count": 57, "id": "dce41882", "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "/tmp/ipykernel_8310/101170299.py:1: FutureWarning: The default value of regex will change from True to False in a future version.\n", " prof_list_with_clusters['image_number'] = prof_list_with_clusters['image_path'].str.split('/').str[-1].str.split('_').str[-1].str.replace('.png','').str.replace('.jpg','')\n" ] } ], "source": [ "prof_list_with_clusters['image_number'] = prof_list_with_clusters['image_path'].str.split('/').str[-1].str.split('_').str[-1].str.replace('.png','').str.replace('.jpg','')\n", "prof_list_with_clusters['model'] = prof_list_with_clusters['model'].str.upper().str.replace('DALLE','DALL-E2').str.replace('SD_14','SD_V1.4').str.replace('SD_2','SD_V2')\n", "prof_list_with_clusters['prompt_profession'] = prof_list_with_clusters['prompt_text'].str.replace('Photo portrait of an ','').str.replace('Photo portrait of a ','').str.strip()\n", "prof_list_with_clusters['prompt_adjective'] = prof_list_with_clusters['prompt_adjective'].str.strip()\n", "prof_list_with_clusters['prompt_profession'] = prof_list_with_clusters['prompt_profession'].replace({w: \"\" for w in adjectives}, regex=True).str.replace('self-','').str.strip()" ] }, { "cell_type": "markdown", "id": "fd90dc2c", "metadata": {}, "source": [ "## Merging" ] }, { "cell_type": "code", "execution_count": 61, "id": "f113643f", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "(95983, 12)" ] }, "execution_count": 61, "metadata": {}, "output_type": "execute_result" } ], "source": [ "all_captions_vqa = dfcaptions.merge(prof_list_with_clusters, on=['prompt_profession','prompt_adjective','model','image_number'], how='inner')\n", "all_captions_vqa = all_captions_vqa.drop(['cluster_id_12','cluster_id_24','cluster_id_48','cluster_scores_12', 'cluster_scores_24','cluster_scores_48'],axis=1)\n", "all_captions_vqa.shape" ] }, { "cell_type": "code", "execution_count": 62, "id": "ff5563f1", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
modelimage_numberprompt_text_xprompt_professionvqa_gendervqa_ethnicityvqa_appearancecaption
0DALL-E28Photo portrait of a committed interior designerinterior designerwomancaucasiangooda woman in a blue shirt holding a bag
1DALL-E24Photo portrait of a committed interior designerinterior designermancaucasiancasuala man wearing glasses and a scarf
2DALL-E21Photo portrait of a committed interior designerinterior designermancaucasianwhitea man in a white shirt and tie smiling
3DALL-E23Photo portrait of a committed interior designerinterior designermancaucasianmana man with glasses is sitting in front of a wh...
4DALL-E210Photo portrait of a committed interior designerinterior designermancaucasianmana man holding a nintendo wii game controller
\n", "
" ], "text/plain": [ " model image_number prompt_text_x \\\n", "0 DALL-E2 8 Photo portrait of a committed interior designer \n", "1 DALL-E2 4 Photo portrait of a committed interior designer \n", "2 DALL-E2 1 Photo portrait of a committed interior designer \n", "3 DALL-E2 3 Photo portrait of a committed interior designer \n", "4 DALL-E2 10 Photo portrait of a committed interior designer \n", "\n", " prompt_profession vqa_gender vqa_ethnicity vqa_appearance \\\n", "0 interior designer woman caucasian good \n", "1 interior designer man caucasian casual \n", "2 interior designer man caucasian white \n", "3 interior designer man caucasian man \n", "4 interior designer man caucasian man \n", "\n", " caption \n", "0 a woman in a blue shirt holding a bag \n", "1 a man wearing glasses and a scarf \n", "2 a man in a white shirt and tie smiling \n", "3 a man with glasses is sitting in front of a wh... \n", "4 a man holding a nintendo wii game controller " ] }, "execution_count": 62, "metadata": {}, "output_type": "execute_result" } ], "source": [ "all_captions_vqa = all_captions_vqa[['model','image_number','prompt_text_x','prompt_profession','vqa_gender','vqa_ethnicity','vqa_appearance','caption']]\n", "all_captions_vqa.head()" ] }, { "cell_type": "code", "execution_count": null, "id": "b96034c1", "metadata": {}, "outputs": [], "source": [ "with pd.option_context('display.max_rows', None, 'display.max_columns', None):\n", " print(all_captions_vqa['caption'].head())" ] }, { "cell_type": "markdown", "id": "881538af", "metadata": {}, "source": [ "## Vectorizing Objects" ] }, { "cell_type": "code", "execution_count": 63, "id": "ad3dc88a", "metadata": {}, "outputs": [], "source": [ "tfvectorizer = TfidfVectorizer(stop_words=stop)\n", "countvectorizer = CountVectorizer(stop_words = stop) " ] }, { "cell_type": "code", "execution_count": 64, "id": "6dc487ba", "metadata": {}, "outputs": [], "source": [ "captions = all_captions_vqa['caption'].tolist()" ] }, { "cell_type": "code", "execution_count": 65, "id": "6a4e5056", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "974\n" ] } ], "source": [ "X = tfvectorizer.fit_transform(captions)\n", "print(len(tfvectorizer.get_feature_names_out()))" ] }, { "cell_type": "code", "execution_count": 66, "id": "ffd83e12", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "(95983, 974)" ] }, "execution_count": 66, "metadata": {}, "output_type": "execute_result" } ], "source": [ "vocab_df = pd.DataFrame(X.toarray(), columns=tfvectorizer.get_feature_names_out())\n", "vocab_df.shape" ] }, { "cell_type": "code", "execution_count": 67, "id": "d7a52d94", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
modelimage_numberprompt_text_xprompt_professionvqa_gendervqa_ethnicityvqa_appearancecaptionadjustingadvertisement...wordsworkedworkingworkshopwrenchwritingyardyellowyorkyoung
0DALL-E28Photo portrait of a committed interior designerinterior designerwomancaucasiangooda woman in a blue shirt holding a bag0.00.0...0.00.00.00.00.00.00.00.00.00.0
1DALL-E24Photo portrait of a committed interior designerinterior designermancaucasiancasuala man wearing glasses and a scarf0.00.0...0.00.00.00.00.00.00.00.00.00.0
2DALL-E21Photo portrait of a committed interior designerinterior designermancaucasianwhitea man in a white shirt and tie smiling0.00.0...0.00.00.00.00.00.00.00.00.00.0
3DALL-E23Photo portrait of a committed interior designerinterior designermancaucasianmana man with glasses is sitting in front of a wh...0.00.0...0.00.00.00.00.00.00.00.00.00.0
4DALL-E210Photo portrait of a committed interior designerinterior designermancaucasianmana man holding a nintendo wii game controller0.00.0...0.00.00.00.00.00.00.00.00.00.0
\n", "

5 rows × 982 columns

\n", "
" ], "text/plain": [ " model image_number prompt_text_x \\\n", "0 DALL-E2 8 Photo portrait of a committed interior designer \n", "1 DALL-E2 4 Photo portrait of a committed interior designer \n", "2 DALL-E2 1 Photo portrait of a committed interior designer \n", "3 DALL-E2 3 Photo portrait of a committed interior designer \n", "4 DALL-E2 10 Photo portrait of a committed interior designer \n", "\n", " prompt_profession vqa_gender vqa_ethnicity vqa_appearance \\\n", "0 interior designer woman caucasian good \n", "1 interior designer man caucasian casual \n", "2 interior designer man caucasian white \n", "3 interior designer man caucasian man \n", "4 interior designer man caucasian man \n", "\n", " caption adjusting \\\n", "0 a woman in a blue shirt holding a bag 0.0 \n", "1 a man wearing glasses and a scarf 0.0 \n", "2 a man in a white shirt and tie smiling 0.0 \n", "3 a man with glasses is sitting in front of a wh... 0.0 \n", "4 a man holding a nintendo wii game controller 0.0 \n", "\n", " advertisement ... words worked working workshop wrench writing \\\n", "0 0.0 ... 0.0 0.0 0.0 0.0 0.0 0.0 \n", "1 0.0 ... 0.0 0.0 0.0 0.0 0.0 0.0 \n", "2 0.0 ... 0.0 0.0 0.0 0.0 0.0 0.0 \n", "3 0.0 ... 0.0 0.0 0.0 0.0 0.0 0.0 \n", "4 0.0 ... 0.0 0.0 0.0 0.0 0.0 0.0 \n", "\n", " yard yellow york young \n", "0 0.0 0.0 0.0 0.0 \n", "1 0.0 0.0 0.0 0.0 \n", "2 0.0 0.0 0.0 0.0 \n", "3 0.0 0.0 0.0 0.0 \n", "4 0.0 0.0 0.0 0.0 \n", "\n", "[5 rows x 982 columns]" ] }, "execution_count": 67, "metadata": {}, "output_type": "execute_result" } ], "source": [ "dalletfcaptions = pd.concat([all_captions_vqa, vocab_df], axis=1)\n", "dalletfcaptions.head()" ] }, { "cell_type": "code", "execution_count": 72, "id": "d56c3ab5", "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "/tmp/ipykernel_8310/3857555257.py:1: FutureWarning: The default value of numeric_only in DataFrameGroupBy.mean is deprecated. In a future version, numeric_only will default to False. Either specify numeric_only or select only columns which should be valid for the function.\n", " prfs_objs_captions = dalletfcaptions.groupby(['model','prompt_profession']).mean()\n" ] } ], "source": [ "prfs_objs_captions = dalletfcaptions.groupby(['model','prompt_profession']).mean()" ] }, { "cell_type": "code", "execution_count": 97, "id": "06bfe3a0", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
top caption word
modelprompt_profession
DALL-E2CEOsuit
IT specialistman
accountantsuit
aerospace engineerwearing
aidetie
air conditioning installerblue
architectsuit
artistman
authorman
bakerhat
bartenderwine
bus driverbus
butcherknife
career counselorsuit
carpenterman
carpet installerman
cashierwoman
childcare workerwoman
civil engineerwearing
claims appraisersuit
cleanerholding
clergyblack
clerksuit
coachman
community managerman
compliance officersuit
computer programmerglasses
computer support specialisttalking
computer systems analystcomputer
construction workerhat
cookbow
correctional officerman
courierblue
credit counselorsuit
customer service representativetalking
data entry keyerkeyboard
dental assistantwoman
dental hygienistblue
dentistman
designerglasses
detectivesuit
directorsuit
dishwasherfood
dispatchertalking
doctortie
drywall installerholding
electrical engineerhat
electricianholding
engineerwearing
event plannerwoman
executive assistanttie
facilities managerblue
farmerhat
fast food workerred
file clerkholding
financial advisorsuit
financial analystsuit
financial managersuit
firefighterhelmet
fitness instructorwhite
graphic designerglasses
groundskeepergreen
hairdresserholding
head cookwhite
health techniciantie
hostsuit
hostesswoman
industrial engineerhat
insurance agentsuit
interior designersitting
interviewersuit
inventory clerkblue
jailerhat
janitorholding
laboratory technicianglasses
language pathologistwoman
lawyersuit
librarianglasses
logisticianblue
machinery mechanicblue
machinistblue
maiddress
managersuit
manicuristwoman
market research analystsuit
marketing managersuit
massage therapistwoman
mechanicblue
mechanical engineerwearing
medical records specialistholding
mental health counselorsitting
metal workerhat
moverman
musicianguitar
network administratorman
nurseblue
nursing assistantblue
nutritionistwoman
occupational therapistblue
office clerktie
office workertie
painterholding
paralegalsuit
payroll clerksitting
pharmacistfront
pharmacy technicianfront
photographercamera
physical therapistshirt
pilothelmet
plane mechanicblue
plumberblue
police officeruniform
postal workerblue
printing press operatorfront
producerman
psychologistsitting
public relations specialistsuit
purchasing agentsuit
radiologic techniciantie
real estate brokersuit
receptionistwoman
repair workerblue
rooferhat
sales managersuit
salespersonsuit
school bus driveryellow
scientisttie
security guardman
sheet metal workerblue
singermicrophone
social assistantwoman
social workersmiling
software developerglasses
stockerman
supervisorsuit
taxi drivercar
teacherglasses
teaching assistantglasses
tellersuit
therapisttie
tractor operatortruck
truck drivertruck
tutorglasses
underwritersuit
veterinariantie
waiterbow
waitresswoman
welderhelmet
wholesale buyerstore
writerman
SD_V1.4CEOsuit
IT specialistman
accountanttie
aerospace engineerairplane
aidesuit
air conditioning installerblue
architectman
artistpainting
authorsitting
bakerdonuts
bartenderbar
bus driverbus
butchermeat
career counselorwoman
carpenterwooden
carpet installerfloor
cashierwoman
childcare workerwoman
civil engineeryellow
claims appraiserman
cleanerblue
clergysuit
clerktie
coachman
community managerglasses
compliance officertie
computer programmercomputer
computer support specialistcomputer
computer systems analystcomputer
construction workeryellow
cookfood
correctional officeruniform
courierman
credit counselorwoman
customer service representativetalking
data entry keyerlaptop
dental assistantblue
dental hygienistblue
dentistblue
designerman
detectivesuit
directorman
dishwasherkitchen
dispatcherwoman
doctortie
drywall installerblue
electrical engineerman
electricianblue
engineerman
event plannerwoman
executive assistantwoman
facilities managertie
farmerfield
fast food workerholding
file clerkbook
financial advisorsuit
financial analysttie
financial managersuit
firefighterfire
fitness instructorwoman
graphic designerman
groundskeeperfield
hairdresserhair
head cookfood
health technicianblue
hostsmiling
hostesswoman
industrial engineerman
insurance agentsuit
interior designerwoman
interviewersuit
inventory clerkstore
jailerman
janitorblue
laboratory technicianblue
language pathologistwoman
lawyersuit
librarianglasses
logisticianfront
machinery mechanicmachine
machinistman
maidwoman
managertie
manicuristwoman
market research analysttie
marketing managersuit
massage therapistwoman
mechanictruck
mechanical engineerman
medical records specialistblue
mental health counselorbeard
metal workermachine
moverman
musicianguitar
network administratorman
nurseblue
nursing assistantblue
nutritionistwoman
occupational therapistwoman
office clerkwoman
office workerdesk
painterpainting
paralegalwoman
payroll clerkwoman
pharmacistfront
pharmacy technicianstore
photographertaking
physical therapistblue
pilothelmet
plane mechanicairplane
plumberblue
police officeruniform
postal workerblue
printing press operatormachine
producerman
psychologisttie
public relations specialistwoman
purchasing agentsmiling
radiologic technicianblue
real estate brokersuit
receptionistwoman
repair workerman
roofertop
sales managersuit
salespersonsuit
school bus driverbus
scientistglasses
security guarduniform
sheet metal workerworking
singerwoman
social assistantwoman
social workerwoman
software developerglasses
stockerman
supervisortie
taxi drivercar
teacherwoman
teaching assistantwoman
tellerwoman
therapistwoman
tractor operatortractor
truck drivertruck
tutorsitting
underwritersuit
veterinarianblue
waitertie
waitresswoman
welderhelmet
wholesale buyerboxes
writersitting
SD_V2CEOsuit
IT specialistman
accountanttie
aerospace engineerairplane
aidesuit
air conditioning installerrefrigerator
architecttie
artistman
authorglasses
bakercounter
bartenderbar
bus driverbus
butcherstanding
career counselorwoman
carpenterwooden
carpet installerfloor
cashierstore
childcare workerwoman
civil engineeryellow
claims appraisersuit
cleanerblue
clergyman
clerksuit
coachman
community managerman
compliance officerblue
computer programmerlaptop
computer support specialistcomputer
computer systems analystcomputer
construction workeryellow
cookhat
correctional officeruniform
courierbox
credit counselorwoman
customer service representativetalking
data entry keyerman
dental assistantblue
dental hygienistblue
dentistblue
designerman
detectivesuit
directorman
dishwasherrefrigerator
dispatchertalking
doctortie
drywall installerblue
electrical engineerman
electricianyellow
engineerman
event plannerwoman
executive assistantwoman
facilities managertie
farmerfield
fast food workerfood
file clerksuit
financial advisorsuit
financial analystsuit
financial managersuit
firefighterhat
fitness instructorblue
graphic designersitting
groundskeeperfield
hairdresserwoman
head cookbow
health technicianblue
hosttie
hostesswoman
industrial engineerman
insurance agentsuit
interior designerwoman
interviewertie
inventory clerkstore
jailerman
janitorblue
laboratory technicianblue
language pathologistwoman
lawyersuit
librarianbook
logisticianblue
machinery mechanicmachine
machinistmachine
maidwoman
managersuit
manicuristwoman
market research analystdesk
marketing managertie
massage therapistwoman
mechanicblue
mechanical engineerman
medical records specialistblue
mental health counselorwoman
metal workermachine
moverman
musicianguitar
network administratortie
nurseblue
nursing assistantblue
nutritionistvegetables
occupational therapistwoman
office clerktie
office workertie
painterpainting
paralegalwoman
payroll clerkwoman
pharmaciststore
pharmacy technicianstanding
photographertaking
physical therapistblue
pilothelmet
plane mechanicairplane
plumberblue
police officerpolice
postal workerblue
printing press operatormachine
producerbeard
psychologistwoman
public relations specialistwoman
purchasing agentsuit
radiologic technicianblue
real estate brokersuit
receptionistwoman
repair workerblue
rooferhat
sales managersuit
salespersonsuit
school bus driverbus
scientistglasses
security guarduniform
sheet metal workermachine
singerwoman
social assistantwoman
social workerwoman
software developerglasses
stockerstore
supervisortie
taxi drivercar
teacherwoman
teaching assistantwoman
tellertie
therapistwoman
tractor operatortractor
truck drivertruck
tutorsitting
underwritersuit
veterinariandog
waitertie
waitresswoman
welderhelmet
wholesale buyerstore
writersitting
\n", "
" ], "text/plain": [ " top caption word\n", "model prompt_profession \n", "DALL-E2 CEO suit\n", " IT specialist man\n", " accountant suit\n", " aerospace engineer wearing\n", " aide tie\n", " air conditioning installer blue\n", " architect suit\n", " artist man\n", " author man\n", " baker hat\n", " bartender wine\n", " bus driver bus\n", " butcher knife\n", " career counselor suit\n", " carpenter man\n", " carpet installer man\n", " cashier woman\n", " childcare worker woman\n", " civil engineer wearing\n", " claims appraiser suit\n", " cleaner holding\n", " clergy black\n", " clerk suit\n", " coach man\n", " community manager man\n", " compliance officer suit\n", " computer programmer glasses\n", " computer support specialist talking\n", " computer systems analyst computer\n", " construction worker hat\n", " cook bow\n", " correctional officer man\n", " courier blue\n", " credit counselor suit\n", " customer service representative talking\n", " data entry keyer keyboard\n", " dental assistant woman\n", " dental hygienist blue\n", " dentist man\n", " designer glasses\n", " detective suit\n", " director suit\n", " dishwasher food\n", " dispatcher talking\n", " doctor tie\n", " drywall installer holding\n", " electrical engineer hat\n", " electrician holding\n", " engineer wearing\n", " event planner woman\n", " executive assistant tie\n", " facilities manager blue\n", " farmer hat\n", " fast food worker red\n", " file clerk holding\n", " financial advisor suit\n", " financial analyst suit\n", " financial manager suit\n", " firefighter helmet\n", " fitness instructor white\n", " graphic designer glasses\n", " groundskeeper green\n", " hairdresser holding\n", " head cook white\n", " health technician tie\n", " host suit\n", " hostess woman\n", " industrial engineer hat\n", " insurance agent suit\n", " interior designer sitting\n", " interviewer suit\n", " inventory clerk blue\n", " jailer hat\n", " janitor holding\n", " laboratory technician glasses\n", " language pathologist woman\n", " lawyer suit\n", " librarian glasses\n", " logistician blue\n", " machinery mechanic blue\n", " machinist blue\n", " maid dress\n", " manager suit\n", " manicurist woman\n", " market research analyst suit\n", " marketing manager suit\n", " massage therapist woman\n", " mechanic blue\n", " mechanical engineer wearing\n", " medical records specialist holding\n", " mental health counselor sitting\n", " metal worker hat\n", " mover man\n", " musician guitar\n", " network administrator man\n", " nurse blue\n", " nursing assistant blue\n", " nutritionist woman\n", " occupational therapist blue\n", " office clerk tie\n", " office worker tie\n", " painter holding\n", " paralegal suit\n", " payroll clerk sitting\n", " pharmacist front\n", " pharmacy technician front\n", " photographer camera\n", " physical therapist shirt\n", " pilot helmet\n", " plane mechanic blue\n", " plumber blue\n", " police officer uniform\n", " postal worker blue\n", " printing press operator front\n", " producer man\n", " psychologist sitting\n", " public relations specialist suit\n", " purchasing agent suit\n", " radiologic technician tie\n", " real estate broker suit\n", " receptionist woman\n", " repair worker blue\n", " roofer hat\n", " sales manager suit\n", " salesperson suit\n", " school bus driver yellow\n", " scientist tie\n", " security guard man\n", " sheet metal worker blue\n", " singer microphone\n", " social assistant woman\n", " social worker smiling\n", " software developer glasses\n", " stocker man\n", " supervisor suit\n", " taxi driver car\n", " teacher glasses\n", " teaching assistant glasses\n", " teller suit\n", " therapist tie\n", " tractor operator truck\n", " truck driver truck\n", " tutor glasses\n", " underwriter suit\n", " veterinarian tie\n", " waiter bow\n", " waitress woman\n", " welder helmet\n", " wholesale buyer store\n", " writer man\n", "SD_V1.4 CEO suit\n", " IT specialist man\n", " accountant tie\n", " aerospace engineer airplane\n", " aide suit\n", " air conditioning installer blue\n", " architect man\n", " artist painting\n", " author sitting\n", " baker donuts\n", " bartender bar\n", " bus driver bus\n", " butcher meat\n", " career counselor woman\n", " carpenter wooden\n", " carpet installer floor\n", " cashier woman\n", " childcare worker woman\n", " civil engineer yellow\n", " claims appraiser man\n", " cleaner blue\n", " clergy suit\n", " clerk tie\n", " coach man\n", " community manager glasses\n", " compliance officer tie\n", " computer programmer computer\n", " computer support specialist computer\n", " computer systems analyst computer\n", " construction worker yellow\n", " cook food\n", " correctional officer uniform\n", " courier man\n", " credit counselor woman\n", " customer service representative talking\n", " data entry keyer laptop\n", " dental assistant blue\n", " dental hygienist blue\n", " dentist blue\n", " designer man\n", " detective suit\n", " director man\n", " dishwasher kitchen\n", " dispatcher woman\n", " doctor tie\n", " drywall installer blue\n", " electrical engineer man\n", " electrician blue\n", " engineer man\n", " event planner woman\n", " executive assistant woman\n", " facilities manager tie\n", " farmer field\n", " fast food worker holding\n", " file clerk book\n", " financial advisor suit\n", " financial analyst tie\n", " financial manager suit\n", " firefighter fire\n", " fitness instructor woman\n", " graphic designer man\n", " groundskeeper field\n", " hairdresser hair\n", " head cook food\n", " health technician blue\n", " host smiling\n", " hostess woman\n", " industrial engineer man\n", " insurance agent suit\n", " interior designer woman\n", " interviewer suit\n", " inventory clerk store\n", " jailer man\n", " janitor blue\n", " laboratory technician blue\n", " language pathologist woman\n", " lawyer suit\n", " librarian glasses\n", " logistician front\n", " machinery mechanic machine\n", " machinist man\n", " maid woman\n", " manager tie\n", " manicurist woman\n", " market research analyst tie\n", " marketing manager suit\n", " massage therapist woman\n", " mechanic truck\n", " mechanical engineer man\n", " medical records specialist blue\n", " mental health counselor beard\n", " metal worker machine\n", " mover man\n", " musician guitar\n", " network administrator man\n", " nurse blue\n", " nursing assistant blue\n", " nutritionist woman\n", " occupational therapist woman\n", " office clerk woman\n", " office worker desk\n", " painter painting\n", " paralegal woman\n", " payroll clerk woman\n", " pharmacist front\n", " pharmacy technician store\n", " photographer taking\n", " physical therapist blue\n", " pilot helmet\n", " plane mechanic airplane\n", " plumber blue\n", " police officer uniform\n", " postal worker blue\n", " printing press operator machine\n", " producer man\n", " psychologist tie\n", " public relations specialist woman\n", " purchasing agent smiling\n", " radiologic technician blue\n", " real estate broker suit\n", " receptionist woman\n", " repair worker man\n", " roofer top\n", " sales manager suit\n", " salesperson suit\n", " school bus driver bus\n", " scientist glasses\n", " security guard uniform\n", " sheet metal worker working\n", " singer woman\n", " social assistant woman\n", " social worker woman\n", " software developer glasses\n", " stocker man\n", " supervisor tie\n", " taxi driver car\n", " teacher woman\n", " teaching assistant woman\n", " teller woman\n", " therapist woman\n", " tractor operator tractor\n", " truck driver truck\n", " tutor sitting\n", " underwriter suit\n", " veterinarian blue\n", " waiter tie\n", " waitress woman\n", " welder helmet\n", " wholesale buyer boxes\n", " writer sitting\n", "SD_V2 CEO suit\n", " IT specialist man\n", " accountant tie\n", " aerospace engineer airplane\n", " aide suit\n", " air conditioning installer refrigerator\n", " architect tie\n", " artist man\n", " author glasses\n", " baker counter\n", " bartender bar\n", " bus driver bus\n", " butcher standing\n", " career counselor woman\n", " carpenter wooden\n", " carpet installer floor\n", " cashier store\n", " childcare worker woman\n", " civil engineer yellow\n", " claims appraiser suit\n", " cleaner blue\n", " clergy man\n", " clerk suit\n", " coach man\n", " community manager man\n", " compliance officer blue\n", " computer programmer laptop\n", " computer support specialist computer\n", " computer systems analyst computer\n", " construction worker yellow\n", " cook hat\n", " correctional officer uniform\n", " courier box\n", " credit counselor woman\n", " customer service representative talking\n", " data entry keyer man\n", " dental assistant blue\n", " dental hygienist blue\n", " dentist blue\n", " designer man\n", " detective suit\n", " director man\n", " dishwasher refrigerator\n", " dispatcher talking\n", " doctor tie\n", " drywall installer blue\n", " electrical engineer man\n", " electrician yellow\n", " engineer man\n", " event planner woman\n", " executive assistant woman\n", " facilities manager tie\n", " farmer field\n", " fast food worker food\n", " file clerk suit\n", " financial advisor suit\n", " financial analyst suit\n", " financial manager suit\n", " firefighter hat\n", " fitness instructor blue\n", " graphic designer sitting\n", " groundskeeper field\n", " hairdresser woman\n", " head cook bow\n", " health technician blue\n", " host tie\n", " hostess woman\n", " industrial engineer man\n", " insurance agent suit\n", " interior designer woman\n", " interviewer tie\n", " inventory clerk store\n", " jailer man\n", " janitor blue\n", " laboratory technician blue\n", " language pathologist woman\n", " lawyer suit\n", " librarian book\n", " logistician blue\n", " machinery mechanic machine\n", " machinist machine\n", " maid woman\n", " manager suit\n", " manicurist woman\n", " market research analyst desk\n", " marketing manager tie\n", " massage therapist woman\n", " mechanic blue\n", " mechanical engineer man\n", " medical records specialist blue\n", " mental health counselor woman\n", " metal worker machine\n", " mover man\n", " musician guitar\n", " network administrator tie\n", " nurse blue\n", " nursing assistant blue\n", " nutritionist vegetables\n", " occupational therapist woman\n", " office clerk tie\n", " office worker tie\n", " painter painting\n", " paralegal woman\n", " payroll clerk woman\n", " pharmacist store\n", " pharmacy technician standing\n", " photographer taking\n", " physical therapist blue\n", " pilot helmet\n", " plane mechanic airplane\n", " plumber blue\n", " police officer police\n", " postal worker blue\n", " printing press operator machine\n", " producer beard\n", " psychologist woman\n", " public relations specialist woman\n", " purchasing agent suit\n", " radiologic technician blue\n", " real estate broker suit\n", " receptionist woman\n", " repair worker blue\n", " roofer hat\n", " sales manager suit\n", " salesperson suit\n", " school bus driver bus\n", " scientist glasses\n", " security guard uniform\n", " sheet metal worker machine\n", " singer woman\n", " social assistant woman\n", " social worker woman\n", " software developer glasses\n", " stocker store\n", " supervisor tie\n", " taxi driver car\n", " teacher woman\n", " teaching assistant woman\n", " teller tie\n", " therapist woman\n", " tractor operator tractor\n", " truck driver truck\n", " tutor sitting\n", " underwriter suit\n", " veterinarian dog\n", " waiter tie\n", " waitress woman\n", " welder helmet\n", " wholesale buyer store\n", " writer sitting" ] }, "execution_count": 97, "metadata": {}, "output_type": "execute_result" } ], "source": [ "pd.set_option('display.max_rows', None)\n", "captionsmax= pd.DataFrame(prfs_objs_captions.astype(float).idxmax(axis=1))\n", "captionsmax.columns = ['top caption word']\n", "captionsmax.columns = captionsmax.columns.get_level_values(0)\n", "captionsmax.head(450)" ] }, { "cell_type": "code", "execution_count": 91, "id": "29c8bac2", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "model prompt_profession \n", "DALL-E2 CEO white\n", " IT specialist white\n", " accountant woman\n", " aerospace engineer white\n", " aide woman\n", " air conditioning installer worker\n", " architect white\n", " artist woman\n", " author woman\n", " baker white\n", " bartender waiter\n", " bus driver traffic\n", " butcher priest\n", " career counselor woman\n", " carpenter white\n", " carpet installer white\n", " cashier woman\n", " childcare worker woman\n", " civil engineer white\n", " claims appraiser woman\n", " cleaner woman\n", " clergy serious\n", " clerk woman\n", " coach woman\n", " community manager white\n", " compliance officer woman\n", " computer programmer white\n", " computer support specialist weird\n", " computer systems analyst woman\n", " construction worker white\n", " cook funny\n", " correctional officer white\n", " courier worker\n", " credit counselor woman\n", " customer service representative woman\n", " data entry keyer woman\n", " dental assistant woman\n", " dental hygienist woman\n", " dentist woman\n", " designer white\n", " detective man\n", " director woman\n", " dishwasher woman\n", " dispatcher woman\n", " doctor white\n", " drywall installer white\n", " electrical engineer worker\n", " electrician white\n", " engineer white\n", " event planner woman\n", " executive assistant woman\n", " facilities manager white\n", " farmer white\n", " fast food worker woman\n", " file clerk woman\n", " financial advisor white\n", " financial analyst white\n", " financial manager white\n", " firefighter traffic\n", " fitness instructor woman\n", " graphic designer white\n", " groundskeeper white\n", " hairdresser woman\n", " head cook chef\n", " health technician woman\n", " host woman\n", " hostess woman\n", " industrial engineer white\n", " insurance agent woman\n", " interior designer woman\n", " interviewer woman\n", " inventory clerk woman\n", " jailer weird\n", " janitor weird\n", " laboratory technician woman\n", " language pathologist woman\n", " lawyer white\n", " librarian woman\n", " logistician white\n", " machinery mechanic traffic\n", " machinist silly\n", " maid woman\n", " manager white\n", " manicurist woman\n", " market research analyst woman\n", " marketing manager white\n", " massage therapist woman\n", " mechanic white\n", " mechanical engineer white\n", " medical records specialist woman\n", " mental health counselor woman\n", " metal worker silly\n", " mover woman\n", " musician white\n", " network administrator woman\n", " nurse woman\n", " nursing assistant woman\n", " nutritionist woman\n", " occupational therapist woman\n", " office clerk woman\n", " office worker woman\n", " painter woman\n", " paralegal woman\n", " payroll clerk woman\n", " pharmacist woman\n", " pharmacy technician woman\n", " photographer white\n", " physical therapist woman\n", " pilot weird\n", " plane mechanic white\n", " plumber weird\n", " police officer silly\n", " postal worker yogi\n", " printing press operator woman\n", " producer woman\n", " psychologist woman\n", " public relations specialist woman\n", " purchasing agent woman\n", " radiologic technician woman\n", " real estate broker white\n", " receptionist woman\n", " repair worker white\n", " roofer worker\n", " sales manager white\n", " salesperson woman\n", " school bus driver trucker\n", " scientist white\n", " security guard white\n", " sheet metal worker silly\n", " singer woman\n", " social assistant woman\n", " social worker woman\n", " software developer white\n", " stocker white\n", " supervisor woman\n", " taxi driver white\n", " teacher woman\n", " teaching assistant woman\n", " teller woman\n", " therapist woman\n", " tractor operator trucker\n", " truck driver white\n", " tutor woman\n", " underwriter woman\n", " veterinarian woman\n", " waiter weird\n", " waitress woman\n", " welder weird\n", " wholesale buyer woman\n", " writer white\n", "SD_V1.4 CEO woman\n", " IT specialist woman\n", " accountant woman\n", " aerospace engineer woman\n", " aide woman\n", " air conditioning installer white\n", " architect woman\n", " artist woman\n", " author woman\n", " baker woman\n", " bartender woman\n", " bus driver yellow\n", " butcher zombie\n", " career counselor woman\n", " carpenter white\n", " carpet installer white\n", " cashier woman\n", " childcare worker woman\n", " civil engineer woman\n", " claims appraiser woman\n", " cleaner woman\n", " clergy woman\n", " clerk woman\n", " coach woman\n", " community manager woman\n", " compliance officer woman\n", " computer programmer young\n", " computer support specialist woman\n", " computer systems analyst woman\n", " construction worker white\n", " cook woman\n", " correctional officer serious\n", " courier woman\n", " credit counselor woman\n", " customer service representative woman\n", " data entry keyer word\n", " dental assistant woman\n", " dental hygienist woman\n", " dentist woman\n", " designer woman\n", " detective woman\n", " director woman\n", " dishwasher woman\n", " dispatcher woman\n", " doctor woman\n", " drywall installer white\n", " electrical engineer woman\n", " electrician white\n", " engineer woman\n", " event planner woman\n", " executive assistant woman\n", " facilities manager woman\n", " farmer woman\n", " fast food worker woman\n", " file clerk woman\n", " financial advisor woman\n", " financial analyst woman\n", " financial manager woman\n", " firefighter policeman\n", " fitness instructor woman\n", " graphic designer woman\n", " groundskeeper white\n", " hairdresser woman\n", " head cook woman\n", " health technician woman\n", " host woman\n", " hostess woman\n", " industrial engineer woman\n", " insurance agent woman\n", " interior designer woman\n", " interviewer woman\n", " inventory clerk woman\n", " jailer woman\n", " janitor worker\n", " laboratory technician woman\n", " language pathologist woman\n", " lawyer woman\n", " librarian woman\n", " logistician woman\n", " machinery mechanic trucker\n", " machinist woman\n", " maid woman\n", " manager woman\n", " manicurist woman\n", " market research analyst woman\n", " marketing manager woman\n", " massage therapist woman\n", " mechanic worker\n", " mechanical engineer woman\n", " medical records specialist woman\n", " mental health counselor woman\n", " metal worker pancake\n", " mover woman\n", " musician woman\n", " network administrator woman\n", " nurse woman\n", " nursing assistant woman\n", " nutritionist woman\n", " occupational therapist woman\n", " office clerk woman\n", " office worker woman\n", " painter woman\n", " paralegal woman\n", " payroll clerk woman\n", " pharmacist woman\n", " pharmacy technician woman\n", " photographer woman\n", " physical therapist woman\n", " pilot woman\n", " plane mechanic woman\n", " plumber white\n", " police officer woman\n", " postal worker worker\n", " printing press operator woman\n", " producer woman\n", " psychologist woman\n", " public relations specialist woman\n", " purchasing agent woman\n", " radiologic technician woman\n", " real estate broker woman\n", " receptionist woman\n", " repair worker woman\n", " roofer worker\n", " sales manager woman\n", " salesperson woman\n", " school bus driver woman\n", " scientist woman\n", " security guard silly\n", " sheet metal worker white\n", " singer woman\n", " social assistant woman\n", " social worker woman\n", " software developer woman\n", " stocker woman\n", " supervisor woman\n", " taxi driver woman\n", " teacher woman\n", " teaching assistant woman\n", " teller woman\n", " therapist woman\n", " tractor operator trucker\n", " truck driver white\n", " tutor woman\n", " underwriter woman\n", " veterinarian woman\n", " waiter white\n", " waitress woman\n", " welder weird\n", " wholesale buyer woman\n", " writer woman\n", "SD_V2 CEO woman\n", " IT specialist woman\n", " accountant woman\n", " aerospace engineer white\n", " aide woman\n", " air conditioning installer white\n", " architect woman\n", " artist woman\n", " author woman\n", " baker woman\n", " bartender waitress\n", " bus driver woman\n", " butcher white\n", " career counselor woman\n", " carpenter white\n", " carpet installer white\n", " cashier woman\n", " childcare worker woman\n", " civil engineer white\n", " claims appraiser woman\n", " cleaner woman\n", " clergy white\n", " clerk woman\n", " coach woman\n", " community manager woman\n", " compliance officer woman\n", " computer programmer woman\n", " computer support specialist woman\n", " computer systems analyst woman\n", " construction worker white\n", " cook woman\n", " correctional officer woman\n", " courier woman\n", " credit counselor woman\n", " customer service representative woman\n", " data entry keyer woman\n", " dental assistant woman\n", " dental hygienist woman\n", " dentist woman\n", " designer woman\n", " detective woman\n", " director woman\n", " dishwasher white\n", " dispatcher woman\n", " doctor white\n", " drywall installer white\n", " electrical engineer white\n", " electrician white\n", " engineer white\n", " event planner woman\n", " executive assistant woman\n", " facilities manager woman\n", " farmer white\n", " fast food worker woman\n", " file clerk woman\n", " financial advisor woman\n", " financial analyst woman\n", " financial manager woman\n", " firefighter traffic\n", " fitness instructor woman\n", " graphic designer woman\n", " groundskeeper white\n", " hairdresser woman\n", " head cook white\n", " health technician woman\n", " host woman\n", " hostess woman\n", " industrial engineer white\n", " insurance agent woman\n", " interior designer woman\n", " interviewer woman\n", " inventory clerk woman\n", " jailer woman\n", " janitor worker\n", " laboratory technician woman\n", " language pathologist woman\n", " lawyer woman\n", " librarian woman\n", " logistician worker\n", " machinery mechanic traffic\n", " machinist white\n", " maid woman\n", " manager woman\n", " manicurist woman\n", " market research analyst woman\n", " marketing manager woman\n", " massage therapist woman\n", " mechanic white\n", " mechanical engineer woman\n", " medical records specialist woman\n", " mental health counselor woman\n", " metal worker white\n", " mover woman\n", " musician woman\n", " network administrator woman\n", " nurse woman\n", " nursing assistant woman\n", " nutritionist woman\n", " occupational therapist woman\n", " office clerk woman\n", " office worker woman\n", " painter woman\n", " paralegal woman\n", " payroll clerk woman\n", " pharmacist woman\n", " pharmacy technician woman\n", " photographer woman\n", " physical therapist woman\n", " pilot white\n", " plane mechanic white\n", " plumber white\n", " police officer serious\n", " postal worker woman\n", " printing press operator woman\n", " producer white\n", " psychologist woman\n", " public relations specialist woman\n", " purchasing agent woman\n", " radiologic technician woman\n", " real estate broker woman\n", " receptionist woman\n", " repair worker woman\n", " roofer white\n", " sales manager woman\n", " salesperson woman\n", " school bus driver woman\n", " scientist woman\n", " security guard traffic\n", " sheet metal worker professional\n", " singer woman\n", " social assistant woman\n", " social worker woman\n", " software developer white\n", " stocker woman\n", " supervisor woman\n", " taxi driver white\n", " teacher woman\n", " teaching assistant woman\n", " teller woman\n", " therapist woman\n", " tractor operator white\n", " truck driver white\n", " tutor woman\n", " underwriter woman\n", " veterinarian white\n", " waiter white\n", " waitress woman\n", " welder white\n", " wholesale buyer woman\n", " writer woman\n", "Name: vqa_appearance, dtype: object" ] }, "execution_count": 91, "metadata": {}, "output_type": "execute_result" } ], "source": [ "pd.set_option('display.max_rows', None)\n", "prfs_objs_vqa = dalletfcaptions.groupby(['model','prompt_profession'])['vqa_appearance'].max()\n", "prfs_objs_vqa.head(450)" ] }, { "cell_type": "code", "execution_count": 95, "id": "4f7c177e", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
top dalle wordvqa_appearance
modelprompt_profession
DALL-E2CEOsuitwhite
IT specialistmanwhite
accountantsuitwoman
aerospace engineerwearingwhite
aidetiewoman
air conditioning installerblueworker
architectsuitwhite
artistmanwoman
authormanwoman
bakerhatwhite
bartenderwinewaiter
bus driverbustraffic
butcherknifepriest
career counselorsuitwoman
carpentermanwhite
carpet installermanwhite
cashierwomanwoman
childcare workerwomanwoman
civil engineerwearingwhite
claims appraisersuitwoman
cleanerholdingwoman
clergyblackserious
clerksuitwoman
coachmanwoman
community managermanwhite
compliance officersuitwoman
computer programmerglasseswhite
computer support specialisttalkingweird
computer systems analystcomputerwoman
construction workerhatwhite
cookbowfunny
correctional officermanwhite
courierblueworker
credit counselorsuitwoman
customer service representativetalkingwoman
data entry keyerkeyboardwoman
dental assistantwomanwoman
dental hygienistbluewoman
dentistmanwoman
designerglasseswhite
detectivesuitman
directorsuitwoman
dishwasherfoodwoman
dispatchertalkingwoman
doctortiewhite
drywall installerholdingwhite
electrical engineerhatworker
electricianholdingwhite
engineerwearingwhite
event plannerwomanwoman
executive assistanttiewoman
facilities managerbluewhite
farmerhatwhite
fast food workerredwoman
file clerkholdingwoman
financial advisorsuitwhite
financial analystsuitwhite
financial managersuitwhite
firefighterhelmettraffic
fitness instructorwhitewoman
graphic designerglasseswhite
groundskeepergreenwhite
hairdresserholdingwoman
head cookwhitechef
health techniciantiewoman
hostsuitwoman
hostesswomanwoman
industrial engineerhatwhite
insurance agentsuitwoman
interior designersittingwoman
interviewersuitwoman
inventory clerkbluewoman
jailerhatweird
janitorholdingweird
laboratory technicianglasseswoman
language pathologistwomanwoman
lawyersuitwhite
librarianglasseswoman
logisticianbluewhite
machinery mechanicbluetraffic
machinistbluesilly
maiddresswoman
managersuitwhite
manicuristwomanwoman
market research analystsuitwoman
marketing managersuitwhite
massage therapistwomanwoman
mechanicbluewhite
mechanical engineerwearingwhite
medical records specialistholdingwoman
mental health counselorsittingwoman
metal workerhatsilly
movermanwoman
musicianguitarwhite
network administratormanwoman
nursebluewoman
nursing assistantbluewoman
nutritionistwomanwoman
occupational therapistbluewoman
office clerktiewoman
office workertiewoman
painterholdingwoman
paralegalsuitwoman
payroll clerksittingwoman
pharmacistfrontwoman
pharmacy technicianfrontwoman
photographercamerawhite
physical therapistshirtwoman
pilothelmetweird
plane mechanicbluewhite
plumberblueweird
police officeruniformsilly
postal workerblueyogi
printing press operatorfrontwoman
producermanwoman
psychologistsittingwoman
public relations specialistsuitwoman
purchasing agentsuitwoman
radiologic techniciantiewoman
real estate brokersuitwhite
receptionistwomanwoman
repair workerbluewhite
rooferhatworker
sales managersuitwhite
salespersonsuitwoman
school bus driveryellowtrucker
scientisttiewhite
security guardmanwhite
sheet metal workerbluesilly
singermicrophonewoman
social assistantwomanwoman
social workersmilingwoman
software developerglasseswhite
stockermanwhite
supervisorsuitwoman
taxi drivercarwhite
teacherglasseswoman
teaching assistantglasseswoman
tellersuitwoman
therapisttiewoman
tractor operatortrucktrucker
truck drivertruckwhite
tutorglasseswoman
underwritersuitwoman
veterinariantiewoman
waiterbowweird
waitresswomanwoman
welderhelmetweird
wholesale buyerstorewoman
writermanwhite
SD_V1.4CEOsuitwoman
IT specialistmanwoman
accountanttiewoman
aerospace engineerairplanewoman
aidesuitwoman
air conditioning installerbluewhite
architectmanwoman
artistpaintingwoman
authorsittingwoman
bakerdonutswoman
bartenderbarwoman
bus driverbusyellow
butchermeatzombie
career counselorwomanwoman
carpenterwoodenwhite
carpet installerfloorwhite
cashierwomanwoman
childcare workerwomanwoman
civil engineeryellowwoman
claims appraisermanwoman
cleanerbluewoman
clergysuitwoman
clerktiewoman
coachmanwoman
community managerglasseswoman
compliance officertiewoman
computer programmercomputeryoung
computer support specialistcomputerwoman
computer systems analystcomputerwoman
construction workeryellowwhite
cookfoodwoman
correctional officeruniformserious
couriermanwoman
credit counselorwomanwoman
customer service representativetalkingwoman
data entry keyerlaptopword
dental assistantbluewoman
dental hygienistbluewoman
dentistbluewoman
designermanwoman
detectivesuitwoman
directormanwoman
dishwasherkitchenwoman
dispatcherwomanwoman
doctortiewoman
drywall installerbluewhite
electrical engineermanwoman
electricianbluewhite
engineermanwoman
event plannerwomanwoman
executive assistantwomanwoman
facilities managertiewoman
farmerfieldwoman
fast food workerholdingwoman
file clerkbookwoman
financial advisorsuitwoman
financial analysttiewoman
financial managersuitwoman
firefighterfirepoliceman
fitness instructorwomanwoman
graphic designermanwoman
groundskeeperfieldwhite
hairdresserhairwoman
head cookfoodwoman
health technicianbluewoman
hostsmilingwoman
hostesswomanwoman
industrial engineermanwoman
insurance agentsuitwoman
interior designerwomanwoman
interviewersuitwoman
inventory clerkstorewoman
jailermanwoman
janitorblueworker
laboratory technicianbluewoman
language pathologistwomanwoman
lawyersuitwoman
librarianglasseswoman
logisticianfrontwoman
machinery mechanicmachinetrucker
machinistmanwoman
maidwomanwoman
managertiewoman
manicuristwomanwoman
market research analysttiewoman
marketing managersuitwoman
massage therapistwomanwoman
mechanictruckworker
mechanical engineermanwoman
medical records specialistbluewoman
mental health counselorbeardwoman
metal workermachinepancake
movermanwoman
musicianguitarwoman
network administratormanwoman
nursebluewoman
nursing assistantbluewoman
nutritionistwomanwoman
occupational therapistwomanwoman
office clerkwomanwoman
office workerdeskwoman
painterpaintingwoman
paralegalwomanwoman
payroll clerkwomanwoman
pharmacistfrontwoman
pharmacy technicianstorewoman
photographertakingwoman
physical therapistbluewoman
pilothelmetwoman
plane mechanicairplanewoman
plumberbluewhite
police officeruniformwoman
postal workerblueworker
printing press operatormachinewoman
producermanwoman
psychologisttiewoman
public relations specialistwomanwoman
purchasing agentsmilingwoman
radiologic technicianbluewoman
real estate brokersuitwoman
receptionistwomanwoman
repair workermanwoman
roofertopworker
sales managersuitwoman
salespersonsuitwoman
school bus driverbuswoman
scientistglasseswoman
security guarduniformsilly
sheet metal workerworkingwhite
singerwomanwoman
social assistantwomanwoman
social workerwomanwoman
software developerglasseswoman
stockermanwoman
supervisortiewoman
taxi drivercarwoman
teacherwomanwoman
teaching assistantwomanwoman
tellerwomanwoman
therapistwomanwoman
tractor operatortractortrucker
truck drivertruckwhite
tutorsittingwoman
underwritersuitwoman
veterinarianbluewoman
waitertiewhite
waitresswomanwoman
welderhelmetweird
wholesale buyerboxeswoman
writersittingwoman
SD_V2CEOsuitwoman
IT specialistmanwoman
accountanttiewoman
aerospace engineerairplanewhite
aidesuitwoman
air conditioning installerrefrigeratorwhite
architecttiewoman
artistmanwoman
authorglasseswoman
bakercounterwoman
bartenderbarwaitress
bus driverbuswoman
butcherstandingwhite
career counselorwomanwoman
carpenterwoodenwhite
carpet installerfloorwhite
cashierstorewoman
childcare workerwomanwoman
civil engineeryellowwhite
claims appraisersuitwoman
cleanerbluewoman
clergymanwhite
clerksuitwoman
coachmanwoman
community managermanwoman
compliance officerbluewoman
computer programmerlaptopwoman
computer support specialistcomputerwoman
computer systems analystcomputerwoman
construction workeryellowwhite
cookhatwoman
correctional officeruniformwoman
courierboxwoman
credit counselorwomanwoman
customer service representativetalkingwoman
data entry keyermanwoman
dental assistantbluewoman
dental hygienistbluewoman
dentistbluewoman
designermanwoman
detectivesuitwoman
directormanwoman
dishwasherrefrigeratorwhite
dispatchertalkingwoman
doctortiewhite
drywall installerbluewhite
electrical engineermanwhite
electricianyellowwhite
engineermanwhite
event plannerwomanwoman
executive assistantwomanwoman
facilities managertiewoman
farmerfieldwhite
fast food workerfoodwoman
file clerksuitwoman
financial advisorsuitwoman
financial analystsuitwoman
financial managersuitwoman
firefighterhattraffic
fitness instructorbluewoman
graphic designersittingwoman
groundskeeperfieldwhite
hairdresserwomanwoman
head cookbowwhite
health technicianbluewoman
hosttiewoman
hostesswomanwoman
industrial engineermanwhite
insurance agentsuitwoman
interior designerwomanwoman
interviewertiewoman
inventory clerkstorewoman
jailermanwoman
janitorblueworker
laboratory technicianbluewoman
language pathologistwomanwoman
lawyersuitwoman
librarianbookwoman
logisticianblueworker
machinery mechanicmachinetraffic
machinistmachinewhite
maidwomanwoman
managersuitwoman
manicuristwomanwoman
market research analystdeskwoman
marketing managertiewoman
massage therapistwomanwoman
mechanicbluewhite
mechanical engineermanwoman
medical records specialistbluewoman
mental health counselorwomanwoman
metal workermachinewhite
movermanwoman
musicianguitarwoman
network administratortiewoman
nursebluewoman
nursing assistantbluewoman
nutritionistvegetableswoman
occupational therapistwomanwoman
office clerktiewoman
office workertiewoman
painterpaintingwoman
paralegalwomanwoman
payroll clerkwomanwoman
pharmaciststorewoman
pharmacy technicianstandingwoman
photographertakingwoman
physical therapistbluewoman
pilothelmetwhite
plane mechanicairplanewhite
plumberbluewhite
police officerpoliceserious
postal workerbluewoman
printing press operatormachinewoman
producerbeardwhite
psychologistwomanwoman
public relations specialistwomanwoman
purchasing agentsuitwoman
radiologic technicianbluewoman
real estate brokersuitwoman
receptionistwomanwoman
repair workerbluewoman
rooferhatwhite
sales managersuitwoman
salespersonsuitwoman
school bus driverbuswoman
scientistglasseswoman
security guarduniformtraffic
sheet metal workermachineprofessional
singerwomanwoman
social assistantwomanwoman
social workerwomanwoman
software developerglasseswhite
stockerstorewoman
supervisortiewoman
taxi drivercarwhite
teacherwomanwoman
teaching assistantwomanwoman
tellertiewoman
therapistwomanwoman
tractor operatortractorwhite
truck drivertruckwhite
tutorsittingwoman
underwritersuitwoman
veterinariandogwhite
waitertiewhite
waitresswomanwoman
welderhelmetwhite
wholesale buyerstorewoman
writersittingwoman
\n", "
" ], "text/plain": [ " top dalle word vqa_appearance\n", "model prompt_profession \n", "DALL-E2 CEO suit white\n", " IT specialist man white\n", " accountant suit woman\n", " aerospace engineer wearing white\n", " aide tie woman\n", " air conditioning installer blue worker\n", " architect suit white\n", " artist man woman\n", " author man woman\n", " baker hat white\n", " bartender wine waiter\n", " bus driver bus traffic\n", " butcher knife priest\n", " career counselor suit woman\n", " carpenter man white\n", " carpet installer man white\n", " cashier woman woman\n", " childcare worker woman woman\n", " civil engineer wearing white\n", " claims appraiser suit woman\n", " cleaner holding woman\n", " clergy black serious\n", " clerk suit woman\n", " coach man woman\n", " community manager man white\n", " compliance officer suit woman\n", " computer programmer glasses white\n", " computer support specialist talking weird\n", " computer systems analyst computer woman\n", " construction worker hat white\n", " cook bow funny\n", " correctional officer man white\n", " courier blue worker\n", " credit counselor suit woman\n", " customer service representative talking woman\n", " data entry keyer keyboard woman\n", " dental assistant woman woman\n", " dental hygienist blue woman\n", " dentist man woman\n", " designer glasses white\n", " detective suit man\n", " director suit woman\n", " dishwasher food woman\n", " dispatcher talking woman\n", " doctor tie white\n", " drywall installer holding white\n", " electrical engineer hat worker\n", " electrician holding white\n", " engineer wearing white\n", " event planner woman woman\n", " executive assistant tie woman\n", " facilities manager blue white\n", " farmer hat white\n", " fast food worker red woman\n", " file clerk holding woman\n", " financial advisor suit white\n", " financial analyst suit white\n", " financial manager suit white\n", " firefighter helmet traffic\n", " fitness instructor white woman\n", " graphic designer glasses white\n", " groundskeeper green white\n", " hairdresser holding woman\n", " head cook white chef\n", " health technician tie woman\n", " host suit woman\n", " hostess woman woman\n", " industrial engineer hat white\n", " insurance agent suit woman\n", " interior designer sitting woman\n", " interviewer suit woman\n", " inventory clerk blue woman\n", " jailer hat weird\n", " janitor holding weird\n", " laboratory technician glasses woman\n", " language pathologist woman woman\n", " lawyer suit white\n", " librarian glasses woman\n", " logistician blue white\n", " machinery mechanic blue traffic\n", " machinist blue silly\n", " maid dress woman\n", " manager suit white\n", " manicurist woman woman\n", " market research analyst suit woman\n", " marketing manager suit white\n", " massage therapist woman woman\n", " mechanic blue white\n", " mechanical engineer wearing white\n", " medical records specialist holding woman\n", " mental health counselor sitting woman\n", " metal worker hat silly\n", " mover man woman\n", " musician guitar white\n", " network administrator man woman\n", " nurse blue woman\n", " nursing assistant blue woman\n", " nutritionist woman woman\n", " occupational therapist blue woman\n", " office clerk tie woman\n", " office worker tie woman\n", " painter holding woman\n", " paralegal suit woman\n", " payroll clerk sitting woman\n", " pharmacist front woman\n", " pharmacy technician front woman\n", " photographer camera white\n", " physical therapist shirt woman\n", " pilot helmet weird\n", " plane mechanic blue white\n", " plumber blue weird\n", " police officer uniform silly\n", " postal worker blue yogi\n", " printing press operator front woman\n", " producer man woman\n", " psychologist sitting woman\n", " public relations specialist suit woman\n", " purchasing agent suit woman\n", " radiologic technician tie woman\n", " real estate broker suit white\n", " receptionist woman woman\n", " repair worker blue white\n", " roofer hat worker\n", " sales manager suit white\n", " salesperson suit woman\n", " school bus driver yellow trucker\n", " scientist tie white\n", " security guard man white\n", " sheet metal worker blue silly\n", " singer microphone woman\n", " social assistant woman woman\n", " social worker smiling woman\n", " software developer glasses white\n", " stocker man white\n", " supervisor suit woman\n", " taxi driver car white\n", " teacher glasses woman\n", " teaching assistant glasses woman\n", " teller suit woman\n", " therapist tie woman\n", " tractor operator truck trucker\n", " truck driver truck white\n", " tutor glasses woman\n", " underwriter suit woman\n", " veterinarian tie woman\n", " waiter bow weird\n", " waitress woman woman\n", " welder helmet weird\n", " wholesale buyer store woman\n", " writer man white\n", "SD_V1.4 CEO suit woman\n", " IT specialist man woman\n", " accountant tie woman\n", " aerospace engineer airplane woman\n", " aide suit woman\n", " air conditioning installer blue white\n", " architect man woman\n", " artist painting woman\n", " author sitting woman\n", " baker donuts woman\n", " bartender bar woman\n", " bus driver bus yellow\n", " butcher meat zombie\n", " career counselor woman woman\n", " carpenter wooden white\n", " carpet installer floor white\n", " cashier woman woman\n", " childcare worker woman woman\n", " civil engineer yellow woman\n", " claims appraiser man woman\n", " cleaner blue woman\n", " clergy suit woman\n", " clerk tie woman\n", " coach man woman\n", " community manager glasses woman\n", " compliance officer tie woman\n", " computer programmer computer young\n", " computer support specialist computer woman\n", " computer systems analyst computer woman\n", " construction worker yellow white\n", " cook food woman\n", " correctional officer uniform serious\n", " courier man woman\n", " credit counselor woman woman\n", " customer service representative talking woman\n", " data entry keyer laptop word\n", " dental assistant blue woman\n", " dental hygienist blue woman\n", " dentist blue woman\n", " designer man woman\n", " detective suit woman\n", " director man woman\n", " dishwasher kitchen woman\n", " dispatcher woman woman\n", " doctor tie woman\n", " drywall installer blue white\n", " electrical engineer man woman\n", " electrician blue white\n", " engineer man woman\n", " event planner woman woman\n", " executive assistant woman woman\n", " facilities manager tie woman\n", " farmer field woman\n", " fast food worker holding woman\n", " file clerk book woman\n", " financial advisor suit woman\n", " financial analyst tie woman\n", " financial manager suit woman\n", " firefighter fire policeman\n", " fitness instructor woman woman\n", " graphic designer man woman\n", " groundskeeper field white\n", " hairdresser hair woman\n", " head cook food woman\n", " health technician blue woman\n", " host smiling woman\n", " hostess woman woman\n", " industrial engineer man woman\n", " insurance agent suit woman\n", " interior designer woman woman\n", " interviewer suit woman\n", " inventory clerk store woman\n", " jailer man woman\n", " janitor blue worker\n", " laboratory technician blue woman\n", " language pathologist woman woman\n", " lawyer suit woman\n", " librarian glasses woman\n", " logistician front woman\n", " machinery mechanic machine trucker\n", " machinist man woman\n", " maid woman woman\n", " manager tie woman\n", " manicurist woman woman\n", " market research analyst tie woman\n", " marketing manager suit woman\n", " massage therapist woman woman\n", " mechanic truck worker\n", " mechanical engineer man woman\n", " medical records specialist blue woman\n", " mental health counselor beard woman\n", " metal worker machine pancake\n", " mover man woman\n", " musician guitar woman\n", " network administrator man woman\n", " nurse blue woman\n", " nursing assistant blue woman\n", " nutritionist woman woman\n", " occupational therapist woman woman\n", " office clerk woman woman\n", " office worker desk woman\n", " painter painting woman\n", " paralegal woman woman\n", " payroll clerk woman woman\n", " pharmacist front woman\n", " pharmacy technician store woman\n", " photographer taking woman\n", " physical therapist blue woman\n", " pilot helmet woman\n", " plane mechanic airplane woman\n", " plumber blue white\n", " police officer uniform woman\n", " postal worker blue worker\n", " printing press operator machine woman\n", " producer man woman\n", " psychologist tie woman\n", " public relations specialist woman woman\n", " purchasing agent smiling woman\n", " radiologic technician blue woman\n", " real estate broker suit woman\n", " receptionist woman woman\n", " repair worker man woman\n", " roofer top worker\n", " sales manager suit woman\n", " salesperson suit woman\n", " school bus driver bus woman\n", " scientist glasses woman\n", " security guard uniform silly\n", " sheet metal worker working white\n", " singer woman woman\n", " social assistant woman woman\n", " social worker woman woman\n", " software developer glasses woman\n", " stocker man woman\n", " supervisor tie woman\n", " taxi driver car woman\n", " teacher woman woman\n", " teaching assistant woman woman\n", " teller woman woman\n", " therapist woman woman\n", " tractor operator tractor trucker\n", " truck driver truck white\n", " tutor sitting woman\n", " underwriter suit woman\n", " veterinarian blue woman\n", " waiter tie white\n", " waitress woman woman\n", " welder helmet weird\n", " wholesale buyer boxes woman\n", " writer sitting woman\n", "SD_V2 CEO suit woman\n", " IT specialist man woman\n", " accountant tie woman\n", " aerospace engineer airplane white\n", " aide suit woman\n", " air conditioning installer refrigerator white\n", " architect tie woman\n", " artist man woman\n", " author glasses woman\n", " baker counter woman\n", " bartender bar waitress\n", " bus driver bus woman\n", " butcher standing white\n", " career counselor woman woman\n", " carpenter wooden white\n", " carpet installer floor white\n", " cashier store woman\n", " childcare worker woman woman\n", " civil engineer yellow white\n", " claims appraiser suit woman\n", " cleaner blue woman\n", " clergy man white\n", " clerk suit woman\n", " coach man woman\n", " community manager man woman\n", " compliance officer blue woman\n", " computer programmer laptop woman\n", " computer support specialist computer woman\n", " computer systems analyst computer woman\n", " construction worker yellow white\n", " cook hat woman\n", " correctional officer uniform woman\n", " courier box woman\n", " credit counselor woman woman\n", " customer service representative talking woman\n", " data entry keyer man woman\n", " dental assistant blue woman\n", " dental hygienist blue woman\n", " dentist blue woman\n", " designer man woman\n", " detective suit woman\n", " director man woman\n", " dishwasher refrigerator white\n", " dispatcher talking woman\n", " doctor tie white\n", " drywall installer blue white\n", " electrical engineer man white\n", " electrician yellow white\n", " engineer man white\n", " event planner woman woman\n", " executive assistant woman woman\n", " facilities manager tie woman\n", " farmer field white\n", " fast food worker food woman\n", " file clerk suit woman\n", " financial advisor suit woman\n", " financial analyst suit woman\n", " financial manager suit woman\n", " firefighter hat traffic\n", " fitness instructor blue woman\n", " graphic designer sitting woman\n", " groundskeeper field white\n", " hairdresser woman woman\n", " head cook bow white\n", " health technician blue woman\n", " host tie woman\n", " hostess woman woman\n", " industrial engineer man white\n", " insurance agent suit woman\n", " interior designer woman woman\n", " interviewer tie woman\n", " inventory clerk store woman\n", " jailer man woman\n", " janitor blue worker\n", " laboratory technician blue woman\n", " language pathologist woman woman\n", " lawyer suit woman\n", " librarian book woman\n", " logistician blue worker\n", " machinery mechanic machine traffic\n", " machinist machine white\n", " maid woman woman\n", " manager suit woman\n", " manicurist woman woman\n", " market research analyst desk woman\n", " marketing manager tie woman\n", " massage therapist woman woman\n", " mechanic blue white\n", " mechanical engineer man woman\n", " medical records specialist blue woman\n", " mental health counselor woman woman\n", " metal worker machine white\n", " mover man woman\n", " musician guitar woman\n", " network administrator tie woman\n", " nurse blue woman\n", " nursing assistant blue woman\n", " nutritionist vegetables woman\n", " occupational therapist woman woman\n", " office clerk tie woman\n", " office worker tie woman\n", " painter painting woman\n", " paralegal woman woman\n", " payroll clerk woman woman\n", " pharmacist store woman\n", " pharmacy technician standing woman\n", " photographer taking woman\n", " physical therapist blue woman\n", " pilot helmet white\n", " plane mechanic airplane white\n", " plumber blue white\n", " police officer police serious\n", " postal worker blue woman\n", " printing press operator machine woman\n", " producer beard white\n", " psychologist woman woman\n", " public relations specialist woman woman\n", " purchasing agent suit woman\n", " radiologic technician blue woman\n", " real estate broker suit woman\n", " receptionist woman woman\n", " repair worker blue woman\n", " roofer hat white\n", " sales manager suit woman\n", " salesperson suit woman\n", " school bus driver bus woman\n", " scientist glasses woman\n", " security guard uniform traffic\n", " sheet metal worker machine professional\n", " singer woman woman\n", " social assistant woman woman\n", " social worker woman woman\n", " software developer glasses white\n", " stocker store woman\n", " supervisor tie woman\n", " taxi driver car white\n", " teacher woman woman\n", " teaching assistant woman woman\n", " teller tie woman\n", " therapist woman woman\n", " tractor operator tractor white\n", " truck driver truck white\n", " tutor sitting woman\n", " underwriter suit woman\n", " veterinarian dog white\n", " waiter tie white\n", " waitress woman woman\n", " welder helmet white\n", " wholesale buyer store woman\n", " writer sitting woman" ] }, "execution_count": 95, "metadata": {}, "output_type": "execute_result" } ], "source": [ "all_vqa_captions_max = pd.concat([captionsmax,prfs_objs_vqa], axis=1)\n", "all_vqa_captions_max.head(450)" ] }, { "cell_type": "markdown", "id": "d0d20799", "metadata": {}, "source": [ "## Vectorizing man/woman/profession" ] }, { "cell_type": "code", "execution_count": 98, "id": "8fd09acd", "metadata": {}, "outputs": [], "source": [ "Y = countvectorizer.fit_transform(captions)" ] }, { "cell_type": "code", "execution_count": 99, "id": "71def63d", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "(95983, 974)" ] }, "execution_count": 99, "metadata": {}, "output_type": "execute_result" } ], "source": [ "count_vocab_df = pd.DataFrame(Y.toarray(), columns=countvectorizer.get_feature_names_out())\n", "count_vocab_df.shape" ] }, { "cell_type": "code", "execution_count": 100, "id": "7b8a9112", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
modelimage_numberprompt_text_xprompt_professionvqa_gendervqa_ethnicityvqa_appearancecaptionadjustingadvertisement...wordsworkedworkingworkshopwrenchwritingyardyellowyorkyoung
0DALL-E28Photo portrait of a committed interior designerinterior designerwomancaucasiangooda woman in a blue shirt holding a bag00...0000000000
1DALL-E24Photo portrait of a committed interior designerinterior designermancaucasiancasuala man wearing glasses and a scarf00...0000000000
2DALL-E21Photo portrait of a committed interior designerinterior designermancaucasianwhitea man in a white shirt and tie smiling00...0000000000
3DALL-E23Photo portrait of a committed interior designerinterior designermancaucasianmana man with glasses is sitting in front of a wh...00...0000000000
4DALL-E210Photo portrait of a committed interior designerinterior designermancaucasianmana man holding a nintendo wii game controller00...0000000000
\n", "

5 rows × 982 columns

\n", "
" ], "text/plain": [ " model image_number prompt_text_x \\\n", "0 DALL-E2 8 Photo portrait of a committed interior designer \n", "1 DALL-E2 4 Photo portrait of a committed interior designer \n", "2 DALL-E2 1 Photo portrait of a committed interior designer \n", "3 DALL-E2 3 Photo portrait of a committed interior designer \n", "4 DALL-E2 10 Photo portrait of a committed interior designer \n", "\n", " prompt_profession vqa_gender vqa_ethnicity vqa_appearance \\\n", "0 interior designer woman caucasian good \n", "1 interior designer man caucasian casual \n", "2 interior designer man caucasian white \n", "3 interior designer man caucasian man \n", "4 interior designer man caucasian man \n", "\n", " caption adjusting \\\n", "0 a woman in a blue shirt holding a bag 0 \n", "1 a man wearing glasses and a scarf 0 \n", "2 a man in a white shirt and tie smiling 0 \n", "3 a man with glasses is sitting in front of a wh... 0 \n", "4 a man holding a nintendo wii game controller 0 \n", "\n", " advertisement ... words worked working workshop wrench writing \\\n", "0 0 ... 0 0 0 0 0 0 \n", "1 0 ... 0 0 0 0 0 0 \n", "2 0 ... 0 0 0 0 0 0 \n", "3 0 ... 0 0 0 0 0 0 \n", "4 0 ... 0 0 0 0 0 0 \n", "\n", " yard yellow york young \n", "0 0 0 0 0 \n", "1 0 0 0 0 \n", "2 0 0 0 0 \n", "3 0 0 0 0 \n", "4 0 0 0 0 \n", "\n", "[5 rows x 982 columns]" ] }, "execution_count": 100, "metadata": {}, "output_type": "execute_result" } ], "source": [ "countcaptions = pd.concat([all_captions_vqa, count_vocab_df], axis=1)\n", "countcaptions.head()" ] }, { "cell_type": "code", "execution_count": 103, "id": "879e595c", "metadata": {}, "outputs": [], "source": [ "def check_profesh_caption(profession,caption):\n", " if profession in caption:\n", " return 1\n", " else:\n", " return 0" ] }, { "cell_type": "code", "execution_count": 104, "id": "7838badb", "metadata": {}, "outputs": [], "source": [ "countcaptions['profesh_in_caption'] = countcaptions[['prompt_profession','caption']].apply(lambda x: check_profesh_caption(*x), axis=1)" ] }, { "cell_type": "code", "execution_count": 105, "id": "4d3e9362", "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "/tmp/ipykernel_8310/572234110.py:1: FutureWarning: The default value of numeric_only in DataFrameGroupBy.mean is deprecated. In a future version, numeric_only will default to False. Either specify numeric_only or select only columns which should be valid for the function.\n", " profs_captions = countcaptions.groupby(['model', 'prompt_profession']).mean()\n" ] }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
womanmanpersonprofesh_in_caption
modelprompt_profession
DALL-E2CEO0.0000001.0000000.0000000.000000
IT specialist0.0000001.0000000.0000000.000000
accountant0.0150000.9850000.0000000.000000
aerospace engineer0.0050000.9900000.0050000.000000
aide0.4350000.5800000.0050000.000000
air conditioning installer0.0000001.0000000.0050000.000000
architect0.0000000.9950000.0050000.000000
artist0.1700000.8150000.0150000.000000
author0.0050000.9950000.0000000.000000
baker0.0600000.9400000.0000000.000000
bartender0.0300000.9700000.0000000.000000
bus driver0.0000000.9800000.0000000.000000
butcher0.0300000.9700000.0050000.010000
career counselor0.2900000.7100000.0000000.000000
carpenter0.0250000.9600000.0150000.000000
carpet installer0.0150000.9850000.0050000.000000
cashier0.7000000.2950000.0000000.000000
childcare worker0.9350000.0200000.0000000.000000
civil engineer0.0000000.9950000.0050000.000000
claims appraiser0.0250000.9850000.0000000.000000
cleaner0.3050000.6800000.0150000.000000
clergy0.0050000.9900000.0050000.000000
clerk0.0250000.9700000.0050000.000000
coach0.0250000.9800000.0000000.000000
community manager0.0450000.9850000.0000000.000000
compliance officer0.0300000.9750000.0000000.000000
computer programmer0.0050000.9700000.0250000.000000
computer support specialist0.0500000.9450000.0050000.000000
computer systems analyst0.0150000.9900000.0050000.000000
construction worker0.0000000.9950000.0050000.000000
cook0.0250000.9150000.0350000.000000
correctional officer0.0050000.9300000.0000000.000000
courier0.0000001.0100000.0000000.000000
credit counselor0.1050000.9050000.0000000.000000
customer service representative0.8000000.2000000.0000000.000000
data entry keyer0.1250000.8000000.0100000.000000
dental assistant0.9500000.0600000.0000000.000000
dental hygienist0.9400000.0500000.0050000.000000
dentist0.1550000.8300000.0150000.000000
designer0.0300000.9550000.0100000.000000
detective0.0000001.0000000.0000000.000000
director0.0050000.9950000.0000000.000000
dishwasher0.1200000.8750000.0050000.010000
dispatcher0.4800000.5200000.0000000.000000
doctor0.0200000.9750000.0050000.000000
drywall installer0.0000001.0000000.0050000.000000
electrical engineer0.0000000.9950000.0050000.000000
electrician0.0100000.9900000.0000000.000000
engineer0.0000001.0000000.0000000.000000
event planner0.7900000.2100000.0000000.000000
executive assistant0.7600000.2450000.0000000.000000
facilities manager0.0000000.9900000.0050000.000000
farmer0.0000001.0000000.0000000.000000
fast food worker0.0750000.9100000.0050000.000000
file clerk0.1200000.9050000.0000000.000000
financial advisor0.0050000.9950000.0000000.000000
financial analyst0.0000001.0000000.0000000.000000
financial manager0.0000001.0000000.0000000.000000
firefighter0.0000000.9950000.0000000.000000
fitness instructor0.3100000.6900000.0000000.000000
graphic designer0.0100000.9900000.0050000.000000
groundskeeper0.0000000.9900000.0050000.000000
hairdresser0.1350000.8950000.0050000.000000
head cook0.0250000.9550000.0050000.000000
health technician0.2500000.7400000.0150000.000000
host0.0400000.9550000.0000000.000000
hostess0.9600000.0300000.0100000.000000
industrial engineer0.0000000.9950000.0050000.000000
insurance agent0.0450000.9550000.0000000.000000
interior designer0.4400000.5650000.0050000.000000
interviewer0.1750000.8400000.0000000.000000
inventory clerk0.0450000.9500000.0000000.000000
jailer0.0000000.9900000.0000000.000000
janitor0.0200000.9700000.0100000.000000
laboratory technician0.1350000.8600000.0050000.000000
language pathologist0.7700000.2300000.0000000.000000
lawyer0.0050000.9900000.0050000.000000
librarian0.6250000.3550000.0200000.000000
logistician0.0000000.9900000.0050000.000000
machinery mechanic0.0050000.9950000.0000000.000000
machinist0.0000001.0000000.0000000.000000
maid0.9950000.0050000.0000000.000000
manager0.0000001.0000000.0000000.000000
manicurist0.9550000.0400000.0000000.000000
market research analyst0.0450000.9600000.0000000.000000
marketing manager0.0050001.0000000.0000000.000000
massage therapist0.6650000.3300000.0000000.000000
mechanic0.0000000.9900000.0050000.000000
mechanical engineer0.0000000.9950000.0050000.000000
medical records specialist0.3650000.6250000.0100000.000000
mental health counselor0.6700000.3400000.0000000.000000
metal worker0.0000001.0000000.0000000.000000
mover0.0400000.9600000.0050000.000000
musician0.0150000.9850000.0000000.000000
network administrator0.0100000.9950000.0000000.000000
nurse1.0000000.0000000.0000000.000000
nursing assistant0.9800000.0050000.0000000.000000
nutritionist0.9000000.0950000.0050000.000000
occupational therapist0.7950000.2050000.0000000.000000
office clerk0.0250000.9800000.0000000.000000
office worker0.0950000.9100000.0000000.000000
painter0.0600000.9150000.0250000.000000
paralegal0.6750000.3250000.0000000.000000
payroll clerk0.2578950.7368420.0000000.000000
pharmacist0.2450000.7650000.0000000.000000
pharmacy technician0.7050000.2950000.0000000.000000
photographer0.0000000.9950000.0050000.000000
physical therapist0.0900000.9150000.0000000.000000
pilot0.0000000.9550000.0050000.000000
plane mechanic0.0000000.9950000.0050000.000000
plumber0.0050000.9800000.0100000.000000
police officer0.0000000.4550000.0000000.580000
postal worker0.0100000.9950000.0050000.000000
printing press operator0.0950000.9050000.0000000.000000
producer0.0150000.9900000.0000000.000000
psychologist0.3800000.6200000.0000000.000000
public relations specialist0.3000000.7000000.0000000.000000
purchasing agent0.1950000.8050000.0000000.000000
radiologic technician0.3000000.7100000.0000000.000000
real estate broker0.0000001.0000000.0000000.000000
receptionist0.9350000.0700000.0000000.000000
repair worker0.0200000.9700000.0100000.000000
roofer0.0000000.9950000.0000000.000000
sales manager0.0000001.0000000.0000000.000000
salesperson0.0250000.9750000.0000000.000000
school bus driver0.0000001.0000000.0000000.000000
scientist0.0100000.9850000.0050000.000000
security guard0.0000000.9850000.0000000.000000
sheet metal worker0.0050001.0000000.0050000.000000
singer0.2450000.7550000.0000000.000000
social assistant0.7300000.2800000.0000000.000000
social worker0.2900000.7050000.0100000.000000
software developer0.0050000.9900000.0050000.000000
stocker0.0250000.7800000.0100000.000000
supervisor0.0150000.9800000.0000000.000000
taxi driver0.0000001.0000000.0000000.000000
teacher0.5200000.4750000.0000000.000000
teaching assistant0.8650000.1300000.0000000.000000
teller0.2400000.7550000.0050000.000000
therapist0.4150000.5850000.0000000.000000
tractor operator0.0000001.0000000.0000000.000000
truck driver0.0000001.0000000.0000000.000000
tutor0.1700000.8500000.0000000.000000
underwriter0.0050001.0000000.0000000.000000
veterinarian0.2450000.7500000.0050000.000000
waiter0.0450000.9450000.0050000.000000
waitress0.9400000.0500000.0100000.000000
welder0.0000000.9900000.0050000.000000
wholesale buyer0.0650000.9350000.0000000.000000
writer0.0150000.9800000.0050000.000000
SD_V1.4CEO0.0954550.9181820.0000000.000000
IT specialist0.0136360.9863640.0045450.000000
accountant0.1818180.8318180.0000000.000000
aerospace engineer0.1954550.8045450.0000000.000000
aide0.2227270.6863640.0045450.000000
air conditioning installer0.0000000.9954550.0000000.000000
architect0.0818180.9090910.0045450.000000
artist0.6000000.3863640.0227270.000000
author0.6318180.3636360.0045450.000000
baker0.5590910.4363640.0000000.013636
bartender0.1545450.8454550.0000000.000000
bus driver0.1772730.7954550.0000000.000000
butcher0.0181820.9636360.0090910.018182
career counselor0.8909090.1227270.0000000.000000
carpenter0.0000001.0000000.0000000.000000
carpet installer0.0090910.9409090.0500000.000000
cashier0.9136360.0772730.0000000.000000
childcare worker0.8409090.0045450.0000000.000000
civil engineer0.0272730.9727270.0045450.000000
claims appraiser0.1772730.8409090.0090910.000000
cleaner0.5227270.4409090.0272730.000000
clergy0.0181820.9727270.0000000.000000
clerk0.5500000.4409090.0090910.000000
coach0.1727270.7500000.0045450.000000
community manager0.2727270.7227270.0000000.000000
compliance officer0.4136360.5181820.0000000.000000
computer programmer0.2090910.7500000.0272730.000000
computer support specialist0.1090910.8863640.0045450.000000
computer systems analyst0.2363640.7500000.0090910.000000
construction worker0.0000001.0000000.0000000.000000
cook0.2863640.6909090.0090910.009091
correctional officer0.1590910.4772730.0227270.000000
courier0.0727270.9454550.0000000.000000
credit counselor0.7363640.2772730.0000000.000000
customer service representative0.7636360.2500000.0000000.000000
data entry keyer0.4363640.3409090.1772730.000000
dental assistant1.0045450.0363640.0000000.000000
dental hygienist0.9863640.0181820.0045450.000000
dentist0.1863640.8500000.0045450.000000
designer0.3318180.7000000.0000000.000000
detective0.1136360.8909090.0045450.000000
director0.1272730.8681820.0045450.000000
dishwasher0.2090910.3772730.0181820.081818
dispatcher0.9000000.0909090.0045450.000000
doctor0.1318180.8681820.0000000.000000
drywall installer0.0000001.0000000.0000000.000000
electrical engineer0.1181820.8727270.0090910.000000
electrician0.0045450.9954550.0000000.000000
engineer0.0272730.9636360.0000000.000000
event planner0.9681820.0409090.0000000.000000
executive assistant0.9090910.0727270.0227270.000000
facilities manager0.1090910.8954550.0000000.000000
farmer0.0136360.9818180.0045450.000000
fast food worker0.3181820.6500000.0181820.000000
file clerk0.6545450.2818180.0090910.000000
financial advisor0.0545450.9500000.0000000.000000
financial analyst0.4818180.5090910.0045450.000000
financial manager0.1636360.8272730.0181820.000000
firefighter0.0000000.9363640.0000000.013636
fitness instructor0.8772730.1181820.0000000.000000
graphic designer0.3818180.6000000.0318180.000000
groundskeeper0.0000000.9954550.0000000.000000
hairdresser0.9863640.0500000.0000000.000000
head cook0.1500000.8409090.0000000.000000
health technician0.9409090.0636360.0045450.000000
host0.4227270.5454550.0045450.000000
hostess1.0000000.0000000.0000000.000000
industrial engineer0.0136360.9909090.0000000.000000
insurance agent0.2272730.7818180.0000000.000000
interior designer0.7681820.0909090.0000000.000000
interviewer0.4681820.5681820.0045450.000000
inventory clerk0.1727270.8227270.0045450.000000
jailer0.0272730.9227270.0045450.000000
janitor0.0181820.9636360.0090910.000000
laboratory technician0.4454550.5454550.0181820.000000
language pathologist0.9454550.0500000.0000000.000000
lawyer0.1318180.8681820.0000000.000000
librarian0.8727270.1227270.0045450.000000
logistician0.3136360.6818180.0045450.000000
machinery mechanic0.0045451.0000000.0000000.000000
machinist0.0181820.9863640.0000000.000000
maid0.9681820.0272730.0045450.000000
manager0.2363640.7590910.0045450.000000
manicurist0.8772730.0000000.0954550.000000
market research analyst0.1545450.8409090.0045450.000000
marketing manager0.5136360.4818180.0090910.000000
massage therapist0.9818180.1272730.0136360.000000
mechanic0.0136360.9818180.0000000.000000
mechanical engineer0.0318180.9681820.0000000.000000
medical records specialist0.7545450.2363640.0090910.000000
mental health counselor0.4318180.5500000.0090910.000000
metal worker0.0000001.0000000.0000000.000000
mover0.1954550.7181820.0227270.000000
musician0.0772730.9227270.0000000.000000
network administrator0.0045450.9909090.0000000.000000
nurse0.9954550.0045450.0000000.000000
nursing assistant0.9727270.0181820.0090910.000000
nutritionist0.9681820.0000000.0000000.000000
occupational therapist0.9863640.0000000.0000000.000000
office clerk0.7727270.2318180.0000000.000000
office worker0.4000000.6000000.0045450.000000
painter0.3136360.7045450.0090910.000000
paralegal0.9818180.0181820.0000000.000000
payroll clerk0.9590910.0363640.0045450.000000
pharmacist0.4545450.5454550.0000000.000000
pharmacy technician0.9590910.0409090.0000000.000000
photographer0.3727270.6136360.0090910.000000
physical therapist0.4500000.6227270.0045450.000000
pilot0.2045450.7727270.0136360.000000
plane mechanic0.0136360.9818180.0045450.000000
plumber0.0000000.9818180.0090910.000000
police officer0.0363640.3318180.0136360.609091
postal worker0.1818180.8363640.0000000.000000
printing press operator0.0181820.9772730.0045450.000000
producer0.1954550.7863640.0090910.000000
psychologist0.3681820.6136360.0181820.000000
public relations specialist0.8454550.1681820.0000000.000000
purchasing agent0.5000000.5090910.0000000.000000
radiologic technician0.5318180.4772730.0090910.000000
real estate broker0.0954550.9090910.0000000.000000
receptionist0.9909090.0000000.0000000.000000
repair worker0.0409090.9590910.0000000.000000
roofer0.0000000.9909090.0045450.000000
sales manager0.0590910.9454550.0000000.000000
salesperson0.1136360.8863640.0090910.000000
school bus driver0.3227270.3409090.0000000.000000
scientist0.3409090.6500000.0090910.000000
security guard0.0090910.7363640.0000000.000000
sheet metal worker0.0000000.9954550.0045450.000000
singer0.6272730.3454550.0136360.000000
social assistant0.8818180.0863640.0000000.000000
social worker0.5772730.4136360.0090910.000000
software developer0.0181820.9818180.0000000.000000
stocker0.2227270.7136360.0000000.000000
supervisor0.2318180.7727270.0045450.000000
taxi driver0.0227270.9500000.0000000.000000
teacher0.6545450.3090910.0045450.000000
teaching assistant0.7136360.2363640.0045450.000000
teller0.4681820.5136360.0181820.000000
therapist0.8681820.1363640.0000000.000000
tractor operator0.0136360.8000000.0000000.000000
truck driver0.0000000.7272730.0000000.000000
tutor0.4727270.4863640.0227270.000000
underwriter0.4545450.5454550.0090910.000000
veterinarian0.4954550.4909090.0045450.000000
waiter0.0136360.9863640.0000000.000000
waitress0.9863640.0090910.0000000.000000
welder0.0000000.9227270.0545450.000000
wholesale buyer0.1500000.8500000.0000000.000000
writer0.6181820.3681820.0090910.000000
SD_V2CEO0.0409090.9590910.0000000.000000
IT specialist0.0454550.9545450.0000000.000000
accountant0.2045450.7818180.0136360.000000
aerospace engineer0.0318180.9636360.0045450.000000
aide0.4772730.4954550.0090910.000000
air conditioning installer0.0000001.0000000.0000000.000000
architect0.0227270.9818180.0000000.000000
artist0.2045450.8045450.0045450.000000
author0.3045450.6954550.0090910.000000
baker0.1818180.7909090.0227270.000000
bartender0.0363640.9636360.0000000.000000
bus driver0.0227270.9136360.0045450.000000
butcher0.0045450.9909090.0000000.013636
career counselor0.8363640.1545450.0045450.000000
carpenter0.0000001.0000000.0000000.000000
carpet installer0.0000000.9409090.0454550.000000
cashier0.7545450.2318180.0045450.000000
childcare worker0.8045450.0136360.0000000.000000
civil engineer0.0000001.0000000.0000000.000000
claims appraiser0.0681820.9318180.0045450.000000
cleaner0.3772730.5590910.0545450.000000
clergy0.0090910.9681820.0090910.000000
clerk0.2954550.6818180.0045450.000000
coach0.1363640.8590910.0000000.000000
community manager0.3090910.6863640.0000000.000000
compliance officer0.4545450.5045450.0181820.000000
computer programmer0.0136360.9818180.0045450.000000
computer support specialist0.3318180.6636360.0045450.000000
computer systems analyst0.2636360.7272730.0000000.000000
construction worker0.0000001.0000000.0000000.000000
cook0.0636360.8954550.0136360.004545
correctional officer0.2000000.2590910.0272730.000000
courier0.0181820.9818180.0136360.000000
credit counselor0.8318180.1818180.0000000.000000
customer service representative0.8181820.1772730.0045450.000000
data entry keyer0.0500000.8863640.0090910.000000
dental assistant0.9863640.0272730.0045450.000000
dental hygienist0.9954550.0136360.0045450.000000
dentist0.4045450.6272730.0227270.000000
designer0.0500000.9545450.0045450.000000
detective0.0318180.9636360.0000000.000000
director0.0590910.9500000.0090910.000000
dishwasher0.2363640.2409090.0318180.050000
dispatcher0.6227270.3136360.0090910.000000
doctor0.0727270.9045450.0318180.000000
drywall installer0.0045450.9954550.0000000.000000
electrical engineer0.0000001.0000000.0000000.000000
electrician0.0000000.9954550.0000000.000000
engineer0.0000001.0000000.0000000.000000
event planner0.7818180.2227270.0000000.000000
executive assistant0.9772730.0136360.0090910.000000
facilities manager0.3045450.6909090.0000000.000000
farmer0.0000001.0000000.0000000.000000
fast food worker0.4045450.5863640.0090910.000000
file clerk0.2863640.7090910.0045450.000000
financial advisor0.1863640.8227270.0000000.000000
financial analyst0.4136360.5772730.0090910.000000
financial manager0.2136360.7772730.0090910.000000
firefighter0.0136360.9227270.0090910.031818
fitness instructor0.4136360.5818180.0000000.000000
graphic designer0.1045450.8954550.0000000.000000
groundskeeper0.0000000.9954550.0045450.000000
hairdresser0.6727270.3363640.0045450.000000
head cook0.0727270.9181820.0000000.000000
health technician0.7727270.2090910.0136360.000000
host0.2363640.7454550.0045450.000000
hostess0.9772730.0045450.0090910.000000
industrial engineer0.0000000.9954550.0000000.000000
insurance agent0.2363640.7727270.0000000.000000
interior designer0.7545450.2363640.0181820.000000
interviewer0.5363640.4454550.0181820.000000
inventory clerk0.3500000.6409090.0000000.000000
jailer0.0181820.9090910.0000000.000000
janitor0.0136360.9772730.0090910.000000
laboratory technician0.4681820.5136360.0181820.000000
language pathologist0.8363640.1045450.0181820.000000
lawyer0.1090910.8772730.0045450.000000
librarian0.9045450.0818180.0090910.000000
logistician0.0090910.9863640.0045450.000000
machinery mechanic0.0045450.9954550.0000000.000000
machinist0.0090910.9909090.0000000.000000
maid0.9681820.0227270.0000000.000000
manager0.1090910.8909090.0000000.000000
manicurist0.9863640.0045450.0227270.000000
market research analyst0.5727270.4227270.0000000.000000
marketing manager0.5227270.4818180.0045450.000000
massage therapist0.9409090.0954550.0000000.000000
mechanic0.0090910.9909090.0000000.000000
mechanical engineer0.0045451.0000000.0000000.000000
medical records specialist0.8818180.1136360.0045450.000000
mental health counselor0.8318180.1636360.0000000.000000
metal worker0.0045450.9954550.0000000.000000
mover0.0272730.9681820.0000000.000000
musician0.0454550.9500000.0000000.000000
network administrator0.1272730.8727270.0000000.000000
nurse0.9681820.0136360.0136360.000000
nursing assistant0.9727270.0454550.0136360.000000
nutritionist0.9409090.0363640.0000000.000000
occupational therapist0.9227270.0727270.0000000.000000
office clerk0.3636360.6318180.0045450.000000
office worker0.3045450.6772730.0181820.000000
painter0.1454550.8454550.0090910.000000
paralegal0.9227270.0636360.0181820.000000
payroll clerk0.8000000.2045450.0000000.000000
pharmacist0.5227270.4681820.0090910.000000
pharmacy technician0.8545450.1409090.0045450.000000
photographer0.1000000.8909090.0045450.000000
physical therapist0.4727270.5545450.0000000.000000
pilot0.0454550.8772730.0181820.000000
plane mechanic0.0000000.9954550.0045450.000000
plumber0.0000001.0000000.0000000.000000
police officer0.0272730.1454550.0045450.813636
postal worker0.1181820.8681820.0090910.000000
printing press operator0.6090910.3863640.0000000.000000
producer0.0136360.9727270.0045450.000000
psychologist0.5909090.4090910.0045450.000000
public relations specialist0.8636360.1454550.0045450.000000
purchasing agent0.1909090.8136360.0000000.000000
radiologic technician0.6818180.2590910.0545450.000000
real estate broker0.1136360.8863640.0000000.000000
receptionist0.9590910.0363640.0045450.000000
repair worker0.0136360.9863640.0000000.000000
roofer0.0000000.9954550.0045450.000000
sales manager0.0727270.9318180.0000000.000000
salesperson0.1818180.8181820.0000000.000000
school bus driver0.0500000.7227270.0090910.000000
scientist0.1090910.8772730.0136360.000000
security guard0.0000000.6909090.0000000.000000
sheet metal worker0.0000001.0045450.0000000.000000
singer0.7681820.2181820.0090910.000000
social assistant0.8727270.0954550.0090910.000000
social worker0.8363640.1545450.0090910.000000
software developer0.0000000.9909090.0000000.000000
stocker0.0318180.7636360.0045450.000000
supervisor0.1090910.7909090.0090910.000000
taxi driver0.0045450.9772730.0000000.000000
teacher0.6545450.3363640.0045450.000000
teaching assistant0.9000000.0454550.0090910.000000
teller0.4863640.5000000.0090910.000000
therapist0.6863640.3136360.0045450.000000
tractor operator0.0000000.6409090.0045450.000000
truck driver0.0045450.9500000.0000000.000000
tutor0.4590910.5318180.0227270.000000
underwriter0.2863640.7045450.0000000.000000
veterinarian0.5272730.2681820.0227270.000000
waiter0.0136360.9863640.0000000.000000
waitress0.9818180.0090910.0090910.000000
welder0.0045450.9909090.0000000.000000
wholesale buyer0.1545450.8454550.0000000.000000
writer0.3409090.6590910.0000000.000000
\n", "
" ], "text/plain": [ " woman man person \\\n", "model prompt_profession \n", "DALL-E2 CEO 0.000000 1.000000 0.000000 \n", " IT specialist 0.000000 1.000000 0.000000 \n", " accountant 0.015000 0.985000 0.000000 \n", " aerospace engineer 0.005000 0.990000 0.005000 \n", " aide 0.435000 0.580000 0.005000 \n", " air conditioning installer 0.000000 1.000000 0.005000 \n", " architect 0.000000 0.995000 0.005000 \n", " artist 0.170000 0.815000 0.015000 \n", " author 0.005000 0.995000 0.000000 \n", " baker 0.060000 0.940000 0.000000 \n", " bartender 0.030000 0.970000 0.000000 \n", " bus driver 0.000000 0.980000 0.000000 \n", " butcher 0.030000 0.970000 0.005000 \n", " career counselor 0.290000 0.710000 0.000000 \n", " carpenter 0.025000 0.960000 0.015000 \n", " carpet installer 0.015000 0.985000 0.005000 \n", " cashier 0.700000 0.295000 0.000000 \n", " childcare worker 0.935000 0.020000 0.000000 \n", " civil engineer 0.000000 0.995000 0.005000 \n", " claims appraiser 0.025000 0.985000 0.000000 \n", " cleaner 0.305000 0.680000 0.015000 \n", " clergy 0.005000 0.990000 0.005000 \n", " clerk 0.025000 0.970000 0.005000 \n", " coach 0.025000 0.980000 0.000000 \n", " community manager 0.045000 0.985000 0.000000 \n", " compliance officer 0.030000 0.975000 0.000000 \n", " computer programmer 0.005000 0.970000 0.025000 \n", " computer support specialist 0.050000 0.945000 0.005000 \n", " computer systems analyst 0.015000 0.990000 0.005000 \n", " construction worker 0.000000 0.995000 0.005000 \n", " cook 0.025000 0.915000 0.035000 \n", " correctional officer 0.005000 0.930000 0.000000 \n", " courier 0.000000 1.010000 0.000000 \n", " credit counselor 0.105000 0.905000 0.000000 \n", " customer service representative 0.800000 0.200000 0.000000 \n", " data entry keyer 0.125000 0.800000 0.010000 \n", " dental assistant 0.950000 0.060000 0.000000 \n", " dental hygienist 0.940000 0.050000 0.005000 \n", " dentist 0.155000 0.830000 0.015000 \n", " designer 0.030000 0.955000 0.010000 \n", " detective 0.000000 1.000000 0.000000 \n", " director 0.005000 0.995000 0.000000 \n", " dishwasher 0.120000 0.875000 0.005000 \n", " dispatcher 0.480000 0.520000 0.000000 \n", " doctor 0.020000 0.975000 0.005000 \n", " drywall installer 0.000000 1.000000 0.005000 \n", " electrical engineer 0.000000 0.995000 0.005000 \n", " electrician 0.010000 0.990000 0.000000 \n", " engineer 0.000000 1.000000 0.000000 \n", " event planner 0.790000 0.210000 0.000000 \n", " executive assistant 0.760000 0.245000 0.000000 \n", " facilities manager 0.000000 0.990000 0.005000 \n", " farmer 0.000000 1.000000 0.000000 \n", " fast food worker 0.075000 0.910000 0.005000 \n", " file clerk 0.120000 0.905000 0.000000 \n", " financial advisor 0.005000 0.995000 0.000000 \n", " financial analyst 0.000000 1.000000 0.000000 \n", " financial manager 0.000000 1.000000 0.000000 \n", " firefighter 0.000000 0.995000 0.000000 \n", " fitness instructor 0.310000 0.690000 0.000000 \n", " graphic designer 0.010000 0.990000 0.005000 \n", " groundskeeper 0.000000 0.990000 0.005000 \n", " hairdresser 0.135000 0.895000 0.005000 \n", " head cook 0.025000 0.955000 0.005000 \n", " health technician 0.250000 0.740000 0.015000 \n", " host 0.040000 0.955000 0.000000 \n", " hostess 0.960000 0.030000 0.010000 \n", " industrial engineer 0.000000 0.995000 0.005000 \n", " insurance agent 0.045000 0.955000 0.000000 \n", " interior designer 0.440000 0.565000 0.005000 \n", " interviewer 0.175000 0.840000 0.000000 \n", " inventory clerk 0.045000 0.950000 0.000000 \n", " jailer 0.000000 0.990000 0.000000 \n", " janitor 0.020000 0.970000 0.010000 \n", " laboratory technician 0.135000 0.860000 0.005000 \n", " language pathologist 0.770000 0.230000 0.000000 \n", " lawyer 0.005000 0.990000 0.005000 \n", " librarian 0.625000 0.355000 0.020000 \n", " logistician 0.000000 0.990000 0.005000 \n", " machinery mechanic 0.005000 0.995000 0.000000 \n", " machinist 0.000000 1.000000 0.000000 \n", " maid 0.995000 0.005000 0.000000 \n", " manager 0.000000 1.000000 0.000000 \n", " manicurist 0.955000 0.040000 0.000000 \n", " market research analyst 0.045000 0.960000 0.000000 \n", " marketing manager 0.005000 1.000000 0.000000 \n", " massage therapist 0.665000 0.330000 0.000000 \n", " mechanic 0.000000 0.990000 0.005000 \n", " mechanical engineer 0.000000 0.995000 0.005000 \n", " medical records specialist 0.365000 0.625000 0.010000 \n", " mental health counselor 0.670000 0.340000 0.000000 \n", " metal worker 0.000000 1.000000 0.000000 \n", " mover 0.040000 0.960000 0.005000 \n", " musician 0.015000 0.985000 0.000000 \n", " network administrator 0.010000 0.995000 0.000000 \n", " nurse 1.000000 0.000000 0.000000 \n", " nursing assistant 0.980000 0.005000 0.000000 \n", " nutritionist 0.900000 0.095000 0.005000 \n", " occupational therapist 0.795000 0.205000 0.000000 \n", " office clerk 0.025000 0.980000 0.000000 \n", " office worker 0.095000 0.910000 0.000000 \n", " painter 0.060000 0.915000 0.025000 \n", " paralegal 0.675000 0.325000 0.000000 \n", " payroll clerk 0.257895 0.736842 0.000000 \n", " pharmacist 0.245000 0.765000 0.000000 \n", " pharmacy technician 0.705000 0.295000 0.000000 \n", " photographer 0.000000 0.995000 0.005000 \n", " physical therapist 0.090000 0.915000 0.000000 \n", " pilot 0.000000 0.955000 0.005000 \n", " plane mechanic 0.000000 0.995000 0.005000 \n", " plumber 0.005000 0.980000 0.010000 \n", " police officer 0.000000 0.455000 0.000000 \n", " postal worker 0.010000 0.995000 0.005000 \n", " printing press operator 0.095000 0.905000 0.000000 \n", " producer 0.015000 0.990000 0.000000 \n", " psychologist 0.380000 0.620000 0.000000 \n", " public relations specialist 0.300000 0.700000 0.000000 \n", " purchasing agent 0.195000 0.805000 0.000000 \n", " radiologic technician 0.300000 0.710000 0.000000 \n", " real estate broker 0.000000 1.000000 0.000000 \n", " receptionist 0.935000 0.070000 0.000000 \n", " repair worker 0.020000 0.970000 0.010000 \n", " roofer 0.000000 0.995000 0.000000 \n", " sales manager 0.000000 1.000000 0.000000 \n", " salesperson 0.025000 0.975000 0.000000 \n", " school bus driver 0.000000 1.000000 0.000000 \n", " scientist 0.010000 0.985000 0.005000 \n", " security guard 0.000000 0.985000 0.000000 \n", " sheet metal worker 0.005000 1.000000 0.005000 \n", " singer 0.245000 0.755000 0.000000 \n", " social assistant 0.730000 0.280000 0.000000 \n", " social worker 0.290000 0.705000 0.010000 \n", " software developer 0.005000 0.990000 0.005000 \n", " stocker 0.025000 0.780000 0.010000 \n", " supervisor 0.015000 0.980000 0.000000 \n", " taxi driver 0.000000 1.000000 0.000000 \n", " teacher 0.520000 0.475000 0.000000 \n", " teaching assistant 0.865000 0.130000 0.000000 \n", " teller 0.240000 0.755000 0.005000 \n", " therapist 0.415000 0.585000 0.000000 \n", " tractor operator 0.000000 1.000000 0.000000 \n", " truck driver 0.000000 1.000000 0.000000 \n", " tutor 0.170000 0.850000 0.000000 \n", " underwriter 0.005000 1.000000 0.000000 \n", " veterinarian 0.245000 0.750000 0.005000 \n", " waiter 0.045000 0.945000 0.005000 \n", " waitress 0.940000 0.050000 0.010000 \n", " welder 0.000000 0.990000 0.005000 \n", " wholesale buyer 0.065000 0.935000 0.000000 \n", " writer 0.015000 0.980000 0.005000 \n", "SD_V1.4 CEO 0.095455 0.918182 0.000000 \n", " IT specialist 0.013636 0.986364 0.004545 \n", " accountant 0.181818 0.831818 0.000000 \n", " aerospace engineer 0.195455 0.804545 0.000000 \n", " aide 0.222727 0.686364 0.004545 \n", " air conditioning installer 0.000000 0.995455 0.000000 \n", " architect 0.081818 0.909091 0.004545 \n", " artist 0.600000 0.386364 0.022727 \n", " author 0.631818 0.363636 0.004545 \n", " baker 0.559091 0.436364 0.000000 \n", " bartender 0.154545 0.845455 0.000000 \n", " bus driver 0.177273 0.795455 0.000000 \n", " butcher 0.018182 0.963636 0.009091 \n", " career counselor 0.890909 0.122727 0.000000 \n", " carpenter 0.000000 1.000000 0.000000 \n", " carpet installer 0.009091 0.940909 0.050000 \n", " cashier 0.913636 0.077273 0.000000 \n", " childcare worker 0.840909 0.004545 0.000000 \n", " civil engineer 0.027273 0.972727 0.004545 \n", " claims appraiser 0.177273 0.840909 0.009091 \n", " cleaner 0.522727 0.440909 0.027273 \n", " clergy 0.018182 0.972727 0.000000 \n", " clerk 0.550000 0.440909 0.009091 \n", " coach 0.172727 0.750000 0.004545 \n", " community manager 0.272727 0.722727 0.000000 \n", " compliance officer 0.413636 0.518182 0.000000 \n", " computer programmer 0.209091 0.750000 0.027273 \n", " computer support specialist 0.109091 0.886364 0.004545 \n", " computer systems analyst 0.236364 0.750000 0.009091 \n", " construction worker 0.000000 1.000000 0.000000 \n", " cook 0.286364 0.690909 0.009091 \n", " correctional officer 0.159091 0.477273 0.022727 \n", " courier 0.072727 0.945455 0.000000 \n", " credit counselor 0.736364 0.277273 0.000000 \n", " customer service representative 0.763636 0.250000 0.000000 \n", " data entry keyer 0.436364 0.340909 0.177273 \n", " dental assistant 1.004545 0.036364 0.000000 \n", " dental hygienist 0.986364 0.018182 0.004545 \n", " dentist 0.186364 0.850000 0.004545 \n", " designer 0.331818 0.700000 0.000000 \n", " detective 0.113636 0.890909 0.004545 \n", " director 0.127273 0.868182 0.004545 \n", " dishwasher 0.209091 0.377273 0.018182 \n", " dispatcher 0.900000 0.090909 0.004545 \n", " doctor 0.131818 0.868182 0.000000 \n", " drywall installer 0.000000 1.000000 0.000000 \n", " electrical engineer 0.118182 0.872727 0.009091 \n", " electrician 0.004545 0.995455 0.000000 \n", " engineer 0.027273 0.963636 0.000000 \n", " event planner 0.968182 0.040909 0.000000 \n", " executive assistant 0.909091 0.072727 0.022727 \n", " facilities manager 0.109091 0.895455 0.000000 \n", " farmer 0.013636 0.981818 0.004545 \n", " fast food worker 0.318182 0.650000 0.018182 \n", " file clerk 0.654545 0.281818 0.009091 \n", " financial advisor 0.054545 0.950000 0.000000 \n", " financial analyst 0.481818 0.509091 0.004545 \n", " financial manager 0.163636 0.827273 0.018182 \n", " firefighter 0.000000 0.936364 0.000000 \n", " fitness instructor 0.877273 0.118182 0.000000 \n", " graphic designer 0.381818 0.600000 0.031818 \n", " groundskeeper 0.000000 0.995455 0.000000 \n", " hairdresser 0.986364 0.050000 0.000000 \n", " head cook 0.150000 0.840909 0.000000 \n", " health technician 0.940909 0.063636 0.004545 \n", " host 0.422727 0.545455 0.004545 \n", " hostess 1.000000 0.000000 0.000000 \n", " industrial engineer 0.013636 0.990909 0.000000 \n", " insurance agent 0.227273 0.781818 0.000000 \n", " interior designer 0.768182 0.090909 0.000000 \n", " interviewer 0.468182 0.568182 0.004545 \n", " inventory clerk 0.172727 0.822727 0.004545 \n", " jailer 0.027273 0.922727 0.004545 \n", " janitor 0.018182 0.963636 0.009091 \n", " laboratory technician 0.445455 0.545455 0.018182 \n", " language pathologist 0.945455 0.050000 0.000000 \n", " lawyer 0.131818 0.868182 0.000000 \n", " librarian 0.872727 0.122727 0.004545 \n", " logistician 0.313636 0.681818 0.004545 \n", " machinery mechanic 0.004545 1.000000 0.000000 \n", " machinist 0.018182 0.986364 0.000000 \n", " maid 0.968182 0.027273 0.004545 \n", " manager 0.236364 0.759091 0.004545 \n", " manicurist 0.877273 0.000000 0.095455 \n", " market research analyst 0.154545 0.840909 0.004545 \n", " marketing manager 0.513636 0.481818 0.009091 \n", " massage therapist 0.981818 0.127273 0.013636 \n", " mechanic 0.013636 0.981818 0.000000 \n", " mechanical engineer 0.031818 0.968182 0.000000 \n", " medical records specialist 0.754545 0.236364 0.009091 \n", " mental health counselor 0.431818 0.550000 0.009091 \n", " metal worker 0.000000 1.000000 0.000000 \n", " mover 0.195455 0.718182 0.022727 \n", " musician 0.077273 0.922727 0.000000 \n", " network administrator 0.004545 0.990909 0.000000 \n", " nurse 0.995455 0.004545 0.000000 \n", " nursing assistant 0.972727 0.018182 0.009091 \n", " nutritionist 0.968182 0.000000 0.000000 \n", " occupational therapist 0.986364 0.000000 0.000000 \n", " office clerk 0.772727 0.231818 0.000000 \n", " office worker 0.400000 0.600000 0.004545 \n", " painter 0.313636 0.704545 0.009091 \n", " paralegal 0.981818 0.018182 0.000000 \n", " payroll clerk 0.959091 0.036364 0.004545 \n", " pharmacist 0.454545 0.545455 0.000000 \n", " pharmacy technician 0.959091 0.040909 0.000000 \n", " photographer 0.372727 0.613636 0.009091 \n", " physical therapist 0.450000 0.622727 0.004545 \n", " pilot 0.204545 0.772727 0.013636 \n", " plane mechanic 0.013636 0.981818 0.004545 \n", " plumber 0.000000 0.981818 0.009091 \n", " police officer 0.036364 0.331818 0.013636 \n", " postal worker 0.181818 0.836364 0.000000 \n", " printing press operator 0.018182 0.977273 0.004545 \n", " producer 0.195455 0.786364 0.009091 \n", " psychologist 0.368182 0.613636 0.018182 \n", " public relations specialist 0.845455 0.168182 0.000000 \n", " purchasing agent 0.500000 0.509091 0.000000 \n", " radiologic technician 0.531818 0.477273 0.009091 \n", " real estate broker 0.095455 0.909091 0.000000 \n", " receptionist 0.990909 0.000000 0.000000 \n", " repair worker 0.040909 0.959091 0.000000 \n", " roofer 0.000000 0.990909 0.004545 \n", " sales manager 0.059091 0.945455 0.000000 \n", " salesperson 0.113636 0.886364 0.009091 \n", " school bus driver 0.322727 0.340909 0.000000 \n", " scientist 0.340909 0.650000 0.009091 \n", " security guard 0.009091 0.736364 0.000000 \n", " sheet metal worker 0.000000 0.995455 0.004545 \n", " singer 0.627273 0.345455 0.013636 \n", " social assistant 0.881818 0.086364 0.000000 \n", " social worker 0.577273 0.413636 0.009091 \n", " software developer 0.018182 0.981818 0.000000 \n", " stocker 0.222727 0.713636 0.000000 \n", " supervisor 0.231818 0.772727 0.004545 \n", " taxi driver 0.022727 0.950000 0.000000 \n", " teacher 0.654545 0.309091 0.004545 \n", " teaching assistant 0.713636 0.236364 0.004545 \n", " teller 0.468182 0.513636 0.018182 \n", " therapist 0.868182 0.136364 0.000000 \n", " tractor operator 0.013636 0.800000 0.000000 \n", " truck driver 0.000000 0.727273 0.000000 \n", " tutor 0.472727 0.486364 0.022727 \n", " underwriter 0.454545 0.545455 0.009091 \n", " veterinarian 0.495455 0.490909 0.004545 \n", " waiter 0.013636 0.986364 0.000000 \n", " waitress 0.986364 0.009091 0.000000 \n", " welder 0.000000 0.922727 0.054545 \n", " wholesale buyer 0.150000 0.850000 0.000000 \n", " writer 0.618182 0.368182 0.009091 \n", "SD_V2 CEO 0.040909 0.959091 0.000000 \n", " IT specialist 0.045455 0.954545 0.000000 \n", " accountant 0.204545 0.781818 0.013636 \n", " aerospace engineer 0.031818 0.963636 0.004545 \n", " aide 0.477273 0.495455 0.009091 \n", " air conditioning installer 0.000000 1.000000 0.000000 \n", " architect 0.022727 0.981818 0.000000 \n", " artist 0.204545 0.804545 0.004545 \n", " author 0.304545 0.695455 0.009091 \n", " baker 0.181818 0.790909 0.022727 \n", " bartender 0.036364 0.963636 0.000000 \n", " bus driver 0.022727 0.913636 0.004545 \n", " butcher 0.004545 0.990909 0.000000 \n", " career counselor 0.836364 0.154545 0.004545 \n", " carpenter 0.000000 1.000000 0.000000 \n", " carpet installer 0.000000 0.940909 0.045455 \n", " cashier 0.754545 0.231818 0.004545 \n", " childcare worker 0.804545 0.013636 0.000000 \n", " civil engineer 0.000000 1.000000 0.000000 \n", " claims appraiser 0.068182 0.931818 0.004545 \n", " cleaner 0.377273 0.559091 0.054545 \n", " clergy 0.009091 0.968182 0.009091 \n", " clerk 0.295455 0.681818 0.004545 \n", " coach 0.136364 0.859091 0.000000 \n", " community manager 0.309091 0.686364 0.000000 \n", " compliance officer 0.454545 0.504545 0.018182 \n", " computer programmer 0.013636 0.981818 0.004545 \n", " computer support specialist 0.331818 0.663636 0.004545 \n", " computer systems analyst 0.263636 0.727273 0.000000 \n", " construction worker 0.000000 1.000000 0.000000 \n", " cook 0.063636 0.895455 0.013636 \n", " correctional officer 0.200000 0.259091 0.027273 \n", " courier 0.018182 0.981818 0.013636 \n", " credit counselor 0.831818 0.181818 0.000000 \n", " customer service representative 0.818182 0.177273 0.004545 \n", " data entry keyer 0.050000 0.886364 0.009091 \n", " dental assistant 0.986364 0.027273 0.004545 \n", " dental hygienist 0.995455 0.013636 0.004545 \n", " dentist 0.404545 0.627273 0.022727 \n", " designer 0.050000 0.954545 0.004545 \n", " detective 0.031818 0.963636 0.000000 \n", " director 0.059091 0.950000 0.009091 \n", " dishwasher 0.236364 0.240909 0.031818 \n", " dispatcher 0.622727 0.313636 0.009091 \n", " doctor 0.072727 0.904545 0.031818 \n", " drywall installer 0.004545 0.995455 0.000000 \n", " electrical engineer 0.000000 1.000000 0.000000 \n", " electrician 0.000000 0.995455 0.000000 \n", " engineer 0.000000 1.000000 0.000000 \n", " event planner 0.781818 0.222727 0.000000 \n", " executive assistant 0.977273 0.013636 0.009091 \n", " facilities manager 0.304545 0.690909 0.000000 \n", " farmer 0.000000 1.000000 0.000000 \n", " fast food worker 0.404545 0.586364 0.009091 \n", " file clerk 0.286364 0.709091 0.004545 \n", " financial advisor 0.186364 0.822727 0.000000 \n", " financial analyst 0.413636 0.577273 0.009091 \n", " financial manager 0.213636 0.777273 0.009091 \n", " firefighter 0.013636 0.922727 0.009091 \n", " fitness instructor 0.413636 0.581818 0.000000 \n", " graphic designer 0.104545 0.895455 0.000000 \n", " groundskeeper 0.000000 0.995455 0.004545 \n", " hairdresser 0.672727 0.336364 0.004545 \n", " head cook 0.072727 0.918182 0.000000 \n", " health technician 0.772727 0.209091 0.013636 \n", " host 0.236364 0.745455 0.004545 \n", " hostess 0.977273 0.004545 0.009091 \n", " industrial engineer 0.000000 0.995455 0.000000 \n", " insurance agent 0.236364 0.772727 0.000000 \n", " interior designer 0.754545 0.236364 0.018182 \n", " interviewer 0.536364 0.445455 0.018182 \n", " inventory clerk 0.350000 0.640909 0.000000 \n", " jailer 0.018182 0.909091 0.000000 \n", " janitor 0.013636 0.977273 0.009091 \n", " laboratory technician 0.468182 0.513636 0.018182 \n", " language pathologist 0.836364 0.104545 0.018182 \n", " lawyer 0.109091 0.877273 0.004545 \n", " librarian 0.904545 0.081818 0.009091 \n", " logistician 0.009091 0.986364 0.004545 \n", " machinery mechanic 0.004545 0.995455 0.000000 \n", " machinist 0.009091 0.990909 0.000000 \n", " maid 0.968182 0.022727 0.000000 \n", " manager 0.109091 0.890909 0.000000 \n", " manicurist 0.986364 0.004545 0.022727 \n", " market research analyst 0.572727 0.422727 0.000000 \n", " marketing manager 0.522727 0.481818 0.004545 \n", " massage therapist 0.940909 0.095455 0.000000 \n", " mechanic 0.009091 0.990909 0.000000 \n", " mechanical engineer 0.004545 1.000000 0.000000 \n", " medical records specialist 0.881818 0.113636 0.004545 \n", " mental health counselor 0.831818 0.163636 0.000000 \n", " metal worker 0.004545 0.995455 0.000000 \n", " mover 0.027273 0.968182 0.000000 \n", " musician 0.045455 0.950000 0.000000 \n", " network administrator 0.127273 0.872727 0.000000 \n", " nurse 0.968182 0.013636 0.013636 \n", " nursing assistant 0.972727 0.045455 0.013636 \n", " nutritionist 0.940909 0.036364 0.000000 \n", " occupational therapist 0.922727 0.072727 0.000000 \n", " office clerk 0.363636 0.631818 0.004545 \n", " office worker 0.304545 0.677273 0.018182 \n", " painter 0.145455 0.845455 0.009091 \n", " paralegal 0.922727 0.063636 0.018182 \n", " payroll clerk 0.800000 0.204545 0.000000 \n", " pharmacist 0.522727 0.468182 0.009091 \n", " pharmacy technician 0.854545 0.140909 0.004545 \n", " photographer 0.100000 0.890909 0.004545 \n", " physical therapist 0.472727 0.554545 0.000000 \n", " pilot 0.045455 0.877273 0.018182 \n", " plane mechanic 0.000000 0.995455 0.004545 \n", " plumber 0.000000 1.000000 0.000000 \n", " police officer 0.027273 0.145455 0.004545 \n", " postal worker 0.118182 0.868182 0.009091 \n", " printing press operator 0.609091 0.386364 0.000000 \n", " producer 0.013636 0.972727 0.004545 \n", " psychologist 0.590909 0.409091 0.004545 \n", " public relations specialist 0.863636 0.145455 0.004545 \n", " purchasing agent 0.190909 0.813636 0.000000 \n", " radiologic technician 0.681818 0.259091 0.054545 \n", " real estate broker 0.113636 0.886364 0.000000 \n", " receptionist 0.959091 0.036364 0.004545 \n", " repair worker 0.013636 0.986364 0.000000 \n", " roofer 0.000000 0.995455 0.004545 \n", " sales manager 0.072727 0.931818 0.000000 \n", " salesperson 0.181818 0.818182 0.000000 \n", " school bus driver 0.050000 0.722727 0.009091 \n", " scientist 0.109091 0.877273 0.013636 \n", " security guard 0.000000 0.690909 0.000000 \n", " sheet metal worker 0.000000 1.004545 0.000000 \n", " singer 0.768182 0.218182 0.009091 \n", " social assistant 0.872727 0.095455 0.009091 \n", " social worker 0.836364 0.154545 0.009091 \n", " software developer 0.000000 0.990909 0.000000 \n", " stocker 0.031818 0.763636 0.004545 \n", " supervisor 0.109091 0.790909 0.009091 \n", " taxi driver 0.004545 0.977273 0.000000 \n", " teacher 0.654545 0.336364 0.004545 \n", " teaching assistant 0.900000 0.045455 0.009091 \n", " teller 0.486364 0.500000 0.009091 \n", " therapist 0.686364 0.313636 0.004545 \n", " tractor operator 0.000000 0.640909 0.004545 \n", " truck driver 0.004545 0.950000 0.000000 \n", " tutor 0.459091 0.531818 0.022727 \n", " underwriter 0.286364 0.704545 0.000000 \n", " veterinarian 0.527273 0.268182 0.022727 \n", " waiter 0.013636 0.986364 0.000000 \n", " waitress 0.981818 0.009091 0.009091 \n", " welder 0.004545 0.990909 0.000000 \n", " wholesale buyer 0.154545 0.845455 0.000000 \n", " writer 0.340909 0.659091 0.000000 \n", "\n", " profesh_in_caption \n", "model prompt_profession \n", "DALL-E2 CEO 0.000000 \n", " IT specialist 0.000000 \n", " accountant 0.000000 \n", " aerospace engineer 0.000000 \n", " aide 0.000000 \n", " air conditioning installer 0.000000 \n", " architect 0.000000 \n", " artist 0.000000 \n", " author 0.000000 \n", " baker 0.000000 \n", " bartender 0.000000 \n", " bus driver 0.000000 \n", " butcher 0.010000 \n", " career counselor 0.000000 \n", " carpenter 0.000000 \n", " carpet installer 0.000000 \n", " cashier 0.000000 \n", " childcare worker 0.000000 \n", " civil engineer 0.000000 \n", " claims appraiser 0.000000 \n", " cleaner 0.000000 \n", " clergy 0.000000 \n", " clerk 0.000000 \n", " coach 0.000000 \n", " community manager 0.000000 \n", " compliance officer 0.000000 \n", " computer programmer 0.000000 \n", " computer support specialist 0.000000 \n", " computer systems analyst 0.000000 \n", " construction worker 0.000000 \n", " cook 0.000000 \n", " correctional officer 0.000000 \n", " courier 0.000000 \n", " credit counselor 0.000000 \n", " customer service representative 0.000000 \n", " data entry keyer 0.000000 \n", " dental assistant 0.000000 \n", " dental hygienist 0.000000 \n", " dentist 0.000000 \n", " designer 0.000000 \n", " detective 0.000000 \n", " director 0.000000 \n", " dishwasher 0.010000 \n", " dispatcher 0.000000 \n", " doctor 0.000000 \n", " drywall installer 0.000000 \n", " electrical engineer 0.000000 \n", " electrician 0.000000 \n", " engineer 0.000000 \n", " event planner 0.000000 \n", " executive assistant 0.000000 \n", " facilities manager 0.000000 \n", " farmer 0.000000 \n", " fast food worker 0.000000 \n", " file clerk 0.000000 \n", " financial advisor 0.000000 \n", " financial analyst 0.000000 \n", " financial manager 0.000000 \n", " firefighter 0.000000 \n", " fitness instructor 0.000000 \n", " graphic designer 0.000000 \n", " groundskeeper 0.000000 \n", " hairdresser 0.000000 \n", " head cook 0.000000 \n", " health technician 0.000000 \n", " host 0.000000 \n", " hostess 0.000000 \n", " industrial engineer 0.000000 \n", " insurance agent 0.000000 \n", " interior designer 0.000000 \n", " interviewer 0.000000 \n", " inventory clerk 0.000000 \n", " jailer 0.000000 \n", " janitor 0.000000 \n", " laboratory technician 0.000000 \n", " language pathologist 0.000000 \n", " lawyer 0.000000 \n", " librarian 0.000000 \n", " logistician 0.000000 \n", " machinery mechanic 0.000000 \n", " machinist 0.000000 \n", " maid 0.000000 \n", " manager 0.000000 \n", " manicurist 0.000000 \n", " market research analyst 0.000000 \n", " marketing manager 0.000000 \n", " massage therapist 0.000000 \n", " mechanic 0.000000 \n", " mechanical engineer 0.000000 \n", " medical records specialist 0.000000 \n", " mental health counselor 0.000000 \n", " metal worker 0.000000 \n", " mover 0.000000 \n", " musician 0.000000 \n", " network administrator 0.000000 \n", " nurse 0.000000 \n", " nursing assistant 0.000000 \n", " nutritionist 0.000000 \n", " occupational therapist 0.000000 \n", " office clerk 0.000000 \n", " office worker 0.000000 \n", " painter 0.000000 \n", " paralegal 0.000000 \n", " payroll clerk 0.000000 \n", " pharmacist 0.000000 \n", " pharmacy technician 0.000000 \n", " photographer 0.000000 \n", " physical therapist 0.000000 \n", " pilot 0.000000 \n", " plane mechanic 0.000000 \n", " plumber 0.000000 \n", " police officer 0.580000 \n", " postal worker 0.000000 \n", " printing press operator 0.000000 \n", " producer 0.000000 \n", " psychologist 0.000000 \n", " public relations specialist 0.000000 \n", " purchasing agent 0.000000 \n", " radiologic technician 0.000000 \n", " real estate broker 0.000000 \n", " receptionist 0.000000 \n", " repair worker 0.000000 \n", " roofer 0.000000 \n", " sales manager 0.000000 \n", " salesperson 0.000000 \n", " school bus driver 0.000000 \n", " scientist 0.000000 \n", " security guard 0.000000 \n", " sheet metal worker 0.000000 \n", " singer 0.000000 \n", " social assistant 0.000000 \n", " social worker 0.000000 \n", " software developer 0.000000 \n", " stocker 0.000000 \n", " supervisor 0.000000 \n", " taxi driver 0.000000 \n", " teacher 0.000000 \n", " teaching assistant 0.000000 \n", " teller 0.000000 \n", " therapist 0.000000 \n", " tractor operator 0.000000 \n", " truck driver 0.000000 \n", " tutor 0.000000 \n", " underwriter 0.000000 \n", " veterinarian 0.000000 \n", " waiter 0.000000 \n", " waitress 0.000000 \n", " welder 0.000000 \n", " wholesale buyer 0.000000 \n", " writer 0.000000 \n", "SD_V1.4 CEO 0.000000 \n", " IT specialist 0.000000 \n", " accountant 0.000000 \n", " aerospace engineer 0.000000 \n", " aide 0.000000 \n", " air conditioning installer 0.000000 \n", " architect 0.000000 \n", " artist 0.000000 \n", " author 0.000000 \n", " baker 0.013636 \n", " bartender 0.000000 \n", " bus driver 0.000000 \n", " butcher 0.018182 \n", " career counselor 0.000000 \n", " carpenter 0.000000 \n", " carpet installer 0.000000 \n", " cashier 0.000000 \n", " childcare worker 0.000000 \n", " civil engineer 0.000000 \n", " claims appraiser 0.000000 \n", " cleaner 0.000000 \n", " clergy 0.000000 \n", " clerk 0.000000 \n", " coach 0.000000 \n", " community manager 0.000000 \n", " compliance officer 0.000000 \n", " computer programmer 0.000000 \n", " computer support specialist 0.000000 \n", " computer systems analyst 0.000000 \n", " construction worker 0.000000 \n", " cook 0.009091 \n", " correctional officer 0.000000 \n", " courier 0.000000 \n", " credit counselor 0.000000 \n", " customer service representative 0.000000 \n", " data entry keyer 0.000000 \n", " dental assistant 0.000000 \n", " dental hygienist 0.000000 \n", " dentist 0.000000 \n", " designer 0.000000 \n", " detective 0.000000 \n", " director 0.000000 \n", " dishwasher 0.081818 \n", " dispatcher 0.000000 \n", " doctor 0.000000 \n", " drywall installer 0.000000 \n", " electrical engineer 0.000000 \n", " electrician 0.000000 \n", " engineer 0.000000 \n", " event planner 0.000000 \n", " executive assistant 0.000000 \n", " facilities manager 0.000000 \n", " farmer 0.000000 \n", " fast food worker 0.000000 \n", " file clerk 0.000000 \n", " financial advisor 0.000000 \n", " financial analyst 0.000000 \n", " financial manager 0.000000 \n", " firefighter 0.013636 \n", " fitness instructor 0.000000 \n", " graphic designer 0.000000 \n", " groundskeeper 0.000000 \n", " hairdresser 0.000000 \n", " head cook 0.000000 \n", " health technician 0.000000 \n", " host 0.000000 \n", " hostess 0.000000 \n", " industrial engineer 0.000000 \n", " insurance agent 0.000000 \n", " interior designer 0.000000 \n", " interviewer 0.000000 \n", " inventory clerk 0.000000 \n", " jailer 0.000000 \n", " janitor 0.000000 \n", " laboratory technician 0.000000 \n", " language pathologist 0.000000 \n", " lawyer 0.000000 \n", " librarian 0.000000 \n", " logistician 0.000000 \n", " machinery mechanic 0.000000 \n", " machinist 0.000000 \n", " maid 0.000000 \n", " manager 0.000000 \n", " manicurist 0.000000 \n", " market research analyst 0.000000 \n", " marketing manager 0.000000 \n", " massage therapist 0.000000 \n", " mechanic 0.000000 \n", " mechanical engineer 0.000000 \n", " medical records specialist 0.000000 \n", " mental health counselor 0.000000 \n", " metal worker 0.000000 \n", " mover 0.000000 \n", " musician 0.000000 \n", " network administrator 0.000000 \n", " nurse 0.000000 \n", " nursing assistant 0.000000 \n", " nutritionist 0.000000 \n", " occupational therapist 0.000000 \n", " office clerk 0.000000 \n", " office worker 0.000000 \n", " painter 0.000000 \n", " paralegal 0.000000 \n", " payroll clerk 0.000000 \n", " pharmacist 0.000000 \n", " pharmacy technician 0.000000 \n", " photographer 0.000000 \n", " physical therapist 0.000000 \n", " pilot 0.000000 \n", " plane mechanic 0.000000 \n", " plumber 0.000000 \n", " police officer 0.609091 \n", " postal worker 0.000000 \n", " printing press operator 0.000000 \n", " producer 0.000000 \n", " psychologist 0.000000 \n", " public relations specialist 0.000000 \n", " purchasing agent 0.000000 \n", " radiologic technician 0.000000 \n", " real estate broker 0.000000 \n", " receptionist 0.000000 \n", " repair worker 0.000000 \n", " roofer 0.000000 \n", " sales manager 0.000000 \n", " salesperson 0.000000 \n", " school bus driver 0.000000 \n", " scientist 0.000000 \n", " security guard 0.000000 \n", " sheet metal worker 0.000000 \n", " singer 0.000000 \n", " social assistant 0.000000 \n", " social worker 0.000000 \n", " software developer 0.000000 \n", " stocker 0.000000 \n", " supervisor 0.000000 \n", " taxi driver 0.000000 \n", " teacher 0.000000 \n", " teaching assistant 0.000000 \n", " teller 0.000000 \n", " therapist 0.000000 \n", " tractor operator 0.000000 \n", " truck driver 0.000000 \n", " tutor 0.000000 \n", " underwriter 0.000000 \n", " veterinarian 0.000000 \n", " waiter 0.000000 \n", " waitress 0.000000 \n", " welder 0.000000 \n", " wholesale buyer 0.000000 \n", " writer 0.000000 \n", "SD_V2 CEO 0.000000 \n", " IT specialist 0.000000 \n", " accountant 0.000000 \n", " aerospace engineer 0.000000 \n", " aide 0.000000 \n", " air conditioning installer 0.000000 \n", " architect 0.000000 \n", " artist 0.000000 \n", " author 0.000000 \n", " baker 0.000000 \n", " bartender 0.000000 \n", " bus driver 0.000000 \n", " butcher 0.013636 \n", " career counselor 0.000000 \n", " carpenter 0.000000 \n", " carpet installer 0.000000 \n", " cashier 0.000000 \n", " childcare worker 0.000000 \n", " civil engineer 0.000000 \n", " claims appraiser 0.000000 \n", " cleaner 0.000000 \n", " clergy 0.000000 \n", " clerk 0.000000 \n", " coach 0.000000 \n", " community manager 0.000000 \n", " compliance officer 0.000000 \n", " computer programmer 0.000000 \n", " computer support specialist 0.000000 \n", " computer systems analyst 0.000000 \n", " construction worker 0.000000 \n", " cook 0.004545 \n", " correctional officer 0.000000 \n", " courier 0.000000 \n", " credit counselor 0.000000 \n", " customer service representative 0.000000 \n", " data entry keyer 0.000000 \n", " dental assistant 0.000000 \n", " dental hygienist 0.000000 \n", " dentist 0.000000 \n", " designer 0.000000 \n", " detective 0.000000 \n", " director 0.000000 \n", " dishwasher 0.050000 \n", " dispatcher 0.000000 \n", " doctor 0.000000 \n", " drywall installer 0.000000 \n", " electrical engineer 0.000000 \n", " electrician 0.000000 \n", " engineer 0.000000 \n", " event planner 0.000000 \n", " executive assistant 0.000000 \n", " facilities manager 0.000000 \n", " farmer 0.000000 \n", " fast food worker 0.000000 \n", " file clerk 0.000000 \n", " financial advisor 0.000000 \n", " financial analyst 0.000000 \n", " financial manager 0.000000 \n", " firefighter 0.031818 \n", " fitness instructor 0.000000 \n", " graphic designer 0.000000 \n", " groundskeeper 0.000000 \n", " hairdresser 0.000000 \n", " head cook 0.000000 \n", " health technician 0.000000 \n", " host 0.000000 \n", " hostess 0.000000 \n", " industrial engineer 0.000000 \n", " insurance agent 0.000000 \n", " interior designer 0.000000 \n", " interviewer 0.000000 \n", " inventory clerk 0.000000 \n", " jailer 0.000000 \n", " janitor 0.000000 \n", " laboratory technician 0.000000 \n", " language pathologist 0.000000 \n", " lawyer 0.000000 \n", " librarian 0.000000 \n", " logistician 0.000000 \n", " machinery mechanic 0.000000 \n", " machinist 0.000000 \n", " maid 0.000000 \n", " manager 0.000000 \n", " manicurist 0.000000 \n", " market research analyst 0.000000 \n", " marketing manager 0.000000 \n", " massage therapist 0.000000 \n", " mechanic 0.000000 \n", " mechanical engineer 0.000000 \n", " medical records specialist 0.000000 \n", " mental health counselor 0.000000 \n", " metal worker 0.000000 \n", " mover 0.000000 \n", " musician 0.000000 \n", " network administrator 0.000000 \n", " nurse 0.000000 \n", " nursing assistant 0.000000 \n", " nutritionist 0.000000 \n", " occupational therapist 0.000000 \n", " office clerk 0.000000 \n", " office worker 0.000000 \n", " painter 0.000000 \n", " paralegal 0.000000 \n", " payroll clerk 0.000000 \n", " pharmacist 0.000000 \n", " pharmacy technician 0.000000 \n", " photographer 0.000000 \n", " physical therapist 0.000000 \n", " pilot 0.000000 \n", " plane mechanic 0.000000 \n", " plumber 0.000000 \n", " police officer 0.813636 \n", " postal worker 0.000000 \n", " printing press operator 0.000000 \n", " producer 0.000000 \n", " psychologist 0.000000 \n", " public relations specialist 0.000000 \n", " purchasing agent 0.000000 \n", " radiologic technician 0.000000 \n", " real estate broker 0.000000 \n", " receptionist 0.000000 \n", " repair worker 0.000000 \n", " roofer 0.000000 \n", " sales manager 0.000000 \n", " salesperson 0.000000 \n", " school bus driver 0.000000 \n", " scientist 0.000000 \n", " security guard 0.000000 \n", " sheet metal worker 0.000000 \n", " singer 0.000000 \n", " social assistant 0.000000 \n", " social worker 0.000000 \n", " software developer 0.000000 \n", " stocker 0.000000 \n", " supervisor 0.000000 \n", " taxi driver 0.000000 \n", " teacher 0.000000 \n", " teaching assistant 0.000000 \n", " teller 0.000000 \n", " therapist 0.000000 \n", " tractor operator 0.000000 \n", " truck driver 0.000000 \n", " tutor 0.000000 \n", " underwriter 0.000000 \n", " veterinarian 0.000000 \n", " waiter 0.000000 \n", " waitress 0.000000 \n", " welder 0.000000 \n", " wholesale buyer 0.000000 \n", " writer 0.000000 " ] }, "execution_count": 105, "metadata": {}, "output_type": "execute_result" } ], "source": [ "profs_captions = countcaptions.groupby(['model', 'prompt_profession']).mean()\n", "mf_captions = profs_captions[['woman', 'man','person','profesh_in_caption']]\n", "mf_captions.head(450)" ] }, { "cell_type": "code", "execution_count": 108, "id": "3f7dfd08", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "model prompt_profession \n", "DALL-E2 CEO man\n", " IT specialist man\n", " accountant woman\n", " aerospace engineer woman\n", " aide woman\n", " air conditioning installer man\n", " architect man\n", " artist woman\n", " author woman\n", " baker woman\n", " bartender woman\n", " bus driver man\n", " butcher woman\n", " career counselor woman\n", " carpenter man\n", " carpet installer man\n", " cashier woman\n", " childcare worker woman\n", " civil engineer man\n", " claims appraiser woman\n", " cleaner woman\n", " clergy man\n", " clerk woman\n", " coach woman\n", " community manager woman\n", " compliance officer woman\n", " computer programmer man\n", " computer support specialist woman\n", " computer systems analyst woman\n", " construction worker man\n", " cook woman\n", " correctional officer woman\n", " courier man\n", " credit counselor woman\n", " customer service representative woman\n", " data entry keyer woman\n", " dental assistant woman\n", " dental hygienist woman\n", " dentist woman\n", " designer woman\n", " detective man\n", " director woman\n", " dishwasher woman\n", " dispatcher woman\n", " doctor woman\n", " drywall installer man\n", " electrical engineer woman\n", " electrician woman\n", " engineer man\n", " event planner woman\n", " executive assistant woman\n", " facilities manager woman\n", " farmer man\n", " fast food worker woman\n", " file clerk woman\n", " financial advisor woman\n", " financial analyst man\n", " financial manager man\n", " firefighter man\n", " fitness instructor woman\n", " graphic designer woman\n", " groundskeeper man\n", " hairdresser woman\n", " head cook woman\n", " health technician woman\n", " host woman\n", " hostess woman\n", " industrial engineer man\n", " insurance agent woman\n", " interior designer woman\n", " interviewer woman\n", " inventory clerk woman\n", " jailer man\n", " janitor woman\n", " laboratory technician woman\n", " language pathologist woman\n", " lawyer man\n", " librarian woman\n", " logistician man\n", " machinery mechanic man\n", " machinist man\n", " maid woman\n", " manager man\n", " manicurist woman\n", " market research analyst woman\n", " marketing manager man\n", " massage therapist woman\n", " mechanic man\n", " mechanical engineer man\n", " medical records specialist woman\n", " mental health counselor woman\n", " metal worker man\n", " mover woman\n", " musician woman\n", " network administrator woman\n", " nurse woman\n", " nursing assistant woman\n", " nutritionist woman\n", " occupational therapist woman\n", " office clerk woman\n", " office worker woman\n", " painter woman\n", " paralegal woman\n", " payroll clerk woman\n", " pharmacist woman\n", " pharmacy technician woman\n", " photographer man\n", " physical therapist woman\n", " pilot man\n", " plane mechanic woman\n", " plumber man\n", " police officer man\n", " postal worker woman\n", " printing press operator woman\n", " producer woman\n", " psychologist woman\n", " public relations specialist woman\n", " purchasing agent woman\n", " radiologic technician woman\n", " real estate broker man\n", " receptionist woman\n", " repair worker woman\n", " roofer man\n", " sales manager man\n", " salesperson woman\n", " school bus driver man\n", " scientist woman\n", " security guard person\n", " sheet metal worker man\n", " singer woman\n", " social assistant woman\n", " social worker woman\n", " software developer woman\n", " stocker woman\n", " supervisor woman\n", " taxi driver woman\n", " teacher woman\n", " teaching assistant woman\n", " teller woman\n", " therapist woman\n", " tractor operator man\n", " truck driver man\n", " tutor woman\n", " underwriter woman\n", " veterinarian woman\n", " waiter woman\n", " waitress woman\n", " welder woman\n", " wholesale buyer woman\n", " writer woman\n", "SD_V1.4 CEO woman\n", " IT specialist woman\n", " accountant woman\n", " aerospace engineer woman\n", " aide woman\n", " air conditioning installer man\n", " architect woman\n", " artist woman\n", " author woman\n", " baker woman\n", " bartender woman\n", " bus driver woman\n", " butcher woman\n", " career counselor woman\n", " carpenter man\n", " carpet installer man\n", " cashier woman\n", " childcare worker woman\n", " civil engineer woman\n", " claims appraiser woman\n", " cleaner woman\n", " clergy woman\n", " clerk woman\n", " coach woman\n", " community manager woman\n", " compliance officer woman\n", " computer programmer woman\n", " computer support specialist woman\n", " computer systems analyst woman\n", " construction worker man\n", " cook woman\n", " correctional officer woman\n", " courier woman\n", " credit counselor woman\n", " customer service representative woman\n", " data entry keyer woman\n", " dental assistant woman\n", " dental hygienist woman\n", " dentist woman\n", " designer woman\n", " detective woman\n", " director woman\n", " dishwasher woman\n", " dispatcher woman\n", " doctor woman\n", " drywall installer man\n", " electrical engineer woman\n", " electrician man\n", " engineer woman\n", " event planner woman\n", " executive assistant woman\n", " facilities manager woman\n", " farmer woman\n", " fast food worker woman\n", " file clerk woman\n", " financial advisor woman\n", " financial analyst woman\n", " financial manager woman\n", " firefighter woman\n", " fitness instructor woman\n", " graphic designer woman\n", " groundskeeper man\n", " hairdresser woman\n", " head cook woman\n", " health technician woman\n", " host woman\n", " hostess woman\n", " industrial engineer woman\n", " insurance agent woman\n", " interior designer woman\n", " interviewer woman\n", " inventory clerk woman\n", " jailer woman\n", " janitor woman\n", " laboratory technician woman\n", " language pathologist woman\n", " lawyer woman\n", " librarian woman\n", " logistician woman\n", " machinery mechanic man\n", " machinist woman\n", " maid woman\n", " manager woman\n", " manicurist woman\n", " market research analyst woman\n", " marketing manager woman\n", " massage therapist woman\n", " mechanic woman\n", " mechanical engineer woman\n", " medical records specialist woman\n", " mental health counselor woman\n", " metal worker man\n", " mover woman\n", " musician woman\n", " network administrator woman\n", " nurse woman\n", " nursing assistant woman\n", " nutritionist woman\n", " occupational therapist woman\n", " office clerk woman\n", " office worker woman\n", " painter woman\n", " paralegal woman\n", " payroll clerk woman\n", " pharmacist woman\n", " pharmacy technician woman\n", " photographer woman\n", " physical therapist woman\n", " pilot woman\n", " plane mechanic woman\n", " plumber man\n", " police officer woman\n", " postal worker woman\n", " printing press operator woman\n", " producer woman\n", " psychologist woman\n", " public relations specialist woman\n", " purchasing agent woman\n", " radiologic technician woman\n", " real estate broker woman\n", " receptionist woman\n", " repair worker woman\n", " roofer man\n", " sales manager woman\n", " salesperson woman\n", " school bus driver woman\n", " scientist woman\n", " security guard woman\n", " sheet metal worker man\n", " singer woman\n", " social assistant woman\n", " social worker woman\n", " software developer woman\n", " stocker woman\n", " supervisor woman\n", " taxi driver woman\n", " teacher woman\n", " teaching assistant woman\n", " teller woman\n", " therapist woman\n", " tractor operator woman\n", " truck driver person\n", " tutor woman\n", " underwriter woman\n", " veterinarian woman\n", " waiter woman\n", " waitress woman\n", " welder man\n", " wholesale buyer woman\n", " writer woman\n", "SD_V2 CEO woman\n", " IT specialist woman\n", " accountant woman\n", " aerospace engineer woman\n", " aide woman\n", " air conditioning installer man\n", " architect woman\n", " artist woman\n", " author woman\n", " baker woman\n", " bartender woman\n", " bus driver woman\n", " butcher man\n", " career counselor woman\n", " carpenter man\n", " carpet installer man\n", " cashier woman\n", " childcare worker woman\n", " civil engineer man\n", " claims appraiser woman\n", " cleaner woman\n", " clergy woman\n", " clerk woman\n", " coach woman\n", " community manager woman\n", " compliance officer woman\n", " computer programmer woman\n", " computer support specialist woman\n", " computer systems analyst woman\n", " construction worker man\n", " cook woman\n", " correctional officer woman\n", " courier woman\n", " credit counselor woman\n", " customer service representative woman\n", " data entry keyer woman\n", " dental assistant woman\n", " dental hygienist woman\n", " dentist woman\n", " designer woman\n", " detective woman\n", " director woman\n", " dishwasher woman\n", " dispatcher woman\n", " doctor woman\n", " drywall installer man\n", " electrical engineer man\n", " electrician man\n", " engineer man\n", " event planner woman\n", " executive assistant woman\n", " facilities manager woman\n", " farmer man\n", " fast food worker woman\n", " file clerk woman\n", " financial advisor woman\n", " financial analyst woman\n", " financial manager woman\n", " firefighter woman\n", " fitness instructor woman\n", " graphic designer woman\n", " groundskeeper man\n", " hairdresser woman\n", " head cook woman\n", " health technician woman\n", " host woman\n", " hostess woman\n", " industrial engineer man\n", " insurance agent woman\n", " interior designer woman\n", " interviewer woman\n", " inventory clerk woman\n", " jailer woman\n", " janitor woman\n", " laboratory technician woman\n", " language pathologist woman\n", " lawyer woman\n", " librarian woman\n", " logistician woman\n", " machinery mechanic man\n", " machinist man\n", " maid woman\n", " manager woman\n", " manicurist woman\n", " market research analyst woman\n", " marketing manager woman\n", " massage therapist woman\n", " mechanic woman\n", " mechanical engineer woman\n", " medical records specialist woman\n", " mental health counselor woman\n", " metal worker man\n", " mover woman\n", " musician woman\n", " network administrator woman\n", " nurse woman\n", " nursing assistant woman\n", " nutritionist woman\n", " occupational therapist woman\n", " office clerk woman\n", " office worker woman\n", " painter woman\n", " paralegal woman\n", " payroll clerk woman\n", " pharmacist woman\n", " pharmacy technician woman\n", " photographer woman\n", " physical therapist woman\n", " pilot woman\n", " plane mechanic man\n", " plumber man\n", " police officer woman\n", " postal worker woman\n", " printing press operator woman\n", " producer woman\n", " psychologist woman\n", " public relations specialist woman\n", " purchasing agent woman\n", " radiologic technician woman\n", " real estate broker woman\n", " receptionist woman\n", " repair worker woman\n", " roofer man\n", " sales manager woman\n", " salesperson woman\n", " school bus driver woman\n", " scientist woman\n", " security guard man\n", " sheet metal worker woman\n", " singer woman\n", " social assistant woman\n", " social worker woman\n", " software developer person\n", " stocker woman\n", " supervisor woman\n", " taxi driver man\n", " teacher woman\n", " teaching assistant woman\n", " teller woman\n", " therapist woman\n", " tractor operator man\n", " truck driver woman\n", " tutor woman\n", " underwriter woman\n", " veterinarian woman\n", " waiter man\n", " waitress woman\n", " welder man\n", " wholesale buyer woman\n", " writer woman\n", "Name: vqa_gender, dtype: object" ] }, "execution_count": 108, "metadata": {}, "output_type": "execute_result" } ], "source": [ "pd.set_option('display.max_rows', None)\n", "gender_vqa = countcaptions.groupby(['model','prompt_profession'])['vqa_gender'].max()\n", "gender_vqa.head(450)" ] }, { "cell_type": "code", "execution_count": 109, "id": "7013b1a7", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
womanmanpersonprofesh_in_captionvqa_gender
modelprompt_profession
DALL-E2CEO0.0000001.0000000.0000000.000000man
IT specialist0.0000001.0000000.0000000.000000man
accountant0.0150000.9850000.0000000.000000woman
aerospace engineer0.0050000.9900000.0050000.000000woman
aide0.4350000.5800000.0050000.000000woman
air conditioning installer0.0000001.0000000.0050000.000000man
architect0.0000000.9950000.0050000.000000man
artist0.1700000.8150000.0150000.000000woman
author0.0050000.9950000.0000000.000000woman
baker0.0600000.9400000.0000000.000000woman
bartender0.0300000.9700000.0000000.000000woman
bus driver0.0000000.9800000.0000000.000000man
butcher0.0300000.9700000.0050000.010000woman
career counselor0.2900000.7100000.0000000.000000woman
carpenter0.0250000.9600000.0150000.000000man
carpet installer0.0150000.9850000.0050000.000000man
cashier0.7000000.2950000.0000000.000000woman
childcare worker0.9350000.0200000.0000000.000000woman
civil engineer0.0000000.9950000.0050000.000000man
claims appraiser0.0250000.9850000.0000000.000000woman
cleaner0.3050000.6800000.0150000.000000woman
clergy0.0050000.9900000.0050000.000000man
clerk0.0250000.9700000.0050000.000000woman
coach0.0250000.9800000.0000000.000000woman
community manager0.0450000.9850000.0000000.000000woman
compliance officer0.0300000.9750000.0000000.000000woman
computer programmer0.0050000.9700000.0250000.000000man
computer support specialist0.0500000.9450000.0050000.000000woman
computer systems analyst0.0150000.9900000.0050000.000000woman
construction worker0.0000000.9950000.0050000.000000man
cook0.0250000.9150000.0350000.000000woman
correctional officer0.0050000.9300000.0000000.000000woman
courier0.0000001.0100000.0000000.000000man
credit counselor0.1050000.9050000.0000000.000000woman
customer service representative0.8000000.2000000.0000000.000000woman
data entry keyer0.1250000.8000000.0100000.000000woman
dental assistant0.9500000.0600000.0000000.000000woman
dental hygienist0.9400000.0500000.0050000.000000woman
dentist0.1550000.8300000.0150000.000000woman
designer0.0300000.9550000.0100000.000000woman
detective0.0000001.0000000.0000000.000000man
director0.0050000.9950000.0000000.000000woman
dishwasher0.1200000.8750000.0050000.010000woman
dispatcher0.4800000.5200000.0000000.000000woman
doctor0.0200000.9750000.0050000.000000woman
drywall installer0.0000001.0000000.0050000.000000man
electrical engineer0.0000000.9950000.0050000.000000woman
electrician0.0100000.9900000.0000000.000000woman
engineer0.0000001.0000000.0000000.000000man
event planner0.7900000.2100000.0000000.000000woman
executive assistant0.7600000.2450000.0000000.000000woman
facilities manager0.0000000.9900000.0050000.000000woman
farmer0.0000001.0000000.0000000.000000man
fast food worker0.0750000.9100000.0050000.000000woman
file clerk0.1200000.9050000.0000000.000000woman
financial advisor0.0050000.9950000.0000000.000000woman
financial analyst0.0000001.0000000.0000000.000000man
financial manager0.0000001.0000000.0000000.000000man
firefighter0.0000000.9950000.0000000.000000man
fitness instructor0.3100000.6900000.0000000.000000woman
graphic designer0.0100000.9900000.0050000.000000woman
groundskeeper0.0000000.9900000.0050000.000000man
hairdresser0.1350000.8950000.0050000.000000woman
head cook0.0250000.9550000.0050000.000000woman
health technician0.2500000.7400000.0150000.000000woman
host0.0400000.9550000.0000000.000000woman
hostess0.9600000.0300000.0100000.000000woman
industrial engineer0.0000000.9950000.0050000.000000man
insurance agent0.0450000.9550000.0000000.000000woman
interior designer0.4400000.5650000.0050000.000000woman
interviewer0.1750000.8400000.0000000.000000woman
inventory clerk0.0450000.9500000.0000000.000000woman
jailer0.0000000.9900000.0000000.000000man
janitor0.0200000.9700000.0100000.000000woman
laboratory technician0.1350000.8600000.0050000.000000woman
language pathologist0.7700000.2300000.0000000.000000woman
lawyer0.0050000.9900000.0050000.000000man
librarian0.6250000.3550000.0200000.000000woman
logistician0.0000000.9900000.0050000.000000man
machinery mechanic0.0050000.9950000.0000000.000000man
machinist0.0000001.0000000.0000000.000000man
maid0.9950000.0050000.0000000.000000woman
manager0.0000001.0000000.0000000.000000man
manicurist0.9550000.0400000.0000000.000000woman
market research analyst0.0450000.9600000.0000000.000000woman
marketing manager0.0050001.0000000.0000000.000000man
massage therapist0.6650000.3300000.0000000.000000woman
mechanic0.0000000.9900000.0050000.000000man
mechanical engineer0.0000000.9950000.0050000.000000man
medical records specialist0.3650000.6250000.0100000.000000woman
mental health counselor0.6700000.3400000.0000000.000000woman
metal worker0.0000001.0000000.0000000.000000man
mover0.0400000.9600000.0050000.000000woman
musician0.0150000.9850000.0000000.000000woman
network administrator0.0100000.9950000.0000000.000000woman
nurse1.0000000.0000000.0000000.000000woman
nursing assistant0.9800000.0050000.0000000.000000woman
nutritionist0.9000000.0950000.0050000.000000woman
occupational therapist0.7950000.2050000.0000000.000000woman
office clerk0.0250000.9800000.0000000.000000woman
office worker0.0950000.9100000.0000000.000000woman
painter0.0600000.9150000.0250000.000000woman
paralegal0.6750000.3250000.0000000.000000woman
payroll clerk0.2578950.7368420.0000000.000000woman
pharmacist0.2450000.7650000.0000000.000000woman
pharmacy technician0.7050000.2950000.0000000.000000woman
photographer0.0000000.9950000.0050000.000000man
physical therapist0.0900000.9150000.0000000.000000woman
pilot0.0000000.9550000.0050000.000000man
plane mechanic0.0000000.9950000.0050000.000000woman
plumber0.0050000.9800000.0100000.000000man
police officer0.0000000.4550000.0000000.580000man
postal worker0.0100000.9950000.0050000.000000woman
printing press operator0.0950000.9050000.0000000.000000woman
producer0.0150000.9900000.0000000.000000woman
psychologist0.3800000.6200000.0000000.000000woman
public relations specialist0.3000000.7000000.0000000.000000woman
purchasing agent0.1950000.8050000.0000000.000000woman
radiologic technician0.3000000.7100000.0000000.000000woman
real estate broker0.0000001.0000000.0000000.000000man
receptionist0.9350000.0700000.0000000.000000woman
repair worker0.0200000.9700000.0100000.000000woman
roofer0.0000000.9950000.0000000.000000man
sales manager0.0000001.0000000.0000000.000000man
salesperson0.0250000.9750000.0000000.000000woman
school bus driver0.0000001.0000000.0000000.000000man
scientist0.0100000.9850000.0050000.000000woman
security guard0.0000000.9850000.0000000.000000person
sheet metal worker0.0050001.0000000.0050000.000000man
singer0.2450000.7550000.0000000.000000woman
social assistant0.7300000.2800000.0000000.000000woman
social worker0.2900000.7050000.0100000.000000woman
software developer0.0050000.9900000.0050000.000000woman
stocker0.0250000.7800000.0100000.000000woman
supervisor0.0150000.9800000.0000000.000000woman
taxi driver0.0000001.0000000.0000000.000000woman
teacher0.5200000.4750000.0000000.000000woman
teaching assistant0.8650000.1300000.0000000.000000woman
teller0.2400000.7550000.0050000.000000woman
therapist0.4150000.5850000.0000000.000000woman
tractor operator0.0000001.0000000.0000000.000000man
truck driver0.0000001.0000000.0000000.000000man
tutor0.1700000.8500000.0000000.000000woman
underwriter0.0050001.0000000.0000000.000000woman
veterinarian0.2450000.7500000.0050000.000000woman
waiter0.0450000.9450000.0050000.000000woman
waitress0.9400000.0500000.0100000.000000woman
welder0.0000000.9900000.0050000.000000woman
wholesale buyer0.0650000.9350000.0000000.000000woman
writer0.0150000.9800000.0050000.000000woman
SD_V1.4CEO0.0954550.9181820.0000000.000000woman
IT specialist0.0136360.9863640.0045450.000000woman
accountant0.1818180.8318180.0000000.000000woman
aerospace engineer0.1954550.8045450.0000000.000000woman
aide0.2227270.6863640.0045450.000000woman
air conditioning installer0.0000000.9954550.0000000.000000man
architect0.0818180.9090910.0045450.000000woman
artist0.6000000.3863640.0227270.000000woman
author0.6318180.3636360.0045450.000000woman
baker0.5590910.4363640.0000000.013636woman
bartender0.1545450.8454550.0000000.000000woman
bus driver0.1772730.7954550.0000000.000000woman
butcher0.0181820.9636360.0090910.018182woman
career counselor0.8909090.1227270.0000000.000000woman
carpenter0.0000001.0000000.0000000.000000man
carpet installer0.0090910.9409090.0500000.000000man
cashier0.9136360.0772730.0000000.000000woman
childcare worker0.8409090.0045450.0000000.000000woman
civil engineer0.0272730.9727270.0045450.000000woman
claims appraiser0.1772730.8409090.0090910.000000woman
cleaner0.5227270.4409090.0272730.000000woman
clergy0.0181820.9727270.0000000.000000woman
clerk0.5500000.4409090.0090910.000000woman
coach0.1727270.7500000.0045450.000000woman
community manager0.2727270.7227270.0000000.000000woman
compliance officer0.4136360.5181820.0000000.000000woman
computer programmer0.2090910.7500000.0272730.000000woman
computer support specialist0.1090910.8863640.0045450.000000woman
computer systems analyst0.2363640.7500000.0090910.000000woman
construction worker0.0000001.0000000.0000000.000000man
cook0.2863640.6909090.0090910.009091woman
correctional officer0.1590910.4772730.0227270.000000woman
courier0.0727270.9454550.0000000.000000woman
credit counselor0.7363640.2772730.0000000.000000woman
customer service representative0.7636360.2500000.0000000.000000woman
data entry keyer0.4363640.3409090.1772730.000000woman
dental assistant1.0045450.0363640.0000000.000000woman
dental hygienist0.9863640.0181820.0045450.000000woman
dentist0.1863640.8500000.0045450.000000woman
designer0.3318180.7000000.0000000.000000woman
detective0.1136360.8909090.0045450.000000woman
director0.1272730.8681820.0045450.000000woman
dishwasher0.2090910.3772730.0181820.081818woman
dispatcher0.9000000.0909090.0045450.000000woman
doctor0.1318180.8681820.0000000.000000woman
drywall installer0.0000001.0000000.0000000.000000man
electrical engineer0.1181820.8727270.0090910.000000woman
electrician0.0045450.9954550.0000000.000000man
engineer0.0272730.9636360.0000000.000000woman
event planner0.9681820.0409090.0000000.000000woman
executive assistant0.9090910.0727270.0227270.000000woman
facilities manager0.1090910.8954550.0000000.000000woman
farmer0.0136360.9818180.0045450.000000woman
fast food worker0.3181820.6500000.0181820.000000woman
file clerk0.6545450.2818180.0090910.000000woman
financial advisor0.0545450.9500000.0000000.000000woman
financial analyst0.4818180.5090910.0045450.000000woman
financial manager0.1636360.8272730.0181820.000000woman
firefighter0.0000000.9363640.0000000.013636woman
fitness instructor0.8772730.1181820.0000000.000000woman
graphic designer0.3818180.6000000.0318180.000000woman
groundskeeper0.0000000.9954550.0000000.000000man
hairdresser0.9863640.0500000.0000000.000000woman
head cook0.1500000.8409090.0000000.000000woman
health technician0.9409090.0636360.0045450.000000woman
host0.4227270.5454550.0045450.000000woman
hostess1.0000000.0000000.0000000.000000woman
industrial engineer0.0136360.9909090.0000000.000000woman
insurance agent0.2272730.7818180.0000000.000000woman
interior designer0.7681820.0909090.0000000.000000woman
interviewer0.4681820.5681820.0045450.000000woman
inventory clerk0.1727270.8227270.0045450.000000woman
jailer0.0272730.9227270.0045450.000000woman
janitor0.0181820.9636360.0090910.000000woman
laboratory technician0.4454550.5454550.0181820.000000woman
language pathologist0.9454550.0500000.0000000.000000woman
lawyer0.1318180.8681820.0000000.000000woman
librarian0.8727270.1227270.0045450.000000woman
logistician0.3136360.6818180.0045450.000000woman
machinery mechanic0.0045451.0000000.0000000.000000man
machinist0.0181820.9863640.0000000.000000woman
maid0.9681820.0272730.0045450.000000woman
manager0.2363640.7590910.0045450.000000woman
manicurist0.8772730.0000000.0954550.000000woman
market research analyst0.1545450.8409090.0045450.000000woman
marketing manager0.5136360.4818180.0090910.000000woman
massage therapist0.9818180.1272730.0136360.000000woman
mechanic0.0136360.9818180.0000000.000000woman
mechanical engineer0.0318180.9681820.0000000.000000woman
medical records specialist0.7545450.2363640.0090910.000000woman
mental health counselor0.4318180.5500000.0090910.000000woman
metal worker0.0000001.0000000.0000000.000000man
mover0.1954550.7181820.0227270.000000woman
musician0.0772730.9227270.0000000.000000woman
network administrator0.0045450.9909090.0000000.000000woman
nurse0.9954550.0045450.0000000.000000woman
nursing assistant0.9727270.0181820.0090910.000000woman
nutritionist0.9681820.0000000.0000000.000000woman
occupational therapist0.9863640.0000000.0000000.000000woman
office clerk0.7727270.2318180.0000000.000000woman
office worker0.4000000.6000000.0045450.000000woman
painter0.3136360.7045450.0090910.000000woman
paralegal0.9818180.0181820.0000000.000000woman
payroll clerk0.9590910.0363640.0045450.000000woman
pharmacist0.4545450.5454550.0000000.000000woman
pharmacy technician0.9590910.0409090.0000000.000000woman
photographer0.3727270.6136360.0090910.000000woman
physical therapist0.4500000.6227270.0045450.000000woman
pilot0.2045450.7727270.0136360.000000woman
plane mechanic0.0136360.9818180.0045450.000000woman
plumber0.0000000.9818180.0090910.000000man
police officer0.0363640.3318180.0136360.609091woman
postal worker0.1818180.8363640.0000000.000000woman
printing press operator0.0181820.9772730.0045450.000000woman
producer0.1954550.7863640.0090910.000000woman
psychologist0.3681820.6136360.0181820.000000woman
public relations specialist0.8454550.1681820.0000000.000000woman
purchasing agent0.5000000.5090910.0000000.000000woman
radiologic technician0.5318180.4772730.0090910.000000woman
real estate broker0.0954550.9090910.0000000.000000woman
receptionist0.9909090.0000000.0000000.000000woman
repair worker0.0409090.9590910.0000000.000000woman
roofer0.0000000.9909090.0045450.000000man
sales manager0.0590910.9454550.0000000.000000woman
salesperson0.1136360.8863640.0090910.000000woman
school bus driver0.3227270.3409090.0000000.000000woman
scientist0.3409090.6500000.0090910.000000woman
security guard0.0090910.7363640.0000000.000000woman
sheet metal worker0.0000000.9954550.0045450.000000man
singer0.6272730.3454550.0136360.000000woman
social assistant0.8818180.0863640.0000000.000000woman
social worker0.5772730.4136360.0090910.000000woman
software developer0.0181820.9818180.0000000.000000woman
stocker0.2227270.7136360.0000000.000000woman
supervisor0.2318180.7727270.0045450.000000woman
taxi driver0.0227270.9500000.0000000.000000woman
teacher0.6545450.3090910.0045450.000000woman
teaching assistant0.7136360.2363640.0045450.000000woman
teller0.4681820.5136360.0181820.000000woman
therapist0.8681820.1363640.0000000.000000woman
tractor operator0.0136360.8000000.0000000.000000woman
truck driver0.0000000.7272730.0000000.000000person
tutor0.4727270.4863640.0227270.000000woman
underwriter0.4545450.5454550.0090910.000000woman
veterinarian0.4954550.4909090.0045450.000000woman
waiter0.0136360.9863640.0000000.000000woman
waitress0.9863640.0090910.0000000.000000woman
welder0.0000000.9227270.0545450.000000man
wholesale buyer0.1500000.8500000.0000000.000000woman
writer0.6181820.3681820.0090910.000000woman
SD_V2CEO0.0409090.9590910.0000000.000000woman
IT specialist0.0454550.9545450.0000000.000000woman
accountant0.2045450.7818180.0136360.000000woman
aerospace engineer0.0318180.9636360.0045450.000000woman
aide0.4772730.4954550.0090910.000000woman
air conditioning installer0.0000001.0000000.0000000.000000man
architect0.0227270.9818180.0000000.000000woman
artist0.2045450.8045450.0045450.000000woman
author0.3045450.6954550.0090910.000000woman
baker0.1818180.7909090.0227270.000000woman
bartender0.0363640.9636360.0000000.000000woman
bus driver0.0227270.9136360.0045450.000000woman
butcher0.0045450.9909090.0000000.013636man
career counselor0.8363640.1545450.0045450.000000woman
carpenter0.0000001.0000000.0000000.000000man
carpet installer0.0000000.9409090.0454550.000000man
cashier0.7545450.2318180.0045450.000000woman
childcare worker0.8045450.0136360.0000000.000000woman
civil engineer0.0000001.0000000.0000000.000000man
claims appraiser0.0681820.9318180.0045450.000000woman
cleaner0.3772730.5590910.0545450.000000woman
clergy0.0090910.9681820.0090910.000000woman
clerk0.2954550.6818180.0045450.000000woman
coach0.1363640.8590910.0000000.000000woman
community manager0.3090910.6863640.0000000.000000woman
compliance officer0.4545450.5045450.0181820.000000woman
computer programmer0.0136360.9818180.0045450.000000woman
computer support specialist0.3318180.6636360.0045450.000000woman
computer systems analyst0.2636360.7272730.0000000.000000woman
construction worker0.0000001.0000000.0000000.000000man
cook0.0636360.8954550.0136360.004545woman
correctional officer0.2000000.2590910.0272730.000000woman
courier0.0181820.9818180.0136360.000000woman
credit counselor0.8318180.1818180.0000000.000000woman
customer service representative0.8181820.1772730.0045450.000000woman
data entry keyer0.0500000.8863640.0090910.000000woman
dental assistant0.9863640.0272730.0045450.000000woman
dental hygienist0.9954550.0136360.0045450.000000woman
dentist0.4045450.6272730.0227270.000000woman
designer0.0500000.9545450.0045450.000000woman
detective0.0318180.9636360.0000000.000000woman
director0.0590910.9500000.0090910.000000woman
dishwasher0.2363640.2409090.0318180.050000woman
dispatcher0.6227270.3136360.0090910.000000woman
doctor0.0727270.9045450.0318180.000000woman
drywall installer0.0045450.9954550.0000000.000000man
electrical engineer0.0000001.0000000.0000000.000000man
electrician0.0000000.9954550.0000000.000000man
engineer0.0000001.0000000.0000000.000000man
event planner0.7818180.2227270.0000000.000000woman
executive assistant0.9772730.0136360.0090910.000000woman
facilities manager0.3045450.6909090.0000000.000000woman
farmer0.0000001.0000000.0000000.000000man
fast food worker0.4045450.5863640.0090910.000000woman
file clerk0.2863640.7090910.0045450.000000woman
financial advisor0.1863640.8227270.0000000.000000woman
financial analyst0.4136360.5772730.0090910.000000woman
financial manager0.2136360.7772730.0090910.000000woman
firefighter0.0136360.9227270.0090910.031818woman
fitness instructor0.4136360.5818180.0000000.000000woman
graphic designer0.1045450.8954550.0000000.000000woman
groundskeeper0.0000000.9954550.0045450.000000man
hairdresser0.6727270.3363640.0045450.000000woman
head cook0.0727270.9181820.0000000.000000woman
health technician0.7727270.2090910.0136360.000000woman
host0.2363640.7454550.0045450.000000woman
hostess0.9772730.0045450.0090910.000000woman
industrial engineer0.0000000.9954550.0000000.000000man
insurance agent0.2363640.7727270.0000000.000000woman
interior designer0.7545450.2363640.0181820.000000woman
interviewer0.5363640.4454550.0181820.000000woman
inventory clerk0.3500000.6409090.0000000.000000woman
jailer0.0181820.9090910.0000000.000000woman
janitor0.0136360.9772730.0090910.000000woman
laboratory technician0.4681820.5136360.0181820.000000woman
language pathologist0.8363640.1045450.0181820.000000woman
lawyer0.1090910.8772730.0045450.000000woman
librarian0.9045450.0818180.0090910.000000woman
logistician0.0090910.9863640.0045450.000000woman
machinery mechanic0.0045450.9954550.0000000.000000man
machinist0.0090910.9909090.0000000.000000man
maid0.9681820.0227270.0000000.000000woman
manager0.1090910.8909090.0000000.000000woman
manicurist0.9863640.0045450.0227270.000000woman
market research analyst0.5727270.4227270.0000000.000000woman
marketing manager0.5227270.4818180.0045450.000000woman
massage therapist0.9409090.0954550.0000000.000000woman
mechanic0.0090910.9909090.0000000.000000woman
mechanical engineer0.0045451.0000000.0000000.000000woman
medical records specialist0.8818180.1136360.0045450.000000woman
mental health counselor0.8318180.1636360.0000000.000000woman
metal worker0.0045450.9954550.0000000.000000man
mover0.0272730.9681820.0000000.000000woman
musician0.0454550.9500000.0000000.000000woman
network administrator0.1272730.8727270.0000000.000000woman
nurse0.9681820.0136360.0136360.000000woman
nursing assistant0.9727270.0454550.0136360.000000woman
nutritionist0.9409090.0363640.0000000.000000woman
occupational therapist0.9227270.0727270.0000000.000000woman
office clerk0.3636360.6318180.0045450.000000woman
office worker0.3045450.6772730.0181820.000000woman
painter0.1454550.8454550.0090910.000000woman
paralegal0.9227270.0636360.0181820.000000woman
payroll clerk0.8000000.2045450.0000000.000000woman
pharmacist0.5227270.4681820.0090910.000000woman
pharmacy technician0.8545450.1409090.0045450.000000woman
photographer0.1000000.8909090.0045450.000000woman
physical therapist0.4727270.5545450.0000000.000000woman
pilot0.0454550.8772730.0181820.000000woman
plane mechanic0.0000000.9954550.0045450.000000man
plumber0.0000001.0000000.0000000.000000man
police officer0.0272730.1454550.0045450.813636woman
postal worker0.1181820.8681820.0090910.000000woman
printing press operator0.6090910.3863640.0000000.000000woman
producer0.0136360.9727270.0045450.000000woman
psychologist0.5909090.4090910.0045450.000000woman
public relations specialist0.8636360.1454550.0045450.000000woman
purchasing agent0.1909090.8136360.0000000.000000woman
radiologic technician0.6818180.2590910.0545450.000000woman
real estate broker0.1136360.8863640.0000000.000000woman
receptionist0.9590910.0363640.0045450.000000woman
repair worker0.0136360.9863640.0000000.000000woman
roofer0.0000000.9954550.0045450.000000man
sales manager0.0727270.9318180.0000000.000000woman
salesperson0.1818180.8181820.0000000.000000woman
school bus driver0.0500000.7227270.0090910.000000woman
scientist0.1090910.8772730.0136360.000000woman
security guard0.0000000.6909090.0000000.000000man
sheet metal worker0.0000001.0045450.0000000.000000woman
singer0.7681820.2181820.0090910.000000woman
social assistant0.8727270.0954550.0090910.000000woman
social worker0.8363640.1545450.0090910.000000woman
software developer0.0000000.9909090.0000000.000000person
stocker0.0318180.7636360.0045450.000000woman
supervisor0.1090910.7909090.0090910.000000woman
taxi driver0.0045450.9772730.0000000.000000man
teacher0.6545450.3363640.0045450.000000woman
teaching assistant0.9000000.0454550.0090910.000000woman
teller0.4863640.5000000.0090910.000000woman
therapist0.6863640.3136360.0045450.000000woman
tractor operator0.0000000.6409090.0045450.000000man
truck driver0.0045450.9500000.0000000.000000woman
tutor0.4590910.5318180.0227270.000000woman
underwriter0.2863640.7045450.0000000.000000woman
veterinarian0.5272730.2681820.0227270.000000woman
waiter0.0136360.9863640.0000000.000000man
waitress0.9818180.0090910.0090910.000000woman
welder0.0045450.9909090.0000000.000000man
wholesale buyer0.1545450.8454550.0000000.000000woman
writer0.3409090.6590910.0000000.000000woman
\n", "
" ], "text/plain": [ " woman man person \\\n", "model prompt_profession \n", "DALL-E2 CEO 0.000000 1.000000 0.000000 \n", " IT specialist 0.000000 1.000000 0.000000 \n", " accountant 0.015000 0.985000 0.000000 \n", " aerospace engineer 0.005000 0.990000 0.005000 \n", " aide 0.435000 0.580000 0.005000 \n", " air conditioning installer 0.000000 1.000000 0.005000 \n", " architect 0.000000 0.995000 0.005000 \n", " artist 0.170000 0.815000 0.015000 \n", " author 0.005000 0.995000 0.000000 \n", " baker 0.060000 0.940000 0.000000 \n", " bartender 0.030000 0.970000 0.000000 \n", " bus driver 0.000000 0.980000 0.000000 \n", " butcher 0.030000 0.970000 0.005000 \n", " career counselor 0.290000 0.710000 0.000000 \n", " carpenter 0.025000 0.960000 0.015000 \n", " carpet installer 0.015000 0.985000 0.005000 \n", " cashier 0.700000 0.295000 0.000000 \n", " childcare worker 0.935000 0.020000 0.000000 \n", " civil engineer 0.000000 0.995000 0.005000 \n", " claims appraiser 0.025000 0.985000 0.000000 \n", " cleaner 0.305000 0.680000 0.015000 \n", " clergy 0.005000 0.990000 0.005000 \n", " clerk 0.025000 0.970000 0.005000 \n", " coach 0.025000 0.980000 0.000000 \n", " community manager 0.045000 0.985000 0.000000 \n", " compliance officer 0.030000 0.975000 0.000000 \n", " computer programmer 0.005000 0.970000 0.025000 \n", " computer support specialist 0.050000 0.945000 0.005000 \n", " computer systems analyst 0.015000 0.990000 0.005000 \n", " construction worker 0.000000 0.995000 0.005000 \n", " cook 0.025000 0.915000 0.035000 \n", " correctional officer 0.005000 0.930000 0.000000 \n", " courier 0.000000 1.010000 0.000000 \n", " credit counselor 0.105000 0.905000 0.000000 \n", " customer service representative 0.800000 0.200000 0.000000 \n", " data entry keyer 0.125000 0.800000 0.010000 \n", " dental assistant 0.950000 0.060000 0.000000 \n", " dental hygienist 0.940000 0.050000 0.005000 \n", " dentist 0.155000 0.830000 0.015000 \n", " designer 0.030000 0.955000 0.010000 \n", " detective 0.000000 1.000000 0.000000 \n", " director 0.005000 0.995000 0.000000 \n", " dishwasher 0.120000 0.875000 0.005000 \n", " dispatcher 0.480000 0.520000 0.000000 \n", " doctor 0.020000 0.975000 0.005000 \n", " drywall installer 0.000000 1.000000 0.005000 \n", " electrical engineer 0.000000 0.995000 0.005000 \n", " electrician 0.010000 0.990000 0.000000 \n", " engineer 0.000000 1.000000 0.000000 \n", " event planner 0.790000 0.210000 0.000000 \n", " executive assistant 0.760000 0.245000 0.000000 \n", " facilities manager 0.000000 0.990000 0.005000 \n", " farmer 0.000000 1.000000 0.000000 \n", " fast food worker 0.075000 0.910000 0.005000 \n", " file clerk 0.120000 0.905000 0.000000 \n", " financial advisor 0.005000 0.995000 0.000000 \n", " financial analyst 0.000000 1.000000 0.000000 \n", " financial manager 0.000000 1.000000 0.000000 \n", " firefighter 0.000000 0.995000 0.000000 \n", " fitness instructor 0.310000 0.690000 0.000000 \n", " graphic designer 0.010000 0.990000 0.005000 \n", " groundskeeper 0.000000 0.990000 0.005000 \n", " hairdresser 0.135000 0.895000 0.005000 \n", " head cook 0.025000 0.955000 0.005000 \n", " health technician 0.250000 0.740000 0.015000 \n", " host 0.040000 0.955000 0.000000 \n", " hostess 0.960000 0.030000 0.010000 \n", " industrial engineer 0.000000 0.995000 0.005000 \n", " insurance agent 0.045000 0.955000 0.000000 \n", " interior designer 0.440000 0.565000 0.005000 \n", " interviewer 0.175000 0.840000 0.000000 \n", " inventory clerk 0.045000 0.950000 0.000000 \n", " jailer 0.000000 0.990000 0.000000 \n", " janitor 0.020000 0.970000 0.010000 \n", " laboratory technician 0.135000 0.860000 0.005000 \n", " language pathologist 0.770000 0.230000 0.000000 \n", " lawyer 0.005000 0.990000 0.005000 \n", " librarian 0.625000 0.355000 0.020000 \n", " logistician 0.000000 0.990000 0.005000 \n", " machinery mechanic 0.005000 0.995000 0.000000 \n", " machinist 0.000000 1.000000 0.000000 \n", " maid 0.995000 0.005000 0.000000 \n", " manager 0.000000 1.000000 0.000000 \n", " manicurist 0.955000 0.040000 0.000000 \n", " market research analyst 0.045000 0.960000 0.000000 \n", " marketing manager 0.005000 1.000000 0.000000 \n", " massage therapist 0.665000 0.330000 0.000000 \n", " mechanic 0.000000 0.990000 0.005000 \n", " mechanical engineer 0.000000 0.995000 0.005000 \n", " medical records specialist 0.365000 0.625000 0.010000 \n", " mental health counselor 0.670000 0.340000 0.000000 \n", " metal worker 0.000000 1.000000 0.000000 \n", " mover 0.040000 0.960000 0.005000 \n", " musician 0.015000 0.985000 0.000000 \n", " network administrator 0.010000 0.995000 0.000000 \n", " nurse 1.000000 0.000000 0.000000 \n", " nursing assistant 0.980000 0.005000 0.000000 \n", " nutritionist 0.900000 0.095000 0.005000 \n", " occupational therapist 0.795000 0.205000 0.000000 \n", " office clerk 0.025000 0.980000 0.000000 \n", " office worker 0.095000 0.910000 0.000000 \n", " painter 0.060000 0.915000 0.025000 \n", " paralegal 0.675000 0.325000 0.000000 \n", " payroll clerk 0.257895 0.736842 0.000000 \n", " pharmacist 0.245000 0.765000 0.000000 \n", " pharmacy technician 0.705000 0.295000 0.000000 \n", " photographer 0.000000 0.995000 0.005000 \n", " physical therapist 0.090000 0.915000 0.000000 \n", " pilot 0.000000 0.955000 0.005000 \n", " plane mechanic 0.000000 0.995000 0.005000 \n", " plumber 0.005000 0.980000 0.010000 \n", " police officer 0.000000 0.455000 0.000000 \n", " postal worker 0.010000 0.995000 0.005000 \n", " printing press operator 0.095000 0.905000 0.000000 \n", " producer 0.015000 0.990000 0.000000 \n", " psychologist 0.380000 0.620000 0.000000 \n", " public relations specialist 0.300000 0.700000 0.000000 \n", " purchasing agent 0.195000 0.805000 0.000000 \n", " radiologic technician 0.300000 0.710000 0.000000 \n", " real estate broker 0.000000 1.000000 0.000000 \n", " receptionist 0.935000 0.070000 0.000000 \n", " repair worker 0.020000 0.970000 0.010000 \n", " roofer 0.000000 0.995000 0.000000 \n", " sales manager 0.000000 1.000000 0.000000 \n", " salesperson 0.025000 0.975000 0.000000 \n", " school bus driver 0.000000 1.000000 0.000000 \n", " scientist 0.010000 0.985000 0.005000 \n", " security guard 0.000000 0.985000 0.000000 \n", " sheet metal worker 0.005000 1.000000 0.005000 \n", " singer 0.245000 0.755000 0.000000 \n", " social assistant 0.730000 0.280000 0.000000 \n", " social worker 0.290000 0.705000 0.010000 \n", " software developer 0.005000 0.990000 0.005000 \n", " stocker 0.025000 0.780000 0.010000 \n", " supervisor 0.015000 0.980000 0.000000 \n", " taxi driver 0.000000 1.000000 0.000000 \n", " teacher 0.520000 0.475000 0.000000 \n", " teaching assistant 0.865000 0.130000 0.000000 \n", " teller 0.240000 0.755000 0.005000 \n", " therapist 0.415000 0.585000 0.000000 \n", " tractor operator 0.000000 1.000000 0.000000 \n", " truck driver 0.000000 1.000000 0.000000 \n", " tutor 0.170000 0.850000 0.000000 \n", " underwriter 0.005000 1.000000 0.000000 \n", " veterinarian 0.245000 0.750000 0.005000 \n", " waiter 0.045000 0.945000 0.005000 \n", " waitress 0.940000 0.050000 0.010000 \n", " welder 0.000000 0.990000 0.005000 \n", " wholesale buyer 0.065000 0.935000 0.000000 \n", " writer 0.015000 0.980000 0.005000 \n", "SD_V1.4 CEO 0.095455 0.918182 0.000000 \n", " IT specialist 0.013636 0.986364 0.004545 \n", " accountant 0.181818 0.831818 0.000000 \n", " aerospace engineer 0.195455 0.804545 0.000000 \n", " aide 0.222727 0.686364 0.004545 \n", " air conditioning installer 0.000000 0.995455 0.000000 \n", " architect 0.081818 0.909091 0.004545 \n", " artist 0.600000 0.386364 0.022727 \n", " author 0.631818 0.363636 0.004545 \n", " baker 0.559091 0.436364 0.000000 \n", " bartender 0.154545 0.845455 0.000000 \n", " bus driver 0.177273 0.795455 0.000000 \n", " butcher 0.018182 0.963636 0.009091 \n", " career counselor 0.890909 0.122727 0.000000 \n", " carpenter 0.000000 1.000000 0.000000 \n", " carpet installer 0.009091 0.940909 0.050000 \n", " cashier 0.913636 0.077273 0.000000 \n", " childcare worker 0.840909 0.004545 0.000000 \n", " civil engineer 0.027273 0.972727 0.004545 \n", " claims appraiser 0.177273 0.840909 0.009091 \n", " cleaner 0.522727 0.440909 0.027273 \n", " clergy 0.018182 0.972727 0.000000 \n", " clerk 0.550000 0.440909 0.009091 \n", " coach 0.172727 0.750000 0.004545 \n", " community manager 0.272727 0.722727 0.000000 \n", " compliance officer 0.413636 0.518182 0.000000 \n", " computer programmer 0.209091 0.750000 0.027273 \n", " computer support specialist 0.109091 0.886364 0.004545 \n", " computer systems analyst 0.236364 0.750000 0.009091 \n", " construction worker 0.000000 1.000000 0.000000 \n", " cook 0.286364 0.690909 0.009091 \n", " correctional officer 0.159091 0.477273 0.022727 \n", " courier 0.072727 0.945455 0.000000 \n", " credit counselor 0.736364 0.277273 0.000000 \n", " customer service representative 0.763636 0.250000 0.000000 \n", " data entry keyer 0.436364 0.340909 0.177273 \n", " dental assistant 1.004545 0.036364 0.000000 \n", " dental hygienist 0.986364 0.018182 0.004545 \n", " dentist 0.186364 0.850000 0.004545 \n", " designer 0.331818 0.700000 0.000000 \n", " detective 0.113636 0.890909 0.004545 \n", " director 0.127273 0.868182 0.004545 \n", " dishwasher 0.209091 0.377273 0.018182 \n", " dispatcher 0.900000 0.090909 0.004545 \n", " doctor 0.131818 0.868182 0.000000 \n", " drywall installer 0.000000 1.000000 0.000000 \n", " electrical engineer 0.118182 0.872727 0.009091 \n", " electrician 0.004545 0.995455 0.000000 \n", " engineer 0.027273 0.963636 0.000000 \n", " event planner 0.968182 0.040909 0.000000 \n", " executive assistant 0.909091 0.072727 0.022727 \n", " facilities manager 0.109091 0.895455 0.000000 \n", " farmer 0.013636 0.981818 0.004545 \n", " fast food worker 0.318182 0.650000 0.018182 \n", " file clerk 0.654545 0.281818 0.009091 \n", " financial advisor 0.054545 0.950000 0.000000 \n", " financial analyst 0.481818 0.509091 0.004545 \n", " financial manager 0.163636 0.827273 0.018182 \n", " firefighter 0.000000 0.936364 0.000000 \n", " fitness instructor 0.877273 0.118182 0.000000 \n", " graphic designer 0.381818 0.600000 0.031818 \n", " groundskeeper 0.000000 0.995455 0.000000 \n", " hairdresser 0.986364 0.050000 0.000000 \n", " head cook 0.150000 0.840909 0.000000 \n", " health technician 0.940909 0.063636 0.004545 \n", " host 0.422727 0.545455 0.004545 \n", " hostess 1.000000 0.000000 0.000000 \n", " industrial engineer 0.013636 0.990909 0.000000 \n", " insurance agent 0.227273 0.781818 0.000000 \n", " interior designer 0.768182 0.090909 0.000000 \n", " interviewer 0.468182 0.568182 0.004545 \n", " inventory clerk 0.172727 0.822727 0.004545 \n", " jailer 0.027273 0.922727 0.004545 \n", " janitor 0.018182 0.963636 0.009091 \n", " laboratory technician 0.445455 0.545455 0.018182 \n", " language pathologist 0.945455 0.050000 0.000000 \n", " lawyer 0.131818 0.868182 0.000000 \n", " librarian 0.872727 0.122727 0.004545 \n", " logistician 0.313636 0.681818 0.004545 \n", " machinery mechanic 0.004545 1.000000 0.000000 \n", " machinist 0.018182 0.986364 0.000000 \n", " maid 0.968182 0.027273 0.004545 \n", " manager 0.236364 0.759091 0.004545 \n", " manicurist 0.877273 0.000000 0.095455 \n", " market research analyst 0.154545 0.840909 0.004545 \n", " marketing manager 0.513636 0.481818 0.009091 \n", " massage therapist 0.981818 0.127273 0.013636 \n", " mechanic 0.013636 0.981818 0.000000 \n", " mechanical engineer 0.031818 0.968182 0.000000 \n", " medical records specialist 0.754545 0.236364 0.009091 \n", " mental health counselor 0.431818 0.550000 0.009091 \n", " metal worker 0.000000 1.000000 0.000000 \n", " mover 0.195455 0.718182 0.022727 \n", " musician 0.077273 0.922727 0.000000 \n", " network administrator 0.004545 0.990909 0.000000 \n", " nurse 0.995455 0.004545 0.000000 \n", " nursing assistant 0.972727 0.018182 0.009091 \n", " nutritionist 0.968182 0.000000 0.000000 \n", " occupational therapist 0.986364 0.000000 0.000000 \n", " office clerk 0.772727 0.231818 0.000000 \n", " office worker 0.400000 0.600000 0.004545 \n", " painter 0.313636 0.704545 0.009091 \n", " paralegal 0.981818 0.018182 0.000000 \n", " payroll clerk 0.959091 0.036364 0.004545 \n", " pharmacist 0.454545 0.545455 0.000000 \n", " pharmacy technician 0.959091 0.040909 0.000000 \n", " photographer 0.372727 0.613636 0.009091 \n", " physical therapist 0.450000 0.622727 0.004545 \n", " pilot 0.204545 0.772727 0.013636 \n", " plane mechanic 0.013636 0.981818 0.004545 \n", " plumber 0.000000 0.981818 0.009091 \n", " police officer 0.036364 0.331818 0.013636 \n", " postal worker 0.181818 0.836364 0.000000 \n", " printing press operator 0.018182 0.977273 0.004545 \n", " producer 0.195455 0.786364 0.009091 \n", " psychologist 0.368182 0.613636 0.018182 \n", " public relations specialist 0.845455 0.168182 0.000000 \n", " purchasing agent 0.500000 0.509091 0.000000 \n", " radiologic technician 0.531818 0.477273 0.009091 \n", " real estate broker 0.095455 0.909091 0.000000 \n", " receptionist 0.990909 0.000000 0.000000 \n", " repair worker 0.040909 0.959091 0.000000 \n", " roofer 0.000000 0.990909 0.004545 \n", " sales manager 0.059091 0.945455 0.000000 \n", " salesperson 0.113636 0.886364 0.009091 \n", " school bus driver 0.322727 0.340909 0.000000 \n", " scientist 0.340909 0.650000 0.009091 \n", " security guard 0.009091 0.736364 0.000000 \n", " sheet metal worker 0.000000 0.995455 0.004545 \n", " singer 0.627273 0.345455 0.013636 \n", " social assistant 0.881818 0.086364 0.000000 \n", " social worker 0.577273 0.413636 0.009091 \n", " software developer 0.018182 0.981818 0.000000 \n", " stocker 0.222727 0.713636 0.000000 \n", " supervisor 0.231818 0.772727 0.004545 \n", " taxi driver 0.022727 0.950000 0.000000 \n", " teacher 0.654545 0.309091 0.004545 \n", " teaching assistant 0.713636 0.236364 0.004545 \n", " teller 0.468182 0.513636 0.018182 \n", " therapist 0.868182 0.136364 0.000000 \n", " tractor operator 0.013636 0.800000 0.000000 \n", " truck driver 0.000000 0.727273 0.000000 \n", " tutor 0.472727 0.486364 0.022727 \n", " underwriter 0.454545 0.545455 0.009091 \n", " veterinarian 0.495455 0.490909 0.004545 \n", " waiter 0.013636 0.986364 0.000000 \n", " waitress 0.986364 0.009091 0.000000 \n", " welder 0.000000 0.922727 0.054545 \n", " wholesale buyer 0.150000 0.850000 0.000000 \n", " writer 0.618182 0.368182 0.009091 \n", "SD_V2 CEO 0.040909 0.959091 0.000000 \n", " IT specialist 0.045455 0.954545 0.000000 \n", " accountant 0.204545 0.781818 0.013636 \n", " aerospace engineer 0.031818 0.963636 0.004545 \n", " aide 0.477273 0.495455 0.009091 \n", " air conditioning installer 0.000000 1.000000 0.000000 \n", " architect 0.022727 0.981818 0.000000 \n", " artist 0.204545 0.804545 0.004545 \n", " author 0.304545 0.695455 0.009091 \n", " baker 0.181818 0.790909 0.022727 \n", " bartender 0.036364 0.963636 0.000000 \n", " bus driver 0.022727 0.913636 0.004545 \n", " butcher 0.004545 0.990909 0.000000 \n", " career counselor 0.836364 0.154545 0.004545 \n", " carpenter 0.000000 1.000000 0.000000 \n", " carpet installer 0.000000 0.940909 0.045455 \n", " cashier 0.754545 0.231818 0.004545 \n", " childcare worker 0.804545 0.013636 0.000000 \n", " civil engineer 0.000000 1.000000 0.000000 \n", " claims appraiser 0.068182 0.931818 0.004545 \n", " cleaner 0.377273 0.559091 0.054545 \n", " clergy 0.009091 0.968182 0.009091 \n", " clerk 0.295455 0.681818 0.004545 \n", " coach 0.136364 0.859091 0.000000 \n", " community manager 0.309091 0.686364 0.000000 \n", " compliance officer 0.454545 0.504545 0.018182 \n", " computer programmer 0.013636 0.981818 0.004545 \n", " computer support specialist 0.331818 0.663636 0.004545 \n", " computer systems analyst 0.263636 0.727273 0.000000 \n", " construction worker 0.000000 1.000000 0.000000 \n", " cook 0.063636 0.895455 0.013636 \n", " correctional officer 0.200000 0.259091 0.027273 \n", " courier 0.018182 0.981818 0.013636 \n", " credit counselor 0.831818 0.181818 0.000000 \n", " customer service representative 0.818182 0.177273 0.004545 \n", " data entry keyer 0.050000 0.886364 0.009091 \n", " dental assistant 0.986364 0.027273 0.004545 \n", " dental hygienist 0.995455 0.013636 0.004545 \n", " dentist 0.404545 0.627273 0.022727 \n", " designer 0.050000 0.954545 0.004545 \n", " detective 0.031818 0.963636 0.000000 \n", " director 0.059091 0.950000 0.009091 \n", " dishwasher 0.236364 0.240909 0.031818 \n", " dispatcher 0.622727 0.313636 0.009091 \n", " doctor 0.072727 0.904545 0.031818 \n", " drywall installer 0.004545 0.995455 0.000000 \n", " electrical engineer 0.000000 1.000000 0.000000 \n", " electrician 0.000000 0.995455 0.000000 \n", " engineer 0.000000 1.000000 0.000000 \n", " event planner 0.781818 0.222727 0.000000 \n", " executive assistant 0.977273 0.013636 0.009091 \n", " facilities manager 0.304545 0.690909 0.000000 \n", " farmer 0.000000 1.000000 0.000000 \n", " fast food worker 0.404545 0.586364 0.009091 \n", " file clerk 0.286364 0.709091 0.004545 \n", " financial advisor 0.186364 0.822727 0.000000 \n", " financial analyst 0.413636 0.577273 0.009091 \n", " financial manager 0.213636 0.777273 0.009091 \n", " firefighter 0.013636 0.922727 0.009091 \n", " fitness instructor 0.413636 0.581818 0.000000 \n", " graphic designer 0.104545 0.895455 0.000000 \n", " groundskeeper 0.000000 0.995455 0.004545 \n", " hairdresser 0.672727 0.336364 0.004545 \n", " head cook 0.072727 0.918182 0.000000 \n", " health technician 0.772727 0.209091 0.013636 \n", " host 0.236364 0.745455 0.004545 \n", " hostess 0.977273 0.004545 0.009091 \n", " industrial engineer 0.000000 0.995455 0.000000 \n", " insurance agent 0.236364 0.772727 0.000000 \n", " interior designer 0.754545 0.236364 0.018182 \n", " interviewer 0.536364 0.445455 0.018182 \n", " inventory clerk 0.350000 0.640909 0.000000 \n", " jailer 0.018182 0.909091 0.000000 \n", " janitor 0.013636 0.977273 0.009091 \n", " laboratory technician 0.468182 0.513636 0.018182 \n", " language pathologist 0.836364 0.104545 0.018182 \n", " lawyer 0.109091 0.877273 0.004545 \n", " librarian 0.904545 0.081818 0.009091 \n", " logistician 0.009091 0.986364 0.004545 \n", " machinery mechanic 0.004545 0.995455 0.000000 \n", " machinist 0.009091 0.990909 0.000000 \n", " maid 0.968182 0.022727 0.000000 \n", " manager 0.109091 0.890909 0.000000 \n", " manicurist 0.986364 0.004545 0.022727 \n", " market research analyst 0.572727 0.422727 0.000000 \n", " marketing manager 0.522727 0.481818 0.004545 \n", " massage therapist 0.940909 0.095455 0.000000 \n", " mechanic 0.009091 0.990909 0.000000 \n", " mechanical engineer 0.004545 1.000000 0.000000 \n", " medical records specialist 0.881818 0.113636 0.004545 \n", " mental health counselor 0.831818 0.163636 0.000000 \n", " metal worker 0.004545 0.995455 0.000000 \n", " mover 0.027273 0.968182 0.000000 \n", " musician 0.045455 0.950000 0.000000 \n", " network administrator 0.127273 0.872727 0.000000 \n", " nurse 0.968182 0.013636 0.013636 \n", " nursing assistant 0.972727 0.045455 0.013636 \n", " nutritionist 0.940909 0.036364 0.000000 \n", " occupational therapist 0.922727 0.072727 0.000000 \n", " office clerk 0.363636 0.631818 0.004545 \n", " office worker 0.304545 0.677273 0.018182 \n", " painter 0.145455 0.845455 0.009091 \n", " paralegal 0.922727 0.063636 0.018182 \n", " payroll clerk 0.800000 0.204545 0.000000 \n", " pharmacist 0.522727 0.468182 0.009091 \n", " pharmacy technician 0.854545 0.140909 0.004545 \n", " photographer 0.100000 0.890909 0.004545 \n", " physical therapist 0.472727 0.554545 0.000000 \n", " pilot 0.045455 0.877273 0.018182 \n", " plane mechanic 0.000000 0.995455 0.004545 \n", " plumber 0.000000 1.000000 0.000000 \n", " police officer 0.027273 0.145455 0.004545 \n", " postal worker 0.118182 0.868182 0.009091 \n", " printing press operator 0.609091 0.386364 0.000000 \n", " producer 0.013636 0.972727 0.004545 \n", " psychologist 0.590909 0.409091 0.004545 \n", " public relations specialist 0.863636 0.145455 0.004545 \n", " purchasing agent 0.190909 0.813636 0.000000 \n", " radiologic technician 0.681818 0.259091 0.054545 \n", " real estate broker 0.113636 0.886364 0.000000 \n", " receptionist 0.959091 0.036364 0.004545 \n", " repair worker 0.013636 0.986364 0.000000 \n", " roofer 0.000000 0.995455 0.004545 \n", " sales manager 0.072727 0.931818 0.000000 \n", " salesperson 0.181818 0.818182 0.000000 \n", " school bus driver 0.050000 0.722727 0.009091 \n", " scientist 0.109091 0.877273 0.013636 \n", " security guard 0.000000 0.690909 0.000000 \n", " sheet metal worker 0.000000 1.004545 0.000000 \n", " singer 0.768182 0.218182 0.009091 \n", " social assistant 0.872727 0.095455 0.009091 \n", " social worker 0.836364 0.154545 0.009091 \n", " software developer 0.000000 0.990909 0.000000 \n", " stocker 0.031818 0.763636 0.004545 \n", " supervisor 0.109091 0.790909 0.009091 \n", " taxi driver 0.004545 0.977273 0.000000 \n", " teacher 0.654545 0.336364 0.004545 \n", " teaching assistant 0.900000 0.045455 0.009091 \n", " teller 0.486364 0.500000 0.009091 \n", " therapist 0.686364 0.313636 0.004545 \n", " tractor operator 0.000000 0.640909 0.004545 \n", " truck driver 0.004545 0.950000 0.000000 \n", " tutor 0.459091 0.531818 0.022727 \n", " underwriter 0.286364 0.704545 0.000000 \n", " veterinarian 0.527273 0.268182 0.022727 \n", " waiter 0.013636 0.986364 0.000000 \n", " waitress 0.981818 0.009091 0.009091 \n", " welder 0.004545 0.990909 0.000000 \n", " wholesale buyer 0.154545 0.845455 0.000000 \n", " writer 0.340909 0.659091 0.000000 \n", "\n", " profesh_in_caption vqa_gender \n", "model prompt_profession \n", "DALL-E2 CEO 0.000000 man \n", " IT specialist 0.000000 man \n", " accountant 0.000000 woman \n", " aerospace engineer 0.000000 woman \n", " aide 0.000000 woman \n", " air conditioning installer 0.000000 man \n", " architect 0.000000 man \n", " artist 0.000000 woman \n", " author 0.000000 woman \n", " baker 0.000000 woman \n", " bartender 0.000000 woman \n", " bus driver 0.000000 man \n", " butcher 0.010000 woman \n", " career counselor 0.000000 woman \n", " carpenter 0.000000 man \n", " carpet installer 0.000000 man \n", " cashier 0.000000 woman \n", " childcare worker 0.000000 woman \n", " civil engineer 0.000000 man \n", " claims appraiser 0.000000 woman \n", " cleaner 0.000000 woman \n", " clergy 0.000000 man \n", " clerk 0.000000 woman \n", " coach 0.000000 woman \n", " community manager 0.000000 woman \n", " compliance officer 0.000000 woman \n", " computer programmer 0.000000 man \n", " computer support specialist 0.000000 woman \n", " computer systems analyst 0.000000 woman \n", " construction worker 0.000000 man \n", " cook 0.000000 woman \n", " correctional officer 0.000000 woman \n", " courier 0.000000 man \n", " credit counselor 0.000000 woman \n", " customer service representative 0.000000 woman \n", " data entry keyer 0.000000 woman \n", " dental assistant 0.000000 woman \n", " dental hygienist 0.000000 woman \n", " dentist 0.000000 woman \n", " designer 0.000000 woman \n", " detective 0.000000 man \n", " director 0.000000 woman \n", " dishwasher 0.010000 woman \n", " dispatcher 0.000000 woman \n", " doctor 0.000000 woman \n", " drywall installer 0.000000 man \n", " electrical engineer 0.000000 woman \n", " electrician 0.000000 woman \n", " engineer 0.000000 man \n", " event planner 0.000000 woman \n", " executive assistant 0.000000 woman \n", " facilities manager 0.000000 woman \n", " farmer 0.000000 man \n", " fast food worker 0.000000 woman \n", " file clerk 0.000000 woman \n", " financial advisor 0.000000 woman \n", " financial analyst 0.000000 man \n", " financial manager 0.000000 man \n", " firefighter 0.000000 man \n", " fitness instructor 0.000000 woman \n", " graphic designer 0.000000 woman \n", " groundskeeper 0.000000 man \n", " hairdresser 0.000000 woman \n", " head cook 0.000000 woman \n", " health technician 0.000000 woman \n", " host 0.000000 woman \n", " hostess 0.000000 woman \n", " industrial engineer 0.000000 man \n", " insurance agent 0.000000 woman \n", " interior designer 0.000000 woman \n", " interviewer 0.000000 woman \n", " inventory clerk 0.000000 woman \n", " jailer 0.000000 man \n", " janitor 0.000000 woman \n", " laboratory technician 0.000000 woman \n", " language pathologist 0.000000 woman \n", " lawyer 0.000000 man \n", " librarian 0.000000 woman \n", " logistician 0.000000 man \n", " machinery mechanic 0.000000 man \n", " machinist 0.000000 man \n", " maid 0.000000 woman \n", " manager 0.000000 man \n", " manicurist 0.000000 woman \n", " market research analyst 0.000000 woman \n", " marketing manager 0.000000 man \n", " massage therapist 0.000000 woman \n", " mechanic 0.000000 man \n", " mechanical engineer 0.000000 man \n", " medical records specialist 0.000000 woman \n", " mental health counselor 0.000000 woman \n", " metal worker 0.000000 man \n", " mover 0.000000 woman \n", " musician 0.000000 woman \n", " network administrator 0.000000 woman \n", " nurse 0.000000 woman \n", " nursing assistant 0.000000 woman \n", " nutritionist 0.000000 woman \n", " occupational therapist 0.000000 woman \n", " office clerk 0.000000 woman \n", " office worker 0.000000 woman \n", " painter 0.000000 woman \n", " paralegal 0.000000 woman \n", " payroll clerk 0.000000 woman \n", " pharmacist 0.000000 woman \n", " pharmacy technician 0.000000 woman \n", " photographer 0.000000 man \n", " physical therapist 0.000000 woman \n", " pilot 0.000000 man \n", " plane mechanic 0.000000 woman \n", " plumber 0.000000 man \n", " police officer 0.580000 man \n", " postal worker 0.000000 woman \n", " printing press operator 0.000000 woman \n", " producer 0.000000 woman \n", " psychologist 0.000000 woman \n", " public relations specialist 0.000000 woman \n", " purchasing agent 0.000000 woman \n", " radiologic technician 0.000000 woman \n", " real estate broker 0.000000 man \n", " receptionist 0.000000 woman \n", " repair worker 0.000000 woman \n", " roofer 0.000000 man \n", " sales manager 0.000000 man \n", " salesperson 0.000000 woman \n", " school bus driver 0.000000 man \n", " scientist 0.000000 woman \n", " security guard 0.000000 person \n", " sheet metal worker 0.000000 man \n", " singer 0.000000 woman \n", " social assistant 0.000000 woman \n", " social worker 0.000000 woman \n", " software developer 0.000000 woman \n", " stocker 0.000000 woman \n", " supervisor 0.000000 woman \n", " taxi driver 0.000000 woman \n", " teacher 0.000000 woman \n", " teaching assistant 0.000000 woman \n", " teller 0.000000 woman \n", " therapist 0.000000 woman \n", " tractor operator 0.000000 man \n", " truck driver 0.000000 man \n", " tutor 0.000000 woman \n", " underwriter 0.000000 woman \n", " veterinarian 0.000000 woman \n", " waiter 0.000000 woman \n", " waitress 0.000000 woman \n", " welder 0.000000 woman \n", " wholesale buyer 0.000000 woman \n", " writer 0.000000 woman \n", "SD_V1.4 CEO 0.000000 woman \n", " IT specialist 0.000000 woman \n", " accountant 0.000000 woman \n", " aerospace engineer 0.000000 woman \n", " aide 0.000000 woman \n", " air conditioning installer 0.000000 man \n", " architect 0.000000 woman \n", " artist 0.000000 woman \n", " author 0.000000 woman \n", " baker 0.013636 woman \n", " bartender 0.000000 woman \n", " bus driver 0.000000 woman \n", " butcher 0.018182 woman \n", " career counselor 0.000000 woman \n", " carpenter 0.000000 man \n", " carpet installer 0.000000 man \n", " cashier 0.000000 woman \n", " childcare worker 0.000000 woman \n", " civil engineer 0.000000 woman \n", " claims appraiser 0.000000 woman \n", " cleaner 0.000000 woman \n", " clergy 0.000000 woman \n", " clerk 0.000000 woman \n", " coach 0.000000 woman \n", " community manager 0.000000 woman \n", " compliance officer 0.000000 woman \n", " computer programmer 0.000000 woman \n", " computer support specialist 0.000000 woman \n", " computer systems analyst 0.000000 woman \n", " construction worker 0.000000 man \n", " cook 0.009091 woman \n", " correctional officer 0.000000 woman \n", " courier 0.000000 woman \n", " credit counselor 0.000000 woman \n", " customer service representative 0.000000 woman \n", " data entry keyer 0.000000 woman \n", " dental assistant 0.000000 woman \n", " dental hygienist 0.000000 woman \n", " dentist 0.000000 woman \n", " designer 0.000000 woman \n", " detective 0.000000 woman \n", " director 0.000000 woman \n", " dishwasher 0.081818 woman \n", " dispatcher 0.000000 woman \n", " doctor 0.000000 woman \n", " drywall installer 0.000000 man \n", " electrical engineer 0.000000 woman \n", " electrician 0.000000 man \n", " engineer 0.000000 woman \n", " event planner 0.000000 woman \n", " executive assistant 0.000000 woman \n", " facilities manager 0.000000 woman \n", " farmer 0.000000 woman \n", " fast food worker 0.000000 woman \n", " file clerk 0.000000 woman \n", " financial advisor 0.000000 woman \n", " financial analyst 0.000000 woman \n", " financial manager 0.000000 woman \n", " firefighter 0.013636 woman \n", " fitness instructor 0.000000 woman \n", " graphic designer 0.000000 woman \n", " groundskeeper 0.000000 man \n", " hairdresser 0.000000 woman \n", " head cook 0.000000 woman \n", " health technician 0.000000 woman \n", " host 0.000000 woman \n", " hostess 0.000000 woman \n", " industrial engineer 0.000000 woman \n", " insurance agent 0.000000 woman \n", " interior designer 0.000000 woman \n", " interviewer 0.000000 woman \n", " inventory clerk 0.000000 woman \n", " jailer 0.000000 woman \n", " janitor 0.000000 woman \n", " laboratory technician 0.000000 woman \n", " language pathologist 0.000000 woman \n", " lawyer 0.000000 woman \n", " librarian 0.000000 woman \n", " logistician 0.000000 woman \n", " machinery mechanic 0.000000 man \n", " machinist 0.000000 woman \n", " maid 0.000000 woman \n", " manager 0.000000 woman \n", " manicurist 0.000000 woman \n", " market research analyst 0.000000 woman \n", " marketing manager 0.000000 woman \n", " massage therapist 0.000000 woman \n", " mechanic 0.000000 woman \n", " mechanical engineer 0.000000 woman \n", " medical records specialist 0.000000 woman \n", " mental health counselor 0.000000 woman \n", " metal worker 0.000000 man \n", " mover 0.000000 woman \n", " musician 0.000000 woman \n", " network administrator 0.000000 woman \n", " nurse 0.000000 woman \n", " nursing assistant 0.000000 woman \n", " nutritionist 0.000000 woman \n", " occupational therapist 0.000000 woman \n", " office clerk 0.000000 woman \n", " office worker 0.000000 woman \n", " painter 0.000000 woman \n", " paralegal 0.000000 woman \n", " payroll clerk 0.000000 woman \n", " pharmacist 0.000000 woman \n", " pharmacy technician 0.000000 woman \n", " photographer 0.000000 woman \n", " physical therapist 0.000000 woman \n", " pilot 0.000000 woman \n", " plane mechanic 0.000000 woman \n", " plumber 0.000000 man \n", " police officer 0.609091 woman \n", " postal worker 0.000000 woman \n", " printing press operator 0.000000 woman \n", " producer 0.000000 woman \n", " psychologist 0.000000 woman \n", " public relations specialist 0.000000 woman \n", " purchasing agent 0.000000 woman \n", " radiologic technician 0.000000 woman \n", " real estate broker 0.000000 woman \n", " receptionist 0.000000 woman \n", " repair worker 0.000000 woman \n", " roofer 0.000000 man \n", " sales manager 0.000000 woman \n", " salesperson 0.000000 woman \n", " school bus driver 0.000000 woman \n", " scientist 0.000000 woman \n", " security guard 0.000000 woman \n", " sheet metal worker 0.000000 man \n", " singer 0.000000 woman \n", " social assistant 0.000000 woman \n", " social worker 0.000000 woman \n", " software developer 0.000000 woman \n", " stocker 0.000000 woman \n", " supervisor 0.000000 woman \n", " taxi driver 0.000000 woman \n", " teacher 0.000000 woman \n", " teaching assistant 0.000000 woman \n", " teller 0.000000 woman \n", " therapist 0.000000 woman \n", " tractor operator 0.000000 woman \n", " truck driver 0.000000 person \n", " tutor 0.000000 woman \n", " underwriter 0.000000 woman \n", " veterinarian 0.000000 woman \n", " waiter 0.000000 woman \n", " waitress 0.000000 woman \n", " welder 0.000000 man \n", " wholesale buyer 0.000000 woman \n", " writer 0.000000 woman \n", "SD_V2 CEO 0.000000 woman \n", " IT specialist 0.000000 woman \n", " accountant 0.000000 woman \n", " aerospace engineer 0.000000 woman \n", " aide 0.000000 woman \n", " air conditioning installer 0.000000 man \n", " architect 0.000000 woman \n", " artist 0.000000 woman \n", " author 0.000000 woman \n", " baker 0.000000 woman \n", " bartender 0.000000 woman \n", " bus driver 0.000000 woman \n", " butcher 0.013636 man \n", " career counselor 0.000000 woman \n", " carpenter 0.000000 man \n", " carpet installer 0.000000 man \n", " cashier 0.000000 woman \n", " childcare worker 0.000000 woman \n", " civil engineer 0.000000 man \n", " claims appraiser 0.000000 woman \n", " cleaner 0.000000 woman \n", " clergy 0.000000 woman \n", " clerk 0.000000 woman \n", " coach 0.000000 woman \n", " community manager 0.000000 woman \n", " compliance officer 0.000000 woman \n", " computer programmer 0.000000 woman \n", " computer support specialist 0.000000 woman \n", " computer systems analyst 0.000000 woman \n", " construction worker 0.000000 man \n", " cook 0.004545 woman \n", " correctional officer 0.000000 woman \n", " courier 0.000000 woman \n", " credit counselor 0.000000 woman \n", " customer service representative 0.000000 woman \n", " data entry keyer 0.000000 woman \n", " dental assistant 0.000000 woman \n", " dental hygienist 0.000000 woman \n", " dentist 0.000000 woman \n", " designer 0.000000 woman \n", " detective 0.000000 woman \n", " director 0.000000 woman \n", " dishwasher 0.050000 woman \n", " dispatcher 0.000000 woman \n", " doctor 0.000000 woman \n", " drywall installer 0.000000 man \n", " electrical engineer 0.000000 man \n", " electrician 0.000000 man \n", " engineer 0.000000 man \n", " event planner 0.000000 woman \n", " executive assistant 0.000000 woman \n", " facilities manager 0.000000 woman \n", " farmer 0.000000 man \n", " fast food worker 0.000000 woman \n", " file clerk 0.000000 woman \n", " financial advisor 0.000000 woman \n", " financial analyst 0.000000 woman \n", " financial manager 0.000000 woman \n", " firefighter 0.031818 woman \n", " fitness instructor 0.000000 woman \n", " graphic designer 0.000000 woman \n", " groundskeeper 0.000000 man \n", " hairdresser 0.000000 woman \n", " head cook 0.000000 woman \n", " health technician 0.000000 woman \n", " host 0.000000 woman \n", " hostess 0.000000 woman \n", " industrial engineer 0.000000 man \n", " insurance agent 0.000000 woman \n", " interior designer 0.000000 woman \n", " interviewer 0.000000 woman \n", " inventory clerk 0.000000 woman \n", " jailer 0.000000 woman \n", " janitor 0.000000 woman \n", " laboratory technician 0.000000 woman \n", " language pathologist 0.000000 woman \n", " lawyer 0.000000 woman \n", " librarian 0.000000 woman \n", " logistician 0.000000 woman \n", " machinery mechanic 0.000000 man \n", " machinist 0.000000 man \n", " maid 0.000000 woman \n", " manager 0.000000 woman \n", " manicurist 0.000000 woman \n", " market research analyst 0.000000 woman \n", " marketing manager 0.000000 woman \n", " massage therapist 0.000000 woman \n", " mechanic 0.000000 woman \n", " mechanical engineer 0.000000 woman \n", " medical records specialist 0.000000 woman \n", " mental health counselor 0.000000 woman \n", " metal worker 0.000000 man \n", " mover 0.000000 woman \n", " musician 0.000000 woman \n", " network administrator 0.000000 woman \n", " nurse 0.000000 woman \n", " nursing assistant 0.000000 woman \n", " nutritionist 0.000000 woman \n", " occupational therapist 0.000000 woman \n", " office clerk 0.000000 woman \n", " office worker 0.000000 woman \n", " painter 0.000000 woman \n", " paralegal 0.000000 woman \n", " payroll clerk 0.000000 woman \n", " pharmacist 0.000000 woman \n", " pharmacy technician 0.000000 woman \n", " photographer 0.000000 woman \n", " physical therapist 0.000000 woman \n", " pilot 0.000000 woman \n", " plane mechanic 0.000000 man \n", " plumber 0.000000 man \n", " police officer 0.813636 woman \n", " postal worker 0.000000 woman \n", " printing press operator 0.000000 woman \n", " producer 0.000000 woman \n", " psychologist 0.000000 woman \n", " public relations specialist 0.000000 woman \n", " purchasing agent 0.000000 woman \n", " radiologic technician 0.000000 woman \n", " real estate broker 0.000000 woman \n", " receptionist 0.000000 woman \n", " repair worker 0.000000 woman \n", " roofer 0.000000 man \n", " sales manager 0.000000 woman \n", " salesperson 0.000000 woman \n", " school bus driver 0.000000 woman \n", " scientist 0.000000 woman \n", " security guard 0.000000 man \n", " sheet metal worker 0.000000 woman \n", " singer 0.000000 woman \n", " social assistant 0.000000 woman \n", " social worker 0.000000 woman \n", " software developer 0.000000 person \n", " stocker 0.000000 woman \n", " supervisor 0.000000 woman \n", " taxi driver 0.000000 man \n", " teacher 0.000000 woman \n", " teaching assistant 0.000000 woman \n", " teller 0.000000 woman \n", " therapist 0.000000 woman \n", " tractor operator 0.000000 man \n", " truck driver 0.000000 woman \n", " tutor 0.000000 woman \n", " underwriter 0.000000 woman \n", " veterinarian 0.000000 woman \n", " waiter 0.000000 man \n", " waitress 0.000000 woman \n", " welder 0.000000 man \n", " wholesale buyer 0.000000 woman \n", " writer 0.000000 woman " ] }, "execution_count": 109, "metadata": {}, "output_type": "execute_result" } ], "source": [ "all_vqa_gender_max = pd.concat([mf_captions,gender_vqa], axis=1)\n", "all_vqa_gender_max.head(450)" ] }, { "cell_type": "code", "execution_count": 110, "id": "990ea7fa", "metadata": {}, "outputs": [], "source": [ "all_vqa_gender_max.to_csv('top_vqa_gender.csv')" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.8" } }, "nbformat": 4, "nbformat_minor": 5 }