{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# How many of the functions are actually used?\n", "\n", "In this notebook we'll import data about functions that [we've harvested earlier](harvesting_functions_from_recordsearch.ipynb) and search for each of these functions in RecordSearch to see how many are actually used." ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "import json\n", "\n", "import altair as alt\n", "import pandas as pd\n", "from recordsearch_data_scraper.scrapers import RSAgencySearch\n", "from tqdm.auto import tqdm" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Load and prepare the data" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "# Load the JSON file we've already harvested\n", "with open(\"data/functions.json\", \"r\") as json_file:\n", " functions = json.load(json_file)" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "def get_children(function):\n", " f_list = []\n", " if \"narrower\" in function:\n", " for subf in function[\"narrower\"]:\n", " f_list.append(subf[\"term\"])\n", " f_list += get_children(subf)\n", " return f_list\n", "\n", "\n", "functions_list = []\n", "for function in functions:\n", " functions_list.append(function[\"term\"])\n", " functions_list += get_children(function)" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "['accommodation services',\n", " 'acquisition',\n", " 'administrative decision appeal',\n", " 'administrative decision review',\n", " 'administrative law',\n", " 'administrative services',\n", " 'advertising standards',\n", " 'aged persons services',\n", " 'agricultural sciences',\n", " 'agriculture',\n", " 'air force',\n", " 'air force administration',\n", " 'air force commands',\n", " 'air operations',\n", " 'air safety',\n", " 'air transport',\n", " 'air transport safety',\n", " 'aircraft standards',\n", " 'airport services',\n", " 'airports',\n", " 'ambulance services',\n", " 'analytical services',\n", " 'animal and veterinary sciences',\n", " 'applications for native title',\n", " 'applied sciences',\n", " 'arbitration',\n", " 'archives administration',\n", " 'army',\n", " 'army administration',\n", " 'army commands',\n", " 'artifact export regulation',\n", " 'arts',\n", " 'arts development',\n", " 'arts funding',\n", " 'arts incentive schemes',\n", " 'arts promotion',\n", " 'associations and corporate law',\n", " 'atmospheric sciences',\n", " 'audit',\n", " 'australian capital territory',\n", " 'australian defence forces (adf)',\n", " 'banking',\n", " 'bankruptcy',\n", " 'biological sciences',\n", " 'botany',\n", " 'bounties',\n", " 'broadcasting',\n", " 'broadcasting standards',\n", " 'building',\n", " 'built environment',\n", " 'cabinet',\n", " 'call centre administration',\n", " 'carriage service providers',\n", " 'carrier licensing',\n", " 'censorship',\n", " 'censorship standards',\n", " 'census collection',\n", " 'ceremonial functions',\n", " 'chemical and pesticide regulation',\n", " 'child welfare',\n", " 'citizenship',\n", " 'civic infrastructure',\n", " 'civic management',\n", " 'civil engineering',\n", " 'civil law',\n", " 'climate information services',\n", " 'coastal surveillance',\n", " 'collection access',\n", " 'collection accessioning',\n", " 'collection acquisition',\n", " 'collection management',\n", " 'collection promotion',\n", " 'collection storage',\n", " 'colonial administration',\n", " 'commissions of inquiry',\n", " 'committees of inquiry',\n", " 'commonwealth state relations',\n", " 'communications',\n", " 'community health services',\n", " 'community policing',\n", " 'community protection',\n", " 'community services',\n", " 'community support',\n", " 'community transport',\n", " 'compensation schemes',\n", " 'conservation',\n", " 'conservation programs',\n", " 'construction',\n", " 'consular services',\n", " 'consumer affairs',\n", " 'copyright',\n", " 'copyright regulation',\n", " 'coronial law',\n", " 'corporate affairs',\n", " 'corrective services',\n", " 'counselling services',\n", " 'counterfeiting',\n", " 'courier services',\n", " 'court reporting',\n", " 'courts and tribunals',\n", " 'courts martial',\n", " 'criminal law',\n", " 'criminology',\n", " 'crown land administration',\n", " 'cultural affairs',\n", " 'cultural awards and scholarships',\n", " 'cultural festivals',\n", " 'cultural gifts programs',\n", " 'currency',\n", " 'curriculum development',\n", " 'customs',\n", " 'customs regulations',\n", " 'declaration of interests',\n", " 'defence',\n", " 'defence administration',\n", " 'defence coordination',\n", " 'defence estate management',\n", " 'defence force careers',\n", " 'defence forces',\n", " 'defence forces assistance',\n", " 'defence industries',\n", " 'defence intelligence',\n", " 'defence research',\n", " 'defence service home schemes',\n", " 'dental services',\n", " 'deportation',\n", " 'detention programs',\n", " 'development assistance programs',\n", " 'diplomatic missions',\n", " 'disability services',\n", " 'disaster recovery',\n", " 'disaster relief',\n", " 'driving licenses administration',\n", " 'early childhood education',\n", " 'earth sciences',\n", " 'education',\n", " 'education and training',\n", " 'election campaigning',\n", " 'electoral boundary assessment',\n", " 'electoral matters',\n", " 'electronic commerce',\n", " 'electronic postal services',\n", " 'emergency funding',\n", " 'emergency management',\n", " 'emergency services',\n", " 'employment',\n", " 'employment services',\n", " 'energy',\n", " 'energy resources',\n", " 'environment',\n", " 'environmental impact assessment',\n", " 'environmental monitoring',\n", " 'equipment licensing',\n", " 'equity programs',\n", " 'ethical compliance',\n", " 'exchange rates',\n", " 'excise',\n", " 'export regulation',\n", " 'exports and imports',\n", " 'expositions',\n", " 'external security',\n", " 'extraditions',\n", " 'family law',\n", " 'federal law',\n", " 'field force (army)',\n", " 'film production',\n", " 'finance management',\n", " 'financial assistance',\n", " 'financial matters',\n", " 'firefighting services',\n", " 'fiscal policy',\n", " 'fisheries regulation',\n", " 'fleet',\n", " 'flight regulation',\n", " 'foreign investment control',\n", " 'foreign policy',\n", " 'forensic analysis',\n", " 'forestry regulation',\n", " 'freight',\n", " 'freight movement regulation',\n", " 'genetics',\n", " 'goods and services',\n", " 'governance',\n", " 'government accommodation and catering',\n", " 'government media',\n", " 'government representation overseas',\n", " 'governor general',\n", " 'grants administration',\n", " 'health',\n", " 'health care',\n", " 'health insurance',\n", " 'health services',\n", " 'hearing services',\n", " 'historic memorials',\n", " 'historic relic protection',\n", " 'home savings schemes',\n", " 'horticulture',\n", " 'hospitals and clinics',\n", " 'house of representatives committees',\n", " 'housing',\n", " 'human rights',\n", " 'human rights obligations',\n", " 'hydrology',\n", " 'immigration',\n", " 'import regulation',\n", " 'income assessment',\n", " 'indigenous affairs',\n", " 'indigenous cultural heritage',\n", " 'indigenous enterprises',\n", " 'indigenous heritage conservation',\n", " 'indigenous land rights',\n", " 'indigenous settlements',\n", " 'industrial relations',\n", " 'industries',\n", " 'information management standards',\n", " 'information security',\n", " 'inspection services',\n", " 'insurance',\n", " 'intelligence',\n", " 'intelligence liaison',\n", " 'intelligence support',\n", " 'internal security',\n", " 'international affairs',\n", " 'international liaison',\n", " 'international relations',\n", " 'international security liaison',\n", " 'international trade agreements',\n", " 'international treaty participation',\n", " 'internees',\n", " 'interpreter services',\n", " 'interstate trade agreements',\n", " 'investigation',\n", " 'justice administration',\n", " 'juvenile justice',\n", " 'labour market programs',\n", " 'land transport',\n", " 'land use',\n", " 'land use planning',\n", " 'land use zoning',\n", " 'land valuation',\n", " 'language services',\n", " 'law enforcement',\n", " 'leasing',\n", " 'legal',\n", " 'legal aid',\n", " 'legal aid services',\n", " 'legal services',\n", " 'legislation',\n", " 'lighthouses',\n", " 'literature funding',\n", " 'litigation processes',\n", " 'loans',\n", " 'local laws and ordinances',\n", " 'logistics',\n", " 'logistics (air force)',\n", " 'logistics (army)',\n", " 'logistics (defence)',\n", " 'maintenance',\n", " 'marine and rural regulation',\n", " 'marine and rural support',\n", " 'marine life protection programs',\n", " 'marine science',\n", " 'maritime commands (navy)',\n", " 'maritime services',\n", " 'market regulation',\n", " 'marketing',\n", " 'mathematical sciences',\n", " 'media ownership regulation',\n", " 'mediation programs',\n", " 'medical aids regulation',\n", " 'medical and health sciences',\n", " 'medical research',\n", " 'medical research funding',\n", " 'memorials',\n", " 'metals',\n", " 'meteorology',\n", " 'migrant accommodation services',\n", " 'migrant services',\n", " 'migrant settlements programs',\n", " 'migration',\n", " 'military operations',\n", " 'mineral exploration',\n", " 'mineral resources',\n", " 'mining',\n", " 'mobile telephone services',\n", " 'multicultural heritage promotion',\n", " 'multiculturalism',\n", " 'munitions',\n", " 'national events',\n", " 'national fitness',\n", " 'national heritage',\n", " 'national land use',\n", " 'national parks',\n", " 'national referral laboratory services',\n", " 'national service',\n", " 'native title claims',\n", " 'natural disasters',\n", " 'natural heritage protection',\n", " 'naturalisation assessment',\n", " 'navigation',\n", " 'navy',\n", " 'navy administration',\n", " 'navy commands',\n", " 'navy support',\n", " 'nursing services',\n", " 'occupational health and safety',\n", " 'oceanography',\n", " 'oceans governance',\n", " 'ombudsman',\n", " 'ordnance',\n", " 'overseas aid programs',\n", " 'overseas promotion',\n", " 'overseas student scholarship programs',\n", " 'parks',\n", " 'parliamentary chamber administration',\n", " 'parliamentary committees',\n", " 'parliamentary legislation',\n", " 'parliamentary matters',\n", " 'passenger entry control',\n", " 'passenger services',\n", " 'passport services',\n", " 'passports',\n", " 'pastoral',\n", " 'patent registration',\n", " 'patents and trademarks',\n", " 'pathology',\n", " 'peacekeeping forces',\n", " 'pensions and benefits',\n", " 'personnel',\n", " 'pharmaceuticals and medical aids',\n", " 'physical sciences',\n", " 'planning',\n", " 'police administration',\n", " 'police station',\n", " 'pollutant prevention programs',\n", " 'pollution emission control',\n", " 'population-based research',\n", " 'port authorities',\n", " 'port regulation',\n", " 'postal services',\n", " 'preschool education',\n", " 'presentation arrangements',\n", " 'preservation services',\n", " 'primary education',\n", " 'primary industries',\n", " 'prisoners of war',\n", " 'privacy guideline monitoring',\n", " 'property management',\n", " 'prosecution services',\n", " 'protective services',\n", " 'public borrowing',\n", " 'public service',\n", " 'public utilities',\n", " 'publishing',\n", " 'publishing and printing',\n", " 'quarantine',\n", " 'radio broadcasting',\n", " 'radio communication',\n", " 'rail harmonisation standards',\n", " 'rail land acquisition regulation',\n", " 'rail transport',\n", " 'rail transport safety',\n", " 'railway maintenance',\n", " 'rationing and price control',\n", " 'recordkeeping standards',\n", " 'records of the government',\n", " 'recreation',\n", " 'recruitment',\n", " 'refugee services',\n", " 'refugees',\n", " 'regional development',\n", " 'rehabilitation',\n", " 'removals',\n", " 'repatriation',\n", " 'repatriation hospitals',\n", " 'rescue coordination',\n", " 'research',\n", " 'research and development',\n", " 'resources',\n", " 'retail postal services',\n", " 'retirement income',\n", " 'revenue raising',\n", " 'road safety',\n", " 'road surface maintenance',\n", " 'road traffic regulation',\n", " 'road transport',\n", " 'road transport safety',\n", " 'royal commissions',\n", " 'rural community development',\n", " 'rural field day promotion',\n", " 'rural partnership programs',\n", " 'satellite communication',\n", " 'science',\n", " 'scientific research',\n", " 'sea safety',\n", " 'sea transport',\n", " 'seat of government',\n", " 'secondary education',\n", " 'secondary industries',\n", " 'security',\n", " 'security and intelligence',\n", " 'seismography',\n", " 'settlement negotiations',\n", " 'shipbuilding',\n", " 'social and economic research',\n", " 'social justice and equity',\n", " 'social welfare',\n", " 'space science',\n", " 'spatial information research',\n", " 'sport',\n", " 'standard setting',\n", " 'statistics',\n", " 'storage',\n", " 'strategic development',\n", " 'strategic policy',\n", " 'strategic support',\n", " 'student assistance',\n", " 'superannuation',\n", " 'supreme court law',\n", " 'supreme law',\n", " 'surveillance',\n", " 'surveillance, electronic',\n", " 'survey and mapping',\n", " 'tariff',\n", " 'tariff regulation',\n", " 'tariffs',\n", " 'taxation',\n", " 'taxation compliance',\n", " 'telecommunications',\n", " 'telephone services',\n", " 'television broadcasting',\n", " 'territory administration',\n", " 'tertiary education',\n", " 'tourism',\n", " 'tourism industry development',\n", " 'tourist event promotion',\n", " 'trade',\n", " 'trade development programs',\n", " 'trade expositions',\n", " 'trade practices',\n", " 'trade skills assessment',\n", " 'trade union training',\n", " 'trademark registration',\n", " 'training',\n", " 'training (air force)',\n", " 'training (army)',\n", " 'transport',\n", " 'transport and storage',\n", " 'transport infrastructure development',\n", " 'travel authorisation',\n", " 'travel missions',\n", " 'urban development',\n", " 'urban or regional development',\n", " 'valuation',\n", " 'vehicle registration',\n", " 'vehicle standards',\n", " \"veterans' affairs\",\n", " 'visas',\n", " 'viticulture',\n", " 'vocational training schemes',\n", " 'war memorials',\n", " 'wartime security',\n", " 'waste disposal',\n", " 'water conservation plans',\n", " 'water quality monitoring',\n", " 'water resources',\n", " 'water usage management',\n", " 'waterway management',\n", " 'weights and measures',\n", " 'works',\n", " 'world heritage listings',\n", " 'zoology']" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Get rid of duplicates\n", "functions_list = set(functions_list)\n", "# Sort terms\n", "sorted(functions_list)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Search for agencies associated with each function\n", "\n", "In RecordSearch, functions are performed by agencies. So when you search for a function you get back a list of agencies. Here we'll loop through the list of functions and search for associated agencies." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "function_totals = []\n", "for function in tqdm(functions_list):\n", " agencies = RSAgencySearch(function=function)\n", " # Get the total results from each search (replace None with 0)\n", " total = agencies.total_results\n", " function_totals.append({\"function\": function, \"total\": total})" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Explore the results" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [], "source": [ "# Create a DataFrame with the results\n", "df = pd.DataFrame(function_totals)" ] }, { "cell_type": "code", "execution_count": 9, "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", "
total
count472.000000
mean27.118644
std52.554882
min0.000000
25%0.000000
50%1.000000
75%28.250000
max419.000000
\n", "
" ], "text/plain": [ " total\n", "count 472.000000\n", "mean 27.118644\n", "std 52.554882\n", "min 0.000000\n", "25% 0.000000\n", "50% 1.000000\n", "75% 28.250000\n", "max 419.000000" ] }, "execution_count": 9, "metadata": {}, "output_type": "execute_result" } ], "source": [ "df.describe()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "So 75% of all functions have less than 28 associated agencies.\n", "\n", "How many are actiually used?" ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "243\n" ] } ], "source": [ "# How many functions are actually used\n", "used = df.loc[df[\"total\"] > 0].count()\n", "print(used[\"total\"])" ] }, { "cell_type": "code", "execution_count": 11, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "51.5% of the functions are used\n" ] } ], "source": [ "percent_used = used[\"function\"] / len(functions_list)\n", "print(\"{:.1%} of the functions are used\".format(percent_used))" ] }, { "cell_type": "code", "execution_count": 12, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
functiontotal
72employment419
\n", "
" ], "text/plain": [ " function total\n", "72 employment 419" ] }, "execution_count": 12, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Most used function\n", "df.loc[df[\"total\"] == df[\"total\"].max()]" ] }, { "cell_type": "code", "execution_count": 13, "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", "
functiontotal
72employment419
340education294
226army commands286
214social welfare270
275indigenous affairs268
163training232
354housing220
203scientific research216
68migration199
417goods and services195
25customs183
36government representation overseas176
306community services175
207secondary industries173
359administrative law169
431broadcasting169
276logistics (army)166
466sea transport163
56health161
402air transport157
\n", "
" ], "text/plain": [ " function total\n", "72 employment 419\n", "340 education 294\n", "226 army commands 286\n", "214 social welfare 270\n", "275 indigenous affairs 268\n", "163 training 232\n", "354 housing 220\n", "203 scientific research 216\n", "68 migration 199\n", "417 goods and services 195\n", "25 customs 183\n", "36 government representation overseas 176\n", "306 community services 175\n", "207 secondary industries 173\n", "359 administrative law 169\n", "431 broadcasting 169\n", "276 logistics (army) 166\n", "466 sea transport 163\n", "56 health 161\n", "402 air transport 157" ] }, "execution_count": 13, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Top 20 by number of agencies\n", "df.sort_values(by=\"total\", ascending=False)[:20]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Show how agencies are distributed across functions" ] }, { "cell_type": "code", "execution_count": 14, "metadata": {}, "outputs": [ { "data": { "text/html": [ "\n", "
\n", "" ], "text/plain": [ "alt.Chart(...)" ] }, "execution_count": 14, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Bin the agencies to make it wasier to read\n", "alt.Chart(df).mark_bar().encode(\n", " x=alt.X(\"total:Q\", bin=alt.Bin(step=10), title=\"Number of associated agencies\"),\n", " y=alt.Y(\"count()\", title=\"Number of functions\"),\n", " tooltip=[\n", " alt.Tooltip(\"total:Q\", bin=alt.Bin(step=10), title=\"Agencies\"),\n", " alt.Tooltip(\"count()\", title=\"Functions\"),\n", " ],\n", ")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "----\n", "\n", "Created by [Tim Sherratt](https://timsherratt.org/) as part of the [GLAM Workbench](https://glam-workbench.github.io/)." ] } ], "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.8.12" }, "widgets": { "application/vnd.jupyter.widget-state+json": { "state": { "132887eb3eb741e38b103fccaa784f14": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "layout": "IPY_MODEL_96a9ce08768746bda50b9509488a4188", "style": "IPY_MODEL_3bc1440b1f2d4897a3eed64b2ce8afb8", "value": "100%" } }, "1cb1e8cefa704b219fba3514373c3d60": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "layout": "IPY_MODEL_5a20fa77315240688c6e539e7ea7f5be", "style": "IPY_MODEL_744fe19a71864fb19db61df482e763ec", "value": " 472/472 [04:46<00:00, 1.63it/s]" } }, "1e903c76786249ad8c5f4beaf6e5f4a8": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {} }, "28c7803eba8e42a7b159f223790df50f": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {} }, "3bc1440b1f2d4897a3eed64b2ce8afb8": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "description_width": "" } }, "3d42e859ff484ad7b6a5613f74770c0a": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "layout": "IPY_MODEL_d9396e8fa4794cc78813ef00234f9732", "style": "IPY_MODEL_8588e85d437d401ebb041bbc1839951b", "value": " 0/472 [00:00<?, ?it/s]" } }, "458801488a2443acb53696a954af3904": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "description_width": "" } }, "4ce853baa6084311ad4345306bfc6add": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "layout": "IPY_MODEL_1e903c76786249ad8c5f4beaf6e5f4a8", "style": "IPY_MODEL_be21649247ed4074bdf0f674f9e291bf", "value": " 0%" } }, "5a20fa77315240688c6e539e7ea7f5be": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {} }, "744fe19a71864fb19db61df482e763ec": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "description_width": "" } }, "784f826ea1834d16b8c9f555ec24ecd3": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "bar_style": "danger", "layout": "IPY_MODEL_c4d2edaf60bb4114aa9460667271b9d7", "max": 472, "style": "IPY_MODEL_458801488a2443acb53696a954af3904" } }, "8588e85d437d401ebb041bbc1839951b": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "description_width": "" } }, "8753fbfb6fcb4214be7458327ac7661e": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "children": [ "IPY_MODEL_4ce853baa6084311ad4345306bfc6add", "IPY_MODEL_784f826ea1834d16b8c9f555ec24ecd3", "IPY_MODEL_3d42e859ff484ad7b6a5613f74770c0a" ], "layout": "IPY_MODEL_d7ae5a19dc8e4f00aefff03b568fd7ba" } }, "8c1a5b513af34059b193d0eab57627e0": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "bar_style": "success", "layout": "IPY_MODEL_d1be9b7afcf04a62970a241c108cd3c8", "max": 472, "style": "IPY_MODEL_c01243e06fa94de4a162cc9884105c9a", "value": 472 } }, "96a9ce08768746bda50b9509488a4188": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {} }, "bce1da71c8b540398ed5cd49937b78b4": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "children": [ "IPY_MODEL_132887eb3eb741e38b103fccaa784f14", "IPY_MODEL_8c1a5b513af34059b193d0eab57627e0", "IPY_MODEL_1cb1e8cefa704b219fba3514373c3d60" ], "layout": "IPY_MODEL_28c7803eba8e42a7b159f223790df50f" } }, "be21649247ed4074bdf0f674f9e291bf": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "description_width": "" } }, "c01243e06fa94de4a162cc9884105c9a": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "description_width": "" } }, "c4d2edaf60bb4114aa9460667271b9d7": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {} }, "d1be9b7afcf04a62970a241c108cd3c8": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {} }, "d7ae5a19dc8e4f00aefff03b568fd7ba": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {} }, "d9396e8fa4794cc78813ef00234f9732": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {} } }, "version_major": 2, "version_minor": 0 } } }, "nbformat": 4, "nbformat_minor": 4 }