From 9d567be321ac81711fe6fd93599f27aca39ee2e7 Mon Sep 17 00:00:00 2001 From: Inga Ulusoy Date: Thu, 13 Jun 2024 13:37:29 +0200 Subject: [PATCH] update notebook --- ammico/notebooks/DemoNotebook_ammico.ipynb | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/ammico/notebooks/DemoNotebook_ammico.ipynb b/ammico/notebooks/DemoNotebook_ammico.ipynb index bc26651d..69b8ee38 100644 --- a/ammico/notebooks/DemoNotebook_ammico.ipynb +++ b/ammico/notebooks/DemoNotebook_ammico.ipynb @@ -258,9 +258,7 @@ "outputs": [], "source": [ "for num, key in tqdm(enumerate(image_dict.keys()), total=len(image_dict)): # loop through all images\n", - " print(image_dict[key])\n", " image_dict[key] = ammico.EmotionDetector(image_dict[key]).analyse_image() # analyse image with EmotionDetector and update dict\n", - " print(image_dict[key])\n", " if num % dump_every == 0 or num == len(image_dict) - 1: # save results every dump_every to dump_file\n", " image_df = ammico.get_dataframe(image_dict)\n", " image_df.to_csv(dump_file)" @@ -282,16 +280,6 @@ "`TextDetector`:" ] }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "os.environ.pop(\"DISCLOSURE_AMMICO\")\n", - "os.environ.get(\"DISCLOSURE_AMMICO\")" - ] - }, { "cell_type": "code", "execution_count": null,