Image to prompt with BLIP and CLIP
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

2007 lines
293 KiB

{
"cells": [
{
"cell_type": "markdown",
"metadata": {
"id": "3jm8RYrLqvzz"
},
"source": [
"# CLIP Interrogator 2 by [@pharmapsychotic](https://twitter.com/pharmapsychotic) \n",
"\n",
"<br>\n",
"\n",
"Want to figure out what a good prompt might be to create new images like an existing one? The CLIP Interrogator is here to get you answers!\n",
"\n",
"<br>\n",
"\n",
"This version is specialized for producing nice prompts for use with Stable Diffusion and achieves higher alignment between generated text prompt and source image. You can try out the old [version 1](https://colab.research.google.com/github/pharmapsychotic/clip-interrogator/blob/v1/clip_interrogator.ipynb) to see how different CLIP models ranks terms. \n",
"\n",
"<br>\n",
"\n",
"If this notebook is helpful to you please consider buying me a coffee via [ko-fi](https://ko-fi.com/pharmapsychotic) or following me on [twitter](https://twitter.com/pharmapsychotic) for more cool Ai stuff. 🙂\n",
"\n",
"And if you're looking for more Ai art tools check out my [Ai generative art tools list](https://pharmapsychotic.com/tools.html).\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"cellView": "form",
"id": "aP9FjmWxtLKJ"
},
"outputs": [],
"source": [
"#@title Check GPU\n",
"!nvidia-smi -L"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"cellView": "form",
"id": "xpPKQR40qvz2"
},
"outputs": [],
"source": [
"#@title Setup\n",
"import argparse, subprocess, sys, time\n",
"\n",
"def setup():\n",
" install_cmds = [\n",
" ['pip', 'install', 'ftfy', 'regex', 'tqdm', 'transformers==4.21.2', 'timm', 'fairscale', 'requests'],\n",
" ['pip', 'install', '-e', 'git+https://github.com/openai/CLIP.git@main#egg=clip'],\n",
" ['pip', 'install', '-e', 'git+https://github.com/pharmapsychotic/BLIP.git@lib#egg=blip'],\n",
" ['git', 'clone', '-b', 'lib', 'https://github.com/pharmapsychotic/clip-interrogator.git']\n",
" ]\n",
" for cmd in install_cmds:\n",
" print(subprocess.run(cmd, stdout=subprocess.PIPE).stdout.decode('utf-8'))\n",
"\n",
"setup()\n",
"\n",
"import sys\n",
"sys.path.append('src/blip')\n",
"sys.path.append('src/clip')\n",
"sys.path.append('clip-interrogator')\n",
"\n",
"import clip\n",
"import io\n",
"import IPython\n",
"import ipywidgets as widgets\n",
"import requests\n",
"import torch\n",
"\n",
"from PIL import Image\n",
"\n",
"from clip_interrogator import Interrogator, Config\n"
]
},
{
"cell_type": "code",
2 years ago
"execution_count": null,
"metadata": {
"cellView": "form",
"id": "8tav1bc_H3bs"
},
"outputs": [],
"source": [
"#@title Load CLIP Interrogator\n",
"clip_model_name = 'ViT-L/14' #@param ['ViT-B/32', 'ViT-B/16', 'ViT-L/14', 'ViT-L/14@336px', 'RN101', 'RN50', 'RN50x4', 'RN50x16', 'RN50x64'] {type:'string'}\n",
"\n",
"device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')\n",
2 years ago
"config = Config(device=device, clip_model_name=clip_model_name)\n",
"interrogator = Interrogator(config)\n"
2 years ago
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {
"cellView": "form",
"colab": {
"base_uri": "https://localhost:8080/",
"height": 672,
"referenced_widgets": [
"eb76a51f58cc474381257dbe953b247c",
"e5ce0601009445caa6c6fe48197e17cd",
"56e0b6f7200245b1929c5d6f89378f23",
"a890c0145aa349b192f4d4768ba10345",
"5dfae18722794d3fa35f2d27f2e14f07",
"5f893b4b7fff4c3a85017ce24e3ed793",
"ea5ed4e53cbd440290a09629af4c3cb3",
"2ac907018d87436298f99a833df31f13",
"43198175582e45bf9f375afb9ebfd083",
"455b8490b9c147dc949c5a006d99027a",
"bb81e2bc97ea466e9898c52d491d1d48",
"5781ef9c93714de6b9fca69baea2915f",
"f1e11d2330484993b9a4bb0b98812ffd",
"79f7e39d286e4ddd9eb648bc6a9f0b61",
"170ed4615d2e4e71a1bfffbb68ab3a8e",
"924e84eb07794de7bbfb2a2910638288",
"22cedf5e75df4191b003ebd054f92efd",
"f3d49e5c50764533a5e8b6eb726ae1cc",
"b35247b817094f548209b94fef00b527",
"d938c1918f744ed4ac6dff72b59901ac",
"f48cd762888e4d7184a0bf80e801ff6c",
"1d9fc065ed8d450389228ee6a0ee0c69",
"5e349bca34084f38b5cb03e135e66c89",
"7112cda660f54f3180045a59d9cf0d2a",
"c0bc58ea41c64f93bddaf553a80dc28d",
"3824ac793dbe45aba35262a2bef29adb",
"77aca46132dd4f2b8f50f7ed888f2883",
"274c6fc77112428eaf7de9c79dc2484e",
"d4aeac16b19846e1b7582e1f3ea5df54",
"36f2a1c2eaf344ec9b807bcc774769c8",
"6e037cc483cf4fb3be0eee17b9afe6a0",
"a48d5c4825564b8282ae3ff6a4314c6f",
"d27608c2600340d99c8a67e97736c524",
"27253770a6f44772bdfb950a8682d121",
"e1d616ca132f43a98d7894ea9acf412d",
"164a074d988146f7988ccab835e0a9ce",
"286c519c30154549a822d48b03dfb7bd",
"02b4cf0f6034485fb3a068b169ba1246",
"10b91600d29f488999edf8f371283941",
"be331593aae8468384708b706a2a3d0c",
"bebeb136cceb4c9f85c69ef87543b5b4",
"5effecff06f5450a87851c3c45a587eb",
"7c3d2d267d3b4abf81bb537365101b07",
"ad7b20d281a24d8c95b72455d3625057",
"86225d363686424198ab6eaf0208fc0b",
"ba9f6e05b0314b2eab3f1f07ea4e24cd",
"911462abd244449683fc8c006bd97c2e",
"6d98f13c07e34130874d0b51444329df",
"15d55c3ddde241b4bdb5067157251004",
"cd31418168314c0f81cb3a8afe4565c4",
"4dd5be2f432a40b2a89180f87da98cdc",
"3da05d4933f247aead31250cd1b0d7f0",
"b1b06c9683674cb78284c1d8632d770c"
]
},
"id": "34fmVUqjx3l7",
"outputId": "e7c4cb2f-eded-4263-c7b6-8371c88a8f18"
},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
2 years ago
"model_id": "c0bc58ea41c64f93bddaf553a80dc28d",
"version_major": 2,
2 years ago
"version_minor": 0
},
"text/plain": [
"VBox(children=(HBox(children=(Label(value='image url:'), Text(value='https://cdnb.artstation.com/p/assets/imag…"
]
},
2 years ago
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
2 years ago
"output_type": "stream",
"text": [
"\n",
"\n",
"\n"
]
},
{
"data": {
2 years ago
"image/png": "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
"text/plain": [
"<PIL.Image.Image image mode=RGB size=238x384 at 0x7F3E0A1DBA50>"
2 years ago
]
},
2 years ago
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
2 years ago
"model_id": "15d55c3ddde241b4bdb5067157251004",
"version_major": 2,
2 years ago
"version_minor": 0
},
"text/plain": [
"VBox(children=(Textarea(value='a man standing on a ledge in a futuristic city, cyberpunk art, retrofuturism, t…"
]
},
2 years ago
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"#@title Interrogate\n",
"\n",
"#@markdown Run this cell and then paste a link to an image or upload an image in the UI. Then click the Interrogate button to get a prompt suggestion.\n",
"\n",
"image_url = 'https://cdnb.artstation.com/p/assets/images/images/032/142/769/large/ignacio-bazan-lazcano-book-4-final.jpg'\n",
"\n",
"def show_ui():\n",
" go_button = widgets.Button(\n",
" description='Interrogate!',\n",
" disabled=False,\n",
" button_style='',\n",
" tooltip='Click me'\n",
" )\n",
" image_txt = widgets.Text(\n",
" value=image_url, \n",
" description='', \n",
" layout=widgets.Layout(width='50%')\n",
" )\n",
" uploader = widgets.FileUpload(accept='image/*', multiple=False)\n",
"\n",
" ui = widgets.VBox([\n",
" widgets.HBox([widgets.Label('image url:'), image_txt]),\n",
" widgets.HBox([widgets.Label('or upload:'), uploader]),\n",
" widgets.Label(''),\n",
" go_button\n",
" ])\n",
"\n",
" def go(btn):\n",
" image_url = image_txt.value\n",
" if len(uploader.value):\n",
" print(uploader.value)\n",
" print(uploader.value.items())\n",
" for name, file_info in uploader.value.items():\n",
" image = Image.open(io.BytesIO(file_info['content'])).convert('RGB')\n",
" break\n",
" else:\n",
" if str(image_url).startswith('http://') or str(image_url).startswith('https://'):\n",
" image = Image.open(requests.get(image_url, stream=True).raw).convert('RGB')\n",
" else:\n",
" image = Image.open(image_url).convert('RGB')\n",
"\n",
" IPython.display.clear_output()\n",
" print('\\n\\n')\n",
" thumb = image.copy()\n",
" thumb.thumbnail([config.blip_image_eval_size, config.blip_image_eval_size])\n",
" print(\"Interrogating...\")\n",
" display(thumb)\n",
"\n",
" prompt = interrogator.interrogate(image)\n",
" IPython.display.clear_output()\n",
" show_ui()\n",
"\n",
" print('\\n\\n')\n",
" display(thumb)\n",
" ui = widgets.VBox([\n",
" widgets.Textarea(\n",
" value=prompt,\n",
" description='prompt:',\n",
" layout=widgets.Layout(width='75%', height='6em')\n",
" )\n",
" ])\n",
" display(ui)\n",
" \n",
" go_button.on_click(go)\n",
" image_txt.on_submit(go)\n",
" display(ui)\n",
"\n",
"show_ui()"
]
}
],
"metadata": {
"accelerator": "GPU",
"colab": {
"collapsed_sections": [],
"provenance": []
},
"kernelspec": {
"display_name": "Python 3.8.10 ('venv': venv)",
"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.8.10"
},
"orig_nbformat": 4,
"vscode": {
"interpreter": {
"hash": "f7a8d9541664ade9cff251487a19c76f2dd1b4c864d158f07ee26d1b0fd5c9a1"
}
},
"widgets": {
"application/vnd.jupyter.widget-state+json": {
2 years ago
"02b4cf0f6034485fb3a068b169ba1246": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
2 years ago
"model_name": "DescriptionStyleModel",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
2 years ago
"_model_name": "DescriptionStyleModel",
"_view_count": null,
2 years ago
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"description_width": ""
}
},
2 years ago
"10b91600d29f488999edf8f371283941": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
2 years ago
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
2 years ago
"15d55c3ddde241b4bdb5067157251004": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
2 years ago
"model_name": "VBoxModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
2 years ago
"_model_name": "VBoxModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
2 years ago
"_view_name": "VBoxView",
"box_style": "",
"children": [
"IPY_MODEL_cd31418168314c0f81cb3a8afe4565c4"
],
"layout": "IPY_MODEL_4dd5be2f432a40b2a89180f87da98cdc"
}
},
2 years ago
"164a074d988146f7988ccab835e0a9ce": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
2 years ago
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
2 years ago
"170ed4615d2e4e71a1bfffbb68ab3a8e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
2 years ago
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
2 years ago
"1d9fc065ed8d450389228ee6a0ee0c69": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "DescriptionStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"description_width": ""
}
},
"22cedf5e75df4191b003ebd054f92efd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
2 years ago
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
2 years ago
"27253770a6f44772bdfb950a8682d121": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
2 years ago
"model_name": "LabelModel",
"state": {
2 years ago
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
2 years ago
"_model_name": "LabelModel",
"_view_count": null,
2 years ago
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "LabelView",
"description": "",
"description_tooltip": null,
"layout": "IPY_MODEL_86225d363686424198ab6eaf0208fc0b",
"placeholder": "",
"style": "IPY_MODEL_ba9f6e05b0314b2eab3f1f07ea4e24cd",
"value": "or upload:"
}
},
2 years ago
"274c6fc77112428eaf7de9c79dc2484e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "LabelModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "LabelView",
"description": "",
"description_tooltip": null,
"layout": "IPY_MODEL_286c519c30154549a822d48b03dfb7bd",
"placeholder": "",
"style": "IPY_MODEL_02b4cf0f6034485fb3a068b169ba1246",
"value": ""
}
},
"286c519c30154549a822d48b03dfb7bd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
2 years ago
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
2 years ago
"2ac907018d87436298f99a833df31f13": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
2 years ago
"model_name": "TextModel",
"state": {
2 years ago
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
2 years ago
"_model_name": "TextModel",
"_view_count": null,
2 years ago
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "TextView",
"continuous_update": true,
"description": "",
"description_tooltip": null,
"disabled": false,
"layout": "IPY_MODEL_b35247b817094f548209b94fef00b527",
"placeholder": "",
"style": "IPY_MODEL_d938c1918f744ed4ac6dff72b59901ac",
"value": "https://cdnb.artstation.com/p/assets/images/images/032/142/769/large/ignacio-bazan-lazcano-book-4-final.jpg"
}
},
2 years ago
"36f2a1c2eaf344ec9b807bcc774769c8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
2 years ago
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
2 years ago
"3824ac793dbe45aba35262a2bef29adb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
2 years ago
"model_name": "HBoxModel",
"state": {
2 years ago
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
2 years ago
"_model_name": "HBoxModel",
"_view_count": null,
2 years ago
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "HBoxView",
"box_style": "",
"children": [
"IPY_MODEL_6e037cc483cf4fb3be0eee17b9afe6a0",
"IPY_MODEL_a48d5c4825564b8282ae3ff6a4314c6f"
],
"layout": "IPY_MODEL_d27608c2600340d99c8a67e97736c524"
}
},
2 years ago
"3da05d4933f247aead31250cd1b0d7f0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
2 years ago
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
2 years ago
"height": "6em",
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
2 years ago
"width": "75%"
}
},
2 years ago
"43198175582e45bf9f375afb9ebfd083": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
2 years ago
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
2 years ago
"455b8490b9c147dc949c5a006d99027a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
2 years ago
"model_name": "LabelModel",
"state": {
2 years ago
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
2 years ago
"_model_name": "LabelModel",
"_view_count": null,
2 years ago
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "LabelView",
"description": "",
"description_tooltip": null,
"layout": "IPY_MODEL_f48cd762888e4d7184a0bf80e801ff6c",
"placeholder": "",
"style": "IPY_MODEL_1d9fc065ed8d450389228ee6a0ee0c69",
"value": "or upload:"
}
},
2 years ago
"4dd5be2f432a40b2a89180f87da98cdc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
2 years ago
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
2 years ago
"56e0b6f7200245b1929c5d6f89378f23": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
2 years ago
"model_name": "HBoxModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
2 years ago
"_model_name": "HBoxModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
2 years ago
"_view_name": "HBoxView",
"box_style": "",
"children": [
2 years ago
"IPY_MODEL_455b8490b9c147dc949c5a006d99027a",
"IPY_MODEL_bb81e2bc97ea466e9898c52d491d1d48"
],
2 years ago
"layout": "IPY_MODEL_5781ef9c93714de6b9fca69baea2915f"
}
},
2 years ago
"5781ef9c93714de6b9fca69baea2915f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
2 years ago
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
2 years ago
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
2 years ago
"5dfae18722794d3fa35f2d27f2e14f07": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
2 years ago
"model_name": "ButtonModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
2 years ago
"_model_name": "ButtonModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "ButtonView",
"button_style": "",
"description": "Interrogate!",
"disabled": false,
"icon": "",
2 years ago
"layout": "IPY_MODEL_170ed4615d2e4e71a1bfffbb68ab3a8e",
"style": "IPY_MODEL_924e84eb07794de7bbfb2a2910638288",
"tooltip": "Click me"
}
},
2 years ago
"5e349bca34084f38b5cb03e135e66c89": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
2 years ago
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
2 years ago
"5effecff06f5450a87851c3c45a587eb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
2 years ago
"model_name": "DescriptionStyleModel",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
2 years ago
"_model_name": "DescriptionStyleModel",
"_view_count": null,
2 years ago
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"description_width": ""
}
},
2 years ago
"5f893b4b7fff4c3a85017ce24e3ed793": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
2 years ago
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
2 years ago
"6d98f13c07e34130874d0b51444329df": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "ButtonStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"button_color": null,
"font_weight": ""
}
},
"6e037cc483cf4fb3be0eee17b9afe6a0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
2 years ago
"model_name": "LabelModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "LabelModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "LabelView",
"description": "",
"description_tooltip": null,
2 years ago
"layout": "IPY_MODEL_bebeb136cceb4c9f85c69ef87543b5b4",
"placeholder": "",
2 years ago
"style": "IPY_MODEL_5effecff06f5450a87851c3c45a587eb",
"value": "image url:"
}
},
2 years ago
"7112cda660f54f3180045a59d9cf0d2a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
2 years ago
"model_name": "ButtonStyleModel",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "ButtonStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"button_color": null,
"font_weight": ""
}
},
"77aca46132dd4f2b8f50f7ed888f2883": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
2 years ago
"_model_name": "HBoxModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
2 years ago
"_view_name": "HBoxView",
"box_style": "",
"children": [
"IPY_MODEL_27253770a6f44772bdfb950a8682d121",
"IPY_MODEL_e1d616ca132f43a98d7894ea9acf412d"
],
"layout": "IPY_MODEL_164a074d988146f7988ccab835e0a9ce"
}
},
2 years ago
"79f7e39d286e4ddd9eb648bc6a9f0b61": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "DescriptionStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"description_width": ""
}
},
"7c3d2d267d3b4abf81bb537365101b07": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
2 years ago
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
2 years ago
"width": "50%"
}
},
2 years ago
"86225d363686424198ab6eaf0208fc0b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
2 years ago
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
2 years ago
"911462abd244449683fc8c006bd97c2e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
2 years ago
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
2 years ago
"924e84eb07794de7bbfb2a2910638288": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
2 years ago
"model_name": "ButtonStyleModel",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "ButtonStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"button_color": null,
"font_weight": ""
}
},
2 years ago
"a48d5c4825564b8282ae3ff6a4314c6f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
2 years ago
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "TextModel",
"_view_count": null,
2 years ago
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "TextView",
"continuous_update": true,
"description": "",
"description_tooltip": null,
"disabled": false,
"layout": "IPY_MODEL_7c3d2d267d3b4abf81bb537365101b07",
"placeholder": "",
"style": "IPY_MODEL_ad7b20d281a24d8c95b72455d3625057",
"value": "https://cdnb.artstation.com/p/assets/images/images/032/142/769/large/ignacio-bazan-lazcano-book-4-final.jpg"
}
},
2 years ago
"a890c0145aa349b192f4d4768ba10345": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "LabelModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "LabelView",
"description": "",
"description_tooltip": null,
"layout": "IPY_MODEL_f1e11d2330484993b9a4bb0b98812ffd",
"placeholder": "",
"style": "IPY_MODEL_79f7e39d286e4ddd9eb648bc6a9f0b61",
"value": ""
}
},
"ad7b20d281a24d8c95b72455d3625057": {
"model_module": "@jupyter-widgets/controls",
2 years ago
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
2 years ago
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "DescriptionStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"description_width": ""
}
},
"b1b06c9683674cb78284c1d8632d770c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
2 years ago
"model_name": "DescriptionStyleModel",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "DescriptionStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"description_width": ""
}
},
2 years ago
"b35247b817094f548209b94fef00b527": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
2 years ago
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": "50%"
}
},
2 years ago
"ba9f6e05b0314b2eab3f1f07ea4e24cd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
2 years ago
"model_name": "DescriptionStyleModel",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "DescriptionStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"description_width": ""
}
},
2 years ago
"bb81e2bc97ea466e9898c52d491d1d48": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FileUploadModel",
"state": {
"_counter": 0,
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "FileUploadModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "FileUploadView",
"accept": "image/*",
"button_style": "",
"data": [],
"description": "Upload",
"description_tooltip": null,
"disabled": false,
"error": "",
"icon": "upload",
"layout": "IPY_MODEL_5e349bca34084f38b5cb03e135e66c89",
"metadata": [],
"multiple": false,
"style": "IPY_MODEL_7112cda660f54f3180045a59d9cf0d2a"
}
},
"be331593aae8468384708b706a2a3d0c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "ButtonStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"button_color": null,
"font_weight": ""
}
},
"bebeb136cceb4c9f85c69ef87543b5b4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
2 years ago
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
2 years ago
"c0bc58ea41c64f93bddaf553a80dc28d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
2 years ago
"model_name": "VBoxModel",
"state": {
2 years ago
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
2 years ago
"_model_name": "VBoxModel",
"_view_count": null,
2 years ago
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "VBoxView",
"box_style": "",
"children": [
"IPY_MODEL_3824ac793dbe45aba35262a2bef29adb",
"IPY_MODEL_77aca46132dd4f2b8f50f7ed888f2883",
"IPY_MODEL_274c6fc77112428eaf7de9c79dc2484e",
"IPY_MODEL_d4aeac16b19846e1b7582e1f3ea5df54"
],
"layout": "IPY_MODEL_36f2a1c2eaf344ec9b807bcc774769c8"
}
},
2 years ago
"cd31418168314c0f81cb3a8afe4565c4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextareaModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "TextareaModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "TextareaView",
"continuous_update": true,
"description": "prompt:",
"description_tooltip": null,
"disabled": false,
"layout": "IPY_MODEL_3da05d4933f247aead31250cd1b0d7f0",
"placeholder": "",
"rows": null,
"style": "IPY_MODEL_b1b06c9683674cb78284c1d8632d770c",
"value": "a man standing on a ledge in a futuristic city, cyberpunk art, retrofuturism, the wolf among us, blacklight, space dandy, protagonist in foreground, official concept art, art foreground : eloy morales, in 2 0 5 5, neon blue, city below, neuromancer, neo tokyo"
}
},
"d27608c2600340d99c8a67e97736c524": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
2 years ago
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
2 years ago
"d4aeac16b19846e1b7582e1f3ea5df54": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
2 years ago
"model_name": "ButtonModel",
"state": {
2 years ago
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
2 years ago
"_model_name": "ButtonModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "ButtonView",
"button_style": "",
"description": "Interrogate!",
"disabled": false,
"icon": "",
"layout": "IPY_MODEL_10b91600d29f488999edf8f371283941",
"style": "IPY_MODEL_be331593aae8468384708b706a2a3d0c",
"tooltip": "Click me"
}
},
"d938c1918f744ed4ac6dff72b59901ac": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "DescriptionStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
2 years ago
"description_width": ""
}
},
2 years ago
"e1d616ca132f43a98d7894ea9acf412d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
2 years ago
"model_name": "FileUploadModel",
"state": {
2 years ago
"_counter": 0,
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
2 years ago
"_model_name": "FileUploadModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
2 years ago
"_view_name": "FileUploadView",
"accept": "image/*",
"button_style": "",
"data": [],
"description": "Upload",
"description_tooltip": null,
"disabled": false,
"error": "",
"icon": "upload",
"layout": "IPY_MODEL_911462abd244449683fc8c006bd97c2e",
"metadata": [],
"multiple": false,
"style": "IPY_MODEL_6d98f13c07e34130874d0b51444329df"
}
},
"e5ce0601009445caa6c6fe48197e17cd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "HBoxModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "HBoxView",
"box_style": "",
"children": [
2 years ago
"IPY_MODEL_ea5ed4e53cbd440290a09629af4c3cb3",
"IPY_MODEL_2ac907018d87436298f99a833df31f13"
],
2 years ago
"layout": "IPY_MODEL_43198175582e45bf9f375afb9ebfd083"
}
},
2 years ago
"ea5ed4e53cbd440290a09629af4c3cb3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
2 years ago
"model_name": "LabelModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
2 years ago
"_model_name": "LabelModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
2 years ago
"_view_name": "LabelView",
"description": "",
"description_tooltip": null,
2 years ago
"layout": "IPY_MODEL_22cedf5e75df4191b003ebd054f92efd",
"placeholder": "",
2 years ago
"style": "IPY_MODEL_f3d49e5c50764533a5e8b6eb726ae1cc",
"value": "image url:"
}
},
2 years ago
"eb76a51f58cc474381257dbe953b247c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "VBoxModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "VBoxView",
"box_style": "",
"children": [
"IPY_MODEL_e5ce0601009445caa6c6fe48197e17cd",
"IPY_MODEL_56e0b6f7200245b1929c5d6f89378f23",
"IPY_MODEL_a890c0145aa349b192f4d4768ba10345",
"IPY_MODEL_5dfae18722794d3fa35f2d27f2e14f07"
],
"layout": "IPY_MODEL_5f893b4b7fff4c3a85017ce24e3ed793"
}
},
"f1e11d2330484993b9a4bb0b98812ffd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
2 years ago
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
2 years ago
"f3d49e5c50764533a5e8b6eb726ae1cc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "DescriptionStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"description_width": ""
}
},
"f48cd762888e4d7184a0bf80e801ff6c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
2 years ago
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
2 years ago
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
2 years ago
"width": null
}
}
}
}
},
"nbformat": 4,
"nbformat_minor": 0
2 years ago
}