{
"cells": [
{
"cell_type": "markdown",
"id": "d84252d9",
"metadata": {
"id": "colab-badge",
"papermill": {
"duration": 0.002226,
"end_time": "2026-07-30T22:55:58.693860+00:00",
"exception": false,
"start_time": "2026-07-30T22:55:58.691634+00:00",
"status": "completed"
},
"tags": []
},
"source": [
"\n",
"
\n",
""
]
},
{
"cell_type": "markdown",
"id": "05795767",
"metadata": {
"papermill": {
"duration": 0.001573,
"end_time": "2026-07-30T22:55:58.706240+00:00",
"exception": false,
"start_time": "2026-07-30T22:55:58.704667+00:00",
"status": "completed"
},
"tags": []
},
"source": [
"## Using the Interpretune Neuronpedia Extension\n",
"\n",
"This tutorial demonstrates Interpretune's integration with Circuit Tracer and Neuronpedia using Gemma-3-1B-IT, guiding the user through generating and sharing a basic model attribution graph.\n",
"Future tutorials will demonstrate the use of Interpretune's analytical abstractions to\n",
"generate, transform and share more advanced model attribution graphs in the context of world model analysis, research or AI agent/application interpretability maximization.\n"
]
},
{
"cell_type": "markdown",
"id": "f68dac5b",
"metadata": {
"papermill": {
"duration": 0.001664,
"end_time": "2026-07-30T22:55:58.709475+00:00",
"exception": false,
"start_time": "2026-07-30T22:55:58.707811+00:00",
"status": "completed"
},
"tags": []
},
"source": [
"#### Notebook Parameters\n",
"\n",
"This cell contains parameters that can be modified for different test configurations using papermill.\n"
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "18868762",
"metadata": {
"execution": {
"iopub.execute_input": "2026-07-30T22:55:58.714323Z",
"iopub.status.busy": "2026-07-30T22:55:58.714125Z",
"iopub.status.idle": "2026-07-30T22:55:58.717160Z",
"shell.execute_reply": "2026-07-30T22:55:58.716498Z"
},
"papermill": {
"duration": 0.006257,
"end_time": "2026-07-30T22:55:58.717699+00:00",
"exception": false,
"start_time": "2026-07-30T22:55:58.711442+00:00",
"status": "completed"
},
"tags": [
"parameters"
]
},
"outputs": [],
"source": [
"# Parameters - These will be injected by papermill during parameterized test runs\n",
"use_baseline_salient_logits = True # logits computation mode: True->salient logits, False->specific logits\n",
"use_baseline_transcoder_arch = True # transcoder architecture: True->SingleLayerTranscoder, False->CrossLayerTranscoder\n",
"core_log_dir = None # Directory to save analysis logs (if None, a temp directory will be created)"
]
},
{
"cell_type": "code",
"execution_count": 3,
"id": "00430594",
"metadata": {
"execution": {
"iopub.execute_input": "2026-07-30T22:55:58.722772Z",
"iopub.status.busy": "2026-07-30T22:55:58.722600Z",
"iopub.status.idle": "2026-07-30T22:56:02.048800Z",
"shell.execute_reply": "2026-07-30T22:56:02.048032Z"
},
"papermill": {
"duration": 3.330137,
"end_time": "2026-07-30T22:56:02.049853+00:00",
"exception": false,
"start_time": "2026-07-30T22:55:58.719716+00:00",
"status": "completed"
},
"tags": []
},
"outputs": [],
"source": [
"# Core imports\n",
"import interpretune as it # registered analysis ops will be available as it. when analysis is imported"
]
},
{
"cell_type": "code",
"execution_count": 4,
"id": "ce7cee19",
"metadata": {
"execution": {
"iopub.execute_input": "2026-07-30T22:56:02.068628Z",
"iopub.status.busy": "2026-07-30T22:56:02.068341Z",
"iopub.status.idle": "2026-07-30T22:56:10.538522Z",
"shell.execute_reply": "2026-07-30T22:56:10.537594Z"
},
"papermill": {
"duration": 8.486498,
"end_time": "2026-07-30T22:56:10.539364+00:00",
"exception": false,
"start_time": "2026-07-30T22:56:02.052866+00:00",
"status": "completed"
},
"tags": []
},
"outputs": [],
"source": [
"# this example assumes the user has either installed `interpretune` with the `examples` extra\n",
"# (or that circuit_tracer and neuronpedia are installed separately in addition to base interpretune dependencies)\n",
"\n",
"# Import circuit tracer and required modules\n",
"from transformer_lens import ActivationCache # noqa: F401\n",
"from datetime import datetime\n",
"\n",
"from it_examples import _ACTIVE_PATCHES # noqa: F401 # TODO: add note about this unless patched in SL before release\n",
"from it_examples.example_module_registry import MODULE_EXAMPLE_REGISTRY # TODO: move to hub once implemented\n",
"from it_examples.utils.example_helpers import required_os_env\n",
"from it_examples.example_prompt_configs import GemmaPromptConfig\n",
"from interpretune import ITSessionConfig, ITSession\n",
"from interpretune.base.call import it_init"
]
},
{
"cell_type": "code",
"execution_count": 5,
"id": "b99427db",
"metadata": {
"execution": {
"iopub.execute_input": "2026-07-30T22:56:10.544250Z",
"iopub.status.busy": "2026-07-30T22:56:10.543965Z",
"iopub.status.idle": "2026-07-30T22:56:10.549968Z",
"shell.execute_reply": "2026-07-30T22:56:10.549352Z"
},
"papermill": {
"duration": 0.009415,
"end_time": "2026-07-30T22:56:10.550679+00:00",
"exception": false,
"start_time": "2026-07-30T22:56:10.541264+00:00",
"status": "completed"
},
"tags": []
},
"outputs": [],
"source": [
"import os\n",
"\n",
"env_path: str | None = None # set to '/full/path/to/.env' to override\n",
"\n",
"# Note: We need to set your API keys via environment variables:\n",
"# export NEURONPEDIA_API_KEY=\"your-production-key\"\n",
"# export DEV_NEURONPEDIA_API_KEY=\"your-dev-key\" # if using dev API\n",
"use_localhost = os.environ.get(\"USE_LOCALHOST\", \"false\").lower() == \"true\"\n",
"# Note there is a planned request for neuronpedia to qualify USE_LOCALHOST as NP_USE_LOCALHOST\n",
"os_env_reqs = [(\"DEV_NEURONPEDIA_API_KEY\", \"non-empty\")] if use_localhost else [(\"NEURONPEDIA_API_KEY\", \"non-empty\")]\n",
"assert required_os_env(env_path=env_path, env_reqs=os_env_reqs)"
]
},
{
"cell_type": "code",
"execution_count": 6,
"id": "125071bb",
"metadata": {
"execution": {
"iopub.execute_input": "2026-07-30T22:56:10.555150Z",
"iopub.status.busy": "2026-07-30T22:56:10.554972Z",
"iopub.status.idle": "2026-07-30T22:56:21.079007Z",
"shell.execute_reply": "2026-07-30T22:56:21.078055Z"
},
"papermill": {
"duration": 10.528076,
"end_time": "2026-07-30T22:56:21.080621+00:00",
"exception": false,
"start_time": "2026-07-30T22:56:10.552545+00:00",
"status": "completed"
},
"tags": []
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO] interpretune.extensions.neuronpedia: Neuronpedia package available\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"INFO:interpretune.extensions.neuronpedia:Neuronpedia package available\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO] interpretune.utils.logging: Loading ReplacementModel with backend: nnsight\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"INFO:interpretune.utils.logging:Loading ReplacementModel with backend: nnsight\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "559160cc5859480ab71101be670c2eb2",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Downloading (incomplete total...): 0.00B [00:00, ?B/s]"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "a1cb13ae23f748388b44886a5dbd7d8b",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Fetching 26 files: 0%| | 0/26 [00:00, ?it/s]"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "9f2539464e324398935defe9db8d3be5",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Loading weights: 0%| | 0/340 [00:00, ?it/s]"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO] interpretune.utils.logging: NNsight ReplacementModel initialized for Circuit Tracer\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"INFO:interpretune.utils.logging:NNsight ReplacementModel initialized for Circuit Tracer\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO] interpretune.utils.logging: Attempted to clean a key that was not present, continuing without cleaning that key: 'Gemma3TextConfig' object has no attribute 'quantization_config'\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"INFO:interpretune.utils.logging:Attempted to clean a key that was not present, continuing without cleaning that key: 'Gemma3TextConfig' object has no attribute 'quantization_config'\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO] interpretune.utils.logging: Attempted to clean a key that was not present, continuing without cleaning that key: 'Gemma3TextConfig' object has no attribute '_pre_quantization_dtype'\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"INFO:interpretune.utils.logging:Attempted to clean a key that was not present, continuing without cleaning that key: 'Gemma3TextConfig' object has no attribute '_pre_quantization_dtype'\n"
]
}
],
"source": [
"# Load our demo config (this will be done from the hub once that is available)\n",
"base_itdm_cfg, base_it_cfg, dm_cls, m_cls = MODULE_EXAMPLE_REGISTRY.get(\"gemma3.rte_demo.circuit_tracer_w_neuronpedia\")\n",
"# Optionally override base_it_cfg.core_log_dir with the notebook parameter if provided\n",
"if core_log_dir:\n",
" base_it_cfg.core_log_dir = core_log_dir\n",
"# configure our session with our desired adapter composition, core and circuit_tracer in this case\n",
"session_cfg = ITSessionConfig(\n",
" adapter_ctx=(it.Adapter.core, it.Adapter.nnsight, it.Adapter.circuit_tracer),\n",
" datamodule_cfg=base_itdm_cfg,\n",
" module_cfg=base_it_cfg,\n",
" datamodule_cls=dm_cls,\n",
" module_cls=m_cls,\n",
")\n",
"\n",
"# start our session\n",
"it_session = ITSession(session_cfg)"
]
},
{
"cell_type": "code",
"execution_count": 7,
"id": "9f04dfe9",
"metadata": {
"execution": {
"iopub.execute_input": "2026-07-30T22:56:21.089924Z",
"iopub.status.busy": "2026-07-30T22:56:21.089692Z",
"iopub.status.idle": "2026-07-30T22:56:38.203069Z",
"shell.execute_reply": "2026-07-30T22:56:38.202284Z"
},
"papermill": {
"duration": 17.11891,
"end_time": "2026-07-30T22:56:38.203690+00:00",
"exception": false,
"start_time": "2026-07-30T22:56:21.084780+00:00",
"status": "completed"
},
"tags": []
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO] interpretune.utils.logging: Preparing data: InterpretunableDataModule\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"INFO:interpretune.utils.logging:Preparing data: InterpretunableDataModule\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "1c4b4eed604c40c8872d08fc5e7de7b2",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Map: 0%| | 0/2490 [00:00, ? examples/s]"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO] interpretune.utils.logging: The following columns don't have a corresponding argument in `NNSightReplacementModel.forward` and have been ignored: hypothesis, idx, label, premise, sequences. If hypothesis, idx, label, premise, sequences are not expected by `NNSightReplacementModel.forward`, you can safely ignore this message.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"INFO:interpretune.utils.logging:The following columns don't have a corresponding argument in `NNSightReplacementModel.forward` and have been ignored: hypothesis, idx, label, premise, sequences. If hypothesis, idx, label, premise, sequences are not expected by `NNSightReplacementModel.forward`, you can safely ignore this message.\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "92b2b21464cf442281f7a18c5f6a6330",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Map: 0%| | 0/277 [00:00, ? examples/s]"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO] interpretune.utils.logging: The following columns don't have a corresponding argument in `NNSightReplacementModel.forward` and have been ignored: hypothesis, idx, label, premise, sequences. If hypothesis, idx, label, premise, sequences are not expected by `NNSightReplacementModel.forward`, you can safely ignore this message.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"INFO:interpretune.utils.logging:The following columns don't have a corresponding argument in `NNSightReplacementModel.forward` and have been ignored: hypothesis, idx, label, premise, sequences. If hypothesis, idx, label, premise, sequences are not expected by `NNSightReplacementModel.forward`, you can safely ignore this message.\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "fc402a72e9284208b1d096a18aef90ee",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Map: 0%| | 0/3000 [00:00, ? examples/s]"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO] interpretune.utils.logging: The following columns don't have a corresponding argument in `NNSightReplacementModel.forward` and have been ignored: hypothesis, idx, label, premise, sequences. If hypothesis, idx, label, premise, sequences are not expected by `NNSightReplacementModel.forward`, you can safely ignore this message.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"INFO:interpretune.utils.logging:The following columns don't have a corresponding argument in `NNSightReplacementModel.forward` and have been ignored: hypothesis, idx, label, premise, sequences. If hypothesis, idx, label, premise, sequences are not expected by `NNSightReplacementModel.forward`, you can safely ignore this message.\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "8e7a1d982bc3446aa6224c7ca1f9cf9d",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Saving the dataset (0/1 shards): 0%| | 0/2490 [00:00, ? examples/s]"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "9f609b3fc587425096a07d864d455c9e",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Saving the dataset (0/1 shards): 0%| | 0/277 [00:00, ? examples/s]"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "d5ecaf0aacbe47cbaacd734a2c48760d",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Saving the dataset (0/1 shards): 0%| | 0/3000 [00:00, ? examples/s]"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO] interpretune.utils.logging: Setting up datamodule: InterpretunableDataModule\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"INFO:interpretune.utils.logging:Setting up datamodule: InterpretunableDataModule\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO] interpretune.utils.logging: Setting up model: InterpretunableModule\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"INFO:interpretune.utils.logging:Setting up model: InterpretunableModule\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO] interpretune.utils.logging: initializing optimizers and schedulers: InterpretunableModule\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"INFO:interpretune.utils.logging:initializing optimizers and schedulers: InterpretunableModule\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO] interpretune.utils.logging: Input gradient requirements handled by circuit tracer internally.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"INFO:interpretune.utils.logging:Input gradient requirements handled by circuit tracer internally.\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"IT Session initialized successfully!\n"
]
}
],
"source": [
"# manual init for now\n",
"it_init(**it_session)\n",
"print(\"\\nIT Session initialized successfully!\")"
]
},
{
"cell_type": "markdown",
"id": "c313a08e",
"metadata": {
"papermill": {
"duration": 0.004906,
"end_time": "2026-07-30T22:56:38.213850+00:00",
"exception": false,
"start_time": "2026-07-30T22:56:38.208944+00:00",
"status": "completed"
},
"tags": []
},
"source": [
"### Example: Using Circuit Tracer to generate a custom graph and upload to Neuronpedia"
]
},
{
"cell_type": "code",
"execution_count": 8,
"id": "c86f3953",
"metadata": {
"execution": {
"iopub.execute_input": "2026-07-30T22:56:38.225280Z",
"iopub.status.busy": "2026-07-30T22:56:38.225085Z",
"iopub.status.idle": "2026-07-30T22:56:47.092394Z",
"shell.execute_reply": "2026-07-30T22:56:47.091651Z"
},
"papermill": {
"duration": 8.874224,
"end_time": "2026-07-30T22:56:47.093132+00:00",
"exception": false,
"start_time": "2026-07-30T22:56:38.218908+00:00",
"status": "completed"
},
"tags": []
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"Phase 0: Precomputing activations and vectors\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"Precomputation completed in 1.47s\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"Found 5883 active features\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"Phase 1: Running forward pass\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/mnt/cache/speediedan/.venvs/it_latest/lib/python3.13/site-packages/circuit_tracer/transcoder/single_layer_transcoder.py:139: UserWarning: Attempting to run cuBLAS, but there was no current CUDA context! Attempting to set the primary context... (Triggered internally at /__w/pytorch/pytorch/aten/src/ATen/cuda/CublasHandlePool.cpp:408.)\n",
" return input_acts @ self.W_skip.T\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"Forward pass completed in 0.74s\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"Phase 2: Building input vectors\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"Using 2 specified logit targets with cumulative probability 0.0000\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"Will include 5883 of 5883 feature nodes\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"Input vectors built in 0.43s\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"Phase 3: Computing logit attributions\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"1 logit attribution(s) completed in 0.10s\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"Phase 4: Computing feature attributions\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r",
"Feature influence computation: 0%| | 0/5883 [00:00, ?it/s]"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r",
"Feature influence computation: 26%|██▌ | 1536/5883 [00:00<00:00, 12809.66it/s]"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r",
"Feature influence computation: 52%|█████▏ | 3072/5883 [00:00<00:00, 9821.86it/s] "
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r",
"Feature influence computation: 74%|███████▍ | 4352/5883 [00:00<00:00, 7483.00it/s]"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r",
"Feature influence computation: 91%|█████████▏| 5376/5883 [00:00<00:00, 6064.93it/s]"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r",
"Feature influence computation: 100%|██████████| 5883/5883 [00:00<00:00, 6538.99it/s]"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\n",
"Feature attributions completed in 0.90s\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"Attribution completed in 4.59s\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO] interpretune.utils.logging: [NeuronpediaIntegration] Transforming graph: /tmp/20260730_155614_default/graph_data/it-generated-compute-specific-logits-demo-graph-20260730-155638.json\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"INFO:interpretune.utils.logging:[NeuronpediaIntegration] Transforming graph: /tmp/20260730_155614_default/graph_data/it-generated-compute-specific-logits-demo-graph-20260730-155638.json\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO] interpretune.utils.logging: [NeuronpediaIntegration] Field 'clerps' changed: before=None, after=[]\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"INFO:interpretune.utils.logging:[NeuronpediaIntegration] Field 'clerps' changed: before=None, after=[]\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO] interpretune.utils.logging: [NeuronpediaIntegration] Changes written to /tmp/20260730_155614_default/it-generated-compute-specific-logits-demo-graph-20260730-155638_qparam_changes_20260730_155646.log\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"INFO:interpretune.utils.logging:[NeuronpediaIntegration] Changes written to /tmp/20260730_155614_default/it-generated-compute-specific-logits-demo-graph-20260730-155638_qparam_changes_20260730_155646.log\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO] interpretune.utils.logging: [NeuronpediaIntegration] Transformed qParams for Neuronpedia\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"INFO:interpretune.utils.logging:[NeuronpediaIntegration] Transformed qParams for Neuronpedia\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO] interpretune.utils.logging: [NeuronpediaIntegration] Transformed graph saved to: /tmp/20260730_155614_default/graph_data/it-generated-compute-specific-logits-demo-graph-20260730-155638.json\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"INFO:interpretune.utils.logging:[NeuronpediaIntegration] Transformed graph saved to: /tmp/20260730_155614_default/graph_data/it-generated-compute-specific-logits-demo-graph-20260730-155638.json\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO] interpretune.utils.logging: Neuronpedia upload not requested. Set upload_to_np to `True` to automatically upload.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"INFO:interpretune.utils.logging:Neuronpedia upload not requested. Set upload_to_np to `True` to automatically upload.\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Generated and saved graph locally to /tmp/20260730_155614_default/graph_data/it-generated-compute-specific-logits-demo-graph-20260730-155638.json\n"
]
}
],
"source": [
"# Generate and upload graph in one step\n",
"raw_prompt = \"The capital of the state containing Dallas is\"\n",
"ct_module = it_session.module\n",
"\n",
"# instruction-tuned replacement models assert chat-formatted inputs\n",
"# (circuit-tracer's ensure_tokenized requires a user prefix)\n",
"prompt = GemmaPromptConfig().apply_chat_template_fn(\n",
" it_session.datamodule.tokenizer, raw_prompt, tokenize=False, add_generation_prompt=True\n",
")\n",
"# we use the datetime to ensure the slug is unique\n",
"slug = f\"it-generated-compute-specific-logits-demo-graph-{datetime.now().strftime('%Y%m%d-%H%M%S')}\"\n",
"# This method does everything:\n",
"# - Generates attribution graph\n",
"# - Transforms it for Neuronpedia compatibility\n",
"# - Uploads to Neuronpedia\n",
"# - Returns both the graph and the Neuronpedia metadata\n",
"\n",
"# if you want to set custom metadata for Neuronpedia graph, you can do so here.\n",
"# in this demo, since the circuit-tracer generated graph does not currently have cantor-paired feature nodes, we\n",
"# need to avoid setting neuronpedia_source_set in the feature_details metadata\n",
"# temporary hack: https://bit.ly/non_cantor_edge_case\n",
"graph, local_graph_path, neuronpedia_metadata = ct_module.generate_graph(\n",
" prompt=prompt,\n",
" slug=slug,\n",
" upload_to_np=False, # Upload the produced graph to Neuronpedia if True, or just return the graph if False\n",
")\n",
"\n",
"print(f\"Generated and saved graph locally to {local_graph_path}\")\n",
"\n",
"if neuronpedia_metadata and hasattr(neuronpedia_metadata, \"url\"):\n",
" print(\"Graph uploaded successfully.\")\n",
" print(f\"View your graph at: {neuronpedia_metadata.url}\")"
]
},
{
"cell_type": "code",
"execution_count": 9,
"id": "c67d3df9",
"metadata": {
"execution": {
"iopub.execute_input": "2026-07-30T22:56:47.111111Z",
"iopub.status.busy": "2026-07-30T22:56:47.110937Z",
"iopub.status.idle": "2026-07-30T22:56:47.113577Z",
"shell.execute_reply": "2026-07-30T22:56:47.112914Z"
},
"papermill": {
"duration": 0.012104,
"end_time": "2026-07-30T22:56:47.114307+00:00",
"exception": false,
"start_time": "2026-07-30T22:56:47.102203+00:00",
"status": "completed"
},
"tags": []
},
"outputs": [],
"source": [
"# Alternative: Just transform an existing graph\n",
"# transformed_graph, np_metadata = ct_module.neuronpedia.transform_graph_for_np(\n",
"# graph_path=local_graph_path,\n",
"# # slug=\"it-generated-dallas-austin-demo-graph-20250725-121824-retransformed\",\n",
"# upload_to_np=False # Set to True to upload the transformed graph\n",
"# )"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "it_latest (3.12.8)",
"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.13.11"
},
"papermill": {
"default_parameters": {},
"duration": 53.313127,
"end_time": "2026-07-30T22:56:51.012167+00:00",
"environment_variables": {},
"exception": null,
"input_path": "/home/speediedan/repos/interpretune/src/it_examples/notebooks/publish/neuronpedia_example/circuit_tracer_w_neuronpedia_example.ipynb",
"output_path": "/home/speediedan/repos/interpretune/docs/notebook_artifacts/neuronpedia_example/circuit_tracer_w_neuronpedia_example.ipynb",
"parameters": {},
"start_time": "2026-07-30T22:55:57.699040+00:00",
"version": "2.7.0"
},
"widgets": {
"application/vnd.jupyter.widget-state+json": {
"state": {
"045f13d390d84ca59d38a42fa9cac6f3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "FloatProgressModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "FloatProgressModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "ProgressView",
"bar_style": "success",
"description": "",
"description_allow_html": false,
"layout": "IPY_MODEL_859d5e7187e34041909f579afaa1239e",
"max": 3000.0,
"min": 0.0,
"orientation": "horizontal",
"style": "IPY_MODEL_c09916bef3184d4daecd26f2d8caefa5",
"tabbable": null,
"tooltip": null,
"value": 3000.0
}
},
"05bc30881157445a8773d9b131845825": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HTMLModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "HTMLModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "HTMLView",
"description": "",
"description_allow_html": false,
"layout": "IPY_MODEL_db4b2cff0b9e479a94334cdfb7953021",
"placeholder": "",
"style": "IPY_MODEL_a82ee78e5af041bfaa2ffaae361fffdd",
"tabbable": null,
"tooltip": null,
"value": "Loading weights: 100%"
}
},
"084b1dd3ab664edf9a06605d3770772f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HTMLStyleModel",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "HTMLStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "StyleView",
"background": null,
"description_width": "",
"font_size": null,
"text_color": null
}
},
"0a0dfa3b98ab4c558ec714c3848af92e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HTMLStyleModel",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "HTMLStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "StyleView",
"background": null,
"description_width": "",
"font_size": null,
"text_color": null
}
},
"0caac3fd16734e8198c0ff519996db41": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"0eaa3058dfe6471787022c55b1861d13": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "ProgressStyleModel",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "ProgressStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "StyleView",
"bar_color": null,
"description_width": ""
}
},
"102b00009c464fc5acf3540ae02c9a55": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HTMLStyleModel",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "HTMLStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "StyleView",
"background": null,
"description_width": "",
"font_size": null,
"text_color": null
}
},
"156ef9fe96ae46208c954a768058fe1e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "FloatProgressModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "FloatProgressModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "ProgressView",
"bar_style": "success",
"description": "",
"description_allow_html": false,
"layout": "IPY_MODEL_366c05fd9ad443229100070b8a6fc3c7",
"max": 340.0,
"min": 0.0,
"orientation": "horizontal",
"style": "IPY_MODEL_3b409c7138384bc0b55892588de339a6",
"tabbable": null,
"tooltip": null,
"value": 340.0
}
},
"17d9ef7e389144daa26741dd6d4763bb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"19cdc53a4370431d85857c751438998a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HTMLStyleModel",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "HTMLStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "StyleView",
"background": null,
"description_width": "",
"font_size": null,
"text_color": null
}
},
"1c4b4eed604c40c8872d08fc5e7de7b2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HBoxModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "HBoxModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "HBoxView",
"box_style": "",
"children": [
"IPY_MODEL_79d8215a1ff440d6a6956109500e585d",
"IPY_MODEL_8851dc5d061c4ff599acd6775874743f",
"IPY_MODEL_ec33b89c5c584f968a64251b08151611"
],
"layout": "IPY_MODEL_677924a5422f4b428fa47968df1607fa",
"tabbable": null,
"tooltip": null
}
},
"1cc968326c7b41c2ad20f0b460ff9957": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HTMLModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "HTMLModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "HTMLView",
"description": "",
"description_allow_html": false,
"layout": "IPY_MODEL_791827ea01e646a797247fe082dc3628",
"placeholder": "",
"style": "IPY_MODEL_ca63a828b3c54225a05d0b5174929e56",
"tabbable": null,
"tooltip": null,
"value": " 340/340 [00:00<00:00, 859.15it/s]"
}
},
"1cf5aaec2b0c4d5f8c75e8271bd23932": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HTMLStyleModel",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "HTMLStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "StyleView",
"background": null,
"description_width": "",
"font_size": null,
"text_color": null
}
},
"1d365437ef704607a85134cbab882549": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HTMLModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "HTMLModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "HTMLView",
"description": "",
"description_allow_html": false,
"layout": "IPY_MODEL_4c4a64b50a6d40f5a43e6eacde053d84",
"placeholder": "",
"style": "IPY_MODEL_e9a45876a1744d0781e41a5e0ed0b33f",
"tabbable": null,
"tooltip": null,
"value": " 277/277 [00:00<00:00, 6678.33 examples/s]"
}
},
"1e3130e404ad4f5e8085e30bed2422a6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "ProgressStyleModel",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "ProgressStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "StyleView",
"bar_color": null,
"description_width": ""
}
},
"2111c540bb264fa7bd4fe527bdde4905": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"220be9362f5e430ab230f4eb1a24dd02": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"228279005d2544c2884bb14b981b3521": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HTMLModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "HTMLModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "HTMLView",
"description": "",
"description_allow_html": false,
"layout": "IPY_MODEL_41bd9a857c3b4651868b6a82e4ff2c99",
"placeholder": "",
"style": "IPY_MODEL_1cf5aaec2b0c4d5f8c75e8271bd23932",
"tabbable": null,
"tooltip": null,
"value": " 2490/2490 [00:00<00:00, 129165.64 examples/s]"
}
},
"22bff7c84f2649b7b4830deec7141af0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "ProgressStyleModel",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "ProgressStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "StyleView",
"bar_color": null,
"description_width": ""
}
},
"23b17970116d4e51994d0d5e6f0afec9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HTMLModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "HTMLModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "HTMLView",
"description": "",
"description_allow_html": false,
"layout": "IPY_MODEL_7c149520801845d0bbbd8a29076b84cd",
"placeholder": "",
"style": "IPY_MODEL_98012cf7189f4025be24f8b7bc99f5d6",
"tabbable": null,
"tooltip": null,
"value": "Download complete: "
}
},
"2ee559f435ec4f1fb42cda3098336191": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"2f861d228de4470e9426f8008b609b40": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "FloatProgressModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "FloatProgressModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "ProgressView",
"bar_style": "success",
"description": "",
"description_allow_html": false,
"layout": "IPY_MODEL_71b0aacacb8b441ab0a0e740ed776a7c",
"max": 26.0,
"min": 0.0,
"orientation": "horizontal",
"style": "IPY_MODEL_3bb1e3e2fc3248a199d953e10a02e885",
"tabbable": null,
"tooltip": null,
"value": 26.0
}
},
"366c05fd9ad443229100070b8a6fc3c7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"39ab8349848242b6b72c553be4632c3d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"3b409c7138384bc0b55892588de339a6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "ProgressStyleModel",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "ProgressStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "StyleView",
"bar_color": null,
"description_width": ""
}
},
"3bb1e3e2fc3248a199d953e10a02e885": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "ProgressStyleModel",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "ProgressStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "StyleView",
"bar_color": null,
"description_width": ""
}
},
"3e7585743a704a93910cd821dce8e639": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "ProgressStyleModel",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "ProgressStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "StyleView",
"bar_color": null,
"description_width": ""
}
},
"3e994695245d4781b47280dd704ac6aa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HTMLModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "HTMLModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "HTMLView",
"description": "",
"description_allow_html": false,
"layout": "IPY_MODEL_39ab8349848242b6b72c553be4632c3d",
"placeholder": "",
"style": "IPY_MODEL_0a0dfa3b98ab4c558ec714c3848af92e",
"tabbable": null,
"tooltip": null,
"value": "Saving the dataset (1/1 shards): 100%"
}
},
"3f51002e95da48e59539587a53ebcc66": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": "20px"
}
},
"41bd9a857c3b4651868b6a82e4ff2c99": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"4c4a64b50a6d40f5a43e6eacde053d84": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"4d47a2e3bd7440e4913721b669981782": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "ProgressStyleModel",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "ProgressStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "StyleView",
"bar_color": null,
"description_width": ""
}
},
"4ea8ac588ee346ebb1b3d8d9b07687ae": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "FloatProgressModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "FloatProgressModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "ProgressView",
"bar_style": "success",
"description": "",
"description_allow_html": false,
"layout": "IPY_MODEL_b25b5fee22494b1bb552320ec15fbc17",
"max": 3000.0,
"min": 0.0,
"orientation": "horizontal",
"style": "IPY_MODEL_1e3130e404ad4f5e8085e30bed2422a6",
"tabbable": null,
"tooltip": null,
"value": 3000.0
}
},
"542454f0b27745dcb3636f6d56312767": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"559160cc5859480ab71101be670c2eb2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HBoxModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "HBoxModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "HBoxView",
"box_style": "",
"children": [
"IPY_MODEL_23b17970116d4e51994d0d5e6f0afec9",
"IPY_MODEL_f6a242b54d864cf8ba54953fb139f033",
"IPY_MODEL_675146462dbc418b97999dae583570d1"
],
"layout": "IPY_MODEL_2ee559f435ec4f1fb42cda3098336191",
"tabbable": null,
"tooltip": null
}
},
"57ac6f357078423fb48a1098e7ccb1e0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"5d3a7d2170324fbba63df3fc2fffe3e2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"5f44d99e98174d4da049ad6bf6faccaa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "ProgressStyleModel",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "ProgressStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "StyleView",
"bar_color": null,
"description_width": ""
}
},
"62382b8c035b47578ad6e09f2a572af7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HTMLStyleModel",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "HTMLStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "StyleView",
"background": null,
"description_width": "",
"font_size": null,
"text_color": null
}
},
"625bdf2079994cd195ab0ac344fc0c64": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"675146462dbc418b97999dae583570d1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HTMLModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "HTMLModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "HTMLView",
"description": "",
"description_allow_html": false,
"layout": "IPY_MODEL_925b8d3fe0704af88f5fccb9bea8dead",
"placeholder": "",
"style": "IPY_MODEL_62382b8c035b47578ad6e09f2a572af7",
"tabbable": null,
"tooltip": null,
"value": " 0.00/0.00 [00:01<?, ?B/s]"
}
},
"677924a5422f4b428fa47968df1607fa": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"6f588ac2901348a2b7832e2dc07f27ec": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"716463d61ea742f4aba9ce19f952da0f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"71b0aacacb8b441ab0a0e740ed776a7c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"7476b749d69644c98bffd231a43e56fe": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "FloatProgressModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "FloatProgressModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "ProgressView",
"bar_style": "success",
"description": "",
"description_allow_html": false,
"layout": "IPY_MODEL_a3e82effcffe46e18937425834156cd4",
"max": 277.0,
"min": 0.0,
"orientation": "horizontal",
"style": "IPY_MODEL_4d47a2e3bd7440e4913721b669981782",
"tabbable": null,
"tooltip": null,
"value": 277.0
}
},
"791827ea01e646a797247fe082dc3628": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"79d8215a1ff440d6a6956109500e585d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HTMLModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "HTMLModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "HTMLView",
"description": "",
"description_allow_html": false,
"layout": "IPY_MODEL_716463d61ea742f4aba9ce19f952da0f",
"placeholder": "",
"style": "IPY_MODEL_9524aa1c3e9648fbb24a47541e24a90b",
"tabbable": null,
"tooltip": null,
"value": "Map: 100%"
}
},
"7c149520801845d0bbbd8a29076b84cd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"7cbaf96fa1134495aad72f2871a91c51": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HTMLStyleModel",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "HTMLStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "StyleView",
"background": null,
"description_width": "",
"font_size": null,
"text_color": null
}
},
"7dabf964a89d4bccb6f6b80726711cc7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"7e9b8c64c4ce43eaaeb6c68ac86deed1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HTMLStyleModel",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "HTMLStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "StyleView",
"background": null,
"description_width": "",
"font_size": null,
"text_color": null
}
},
"859d5e7187e34041909f579afaa1239e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"8851dc5d061c4ff599acd6775874743f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "FloatProgressModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "FloatProgressModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "ProgressView",
"bar_style": "success",
"description": "",
"description_allow_html": false,
"layout": "IPY_MODEL_e8d98e32646049b2a9bb95c91b28219f",
"max": 2490.0,
"min": 0.0,
"orientation": "horizontal",
"style": "IPY_MODEL_22bff7c84f2649b7b4830deec7141af0",
"tabbable": null,
"tooltip": null,
"value": 2490.0
}
},
"8e7a1d982bc3446aa6224c7ca1f9cf9d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HBoxModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "HBoxModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "HBoxView",
"box_style": "",
"children": [
"IPY_MODEL_3e994695245d4781b47280dd704ac6aa",
"IPY_MODEL_e7f212b633bb4169a5ffe2769a847c44",
"IPY_MODEL_228279005d2544c2884bb14b981b3521"
],
"layout": "IPY_MODEL_625bdf2079994cd195ab0ac344fc0c64",
"tabbable": null,
"tooltip": null
}
},
"8ed814b8f41841809f6dfb75e5af8681": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"918ebce3352e43d9baed523e4e24ce98": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"925b8d3fe0704af88f5fccb9bea8dead": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"92b2b21464cf442281f7a18c5f6a6330": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HBoxModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "HBoxModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "HBoxView",
"box_style": "",
"children": [
"IPY_MODEL_e282d86fcb354372a4883e99daaa5588",
"IPY_MODEL_7476b749d69644c98bffd231a43e56fe",
"IPY_MODEL_1d365437ef704607a85134cbab882549"
],
"layout": "IPY_MODEL_fd2ce6daed15416daea0cc29abb1085d",
"tabbable": null,
"tooltip": null
}
},
"93a0c893527b436c9ba2d208689f9823": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HTMLModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "HTMLModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "HTMLView",
"description": "",
"description_allow_html": false,
"layout": "IPY_MODEL_7dabf964a89d4bccb6f6b80726711cc7",
"placeholder": "",
"style": "IPY_MODEL_7cbaf96fa1134495aad72f2871a91c51",
"tabbable": null,
"tooltip": null,
"value": "Saving the dataset (1/1 shards): 100%"
}
},
"9524aa1c3e9648fbb24a47541e24a90b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HTMLStyleModel",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "HTMLStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "StyleView",
"background": null,
"description_width": "",
"font_size": null,
"text_color": null
}
},
"98012cf7189f4025be24f8b7bc99f5d6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HTMLStyleModel",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "HTMLStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "StyleView",
"background": null,
"description_width": "",
"font_size": null,
"text_color": null
}
},
"9f2539464e324398935defe9db8d3be5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HBoxModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "HBoxModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "HBoxView",
"box_style": "",
"children": [
"IPY_MODEL_05bc30881157445a8773d9b131845825",
"IPY_MODEL_156ef9fe96ae46208c954a768058fe1e",
"IPY_MODEL_1cc968326c7b41c2ad20f0b460ff9957"
],
"layout": "IPY_MODEL_b0f0bc461dfc4de79ec8ecb01f51fef2",
"tabbable": null,
"tooltip": null
}
},
"9f609b3fc587425096a07d864d455c9e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HBoxModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "HBoxModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "HBoxView",
"box_style": "",
"children": [
"IPY_MODEL_d04272d8cc344a16bbd46e8a8f80764a",
"IPY_MODEL_f5ba7114c36d469b8a6cfdf2e8bd49a7",
"IPY_MODEL_b7028d255ffc4af8a0c4bcbbf7de5273"
],
"layout": "IPY_MODEL_918ebce3352e43d9baed523e4e24ce98",
"tabbable": null,
"tooltip": null
}
},
"a1cb13ae23f748388b44886a5dbd7d8b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HBoxModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "HBoxModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "HBoxView",
"box_style": "",
"children": [
"IPY_MODEL_ff7f8849edbb4453aa057d869b5600b4",
"IPY_MODEL_2f861d228de4470e9426f8008b609b40",
"IPY_MODEL_d38a8f0307af42e7b4162cb1b1ba6074"
],
"layout": "IPY_MODEL_17d9ef7e389144daa26741dd6d4763bb",
"tabbable": null,
"tooltip": null
}
},
"a3e82effcffe46e18937425834156cd4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"a82ee78e5af041bfaa2ffaae361fffdd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HTMLStyleModel",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "HTMLStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "StyleView",
"background": null,
"description_width": "",
"font_size": null,
"text_color": null
}
},
"a91c2ab4dd694d1b94308c12beff247d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HTMLStyleModel",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "HTMLStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "StyleView",
"background": null,
"description_width": "",
"font_size": null,
"text_color": null
}
},
"b0f0bc461dfc4de79ec8ecb01f51fef2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"b25b5fee22494b1bb552320ec15fbc17": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"b7028d255ffc4af8a0c4bcbbf7de5273": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HTMLModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "HTMLModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "HTMLView",
"description": "",
"description_allow_html": false,
"layout": "IPY_MODEL_6f588ac2901348a2b7832e2dc07f27ec",
"placeholder": "",
"style": "IPY_MODEL_e092863b4b4d41248ecdc62456c4b017",
"tabbable": null,
"tooltip": null,
"value": " 277/277 [00:00<00:00, 28670.69 examples/s]"
}
},
"bcb7b3a79ba74efaabd84a6202ff5189": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HTMLModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "HTMLModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "HTMLView",
"description": "",
"description_allow_html": false,
"layout": "IPY_MODEL_8ed814b8f41841809f6dfb75e5af8681",
"placeholder": "",
"style": "IPY_MODEL_e22f1534ec9741328b9d276a971952ac",
"tabbable": null,
"tooltip": null,
"value": "Map: 100%"
}
},
"c08c1fde14bc40308086a502858d384e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HTMLModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "HTMLModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "HTMLView",
"description": "",
"description_allow_html": false,
"layout": "IPY_MODEL_ff0c31503cd849699d3a0da79b3642ec",
"placeholder": "",
"style": "IPY_MODEL_e69fe53b2362493bb7875f3fb56f97a3",
"tabbable": null,
"tooltip": null,
"value": " 3000/3000 [00:00<00:00, 15185.31 examples/s]"
}
},
"c09916bef3184d4daecd26f2d8caefa5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "ProgressStyleModel",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "ProgressStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "StyleView",
"bar_color": null,
"description_width": ""
}
},
"c2dab219366b496d9e00967fb2f47600": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"ca63a828b3c54225a05d0b5174929e56": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HTMLStyleModel",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "HTMLStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "StyleView",
"background": null,
"description_width": "",
"font_size": null,
"text_color": null
}
},
"ccd537d07fa949b08a67dec227b89a70": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"d04272d8cc344a16bbd46e8a8f80764a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HTMLModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "HTMLModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "HTMLView",
"description": "",
"description_allow_html": false,
"layout": "IPY_MODEL_542454f0b27745dcb3636f6d56312767",
"placeholder": "",
"style": "IPY_MODEL_19cdc53a4370431d85857c751438998a",
"tabbable": null,
"tooltip": null,
"value": "Saving the dataset (1/1 shards): 100%"
}
},
"d38a8f0307af42e7b4162cb1b1ba6074": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HTMLModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "HTMLModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "HTMLView",
"description": "",
"description_allow_html": false,
"layout": "IPY_MODEL_2111c540bb264fa7bd4fe527bdde4905",
"placeholder": "",
"style": "IPY_MODEL_ef9bab92c1684c6dad56b773ecb60786",
"tabbable": null,
"tooltip": null,
"value": " 26/26 [00:00<00:00, 2397.75it/s]"
}
},
"d5ecaf0aacbe47cbaacd734a2c48760d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HBoxModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "HBoxModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "HBoxView",
"box_style": "",
"children": [
"IPY_MODEL_93a0c893527b436c9ba2d208689f9823",
"IPY_MODEL_045f13d390d84ca59d38a42fa9cac6f3",
"IPY_MODEL_f0bb04efe09b4872a4364e8b7d7c9235"
],
"layout": "IPY_MODEL_220be9362f5e430ab230f4eb1a24dd02",
"tabbable": null,
"tooltip": null
}
},
"db4b2cff0b9e479a94334cdfb7953021": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"dc515ca50de74e7a81bb50e4ffc2da61": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"e092863b4b4d41248ecdc62456c4b017": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HTMLStyleModel",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "HTMLStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "StyleView",
"background": null,
"description_width": "",
"font_size": null,
"text_color": null
}
},
"e22f1534ec9741328b9d276a971952ac": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HTMLStyleModel",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "HTMLStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "StyleView",
"background": null,
"description_width": "",
"font_size": null,
"text_color": null
}
},
"e282d86fcb354372a4883e99daaa5588": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HTMLModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "HTMLModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "HTMLView",
"description": "",
"description_allow_html": false,
"layout": "IPY_MODEL_57ac6f357078423fb48a1098e7ccb1e0",
"placeholder": "",
"style": "IPY_MODEL_a91c2ab4dd694d1b94308c12beff247d",
"tabbable": null,
"tooltip": null,
"value": "Map: 100%"
}
},
"e69fe53b2362493bb7875f3fb56f97a3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HTMLStyleModel",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "HTMLStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "StyleView",
"background": null,
"description_width": "",
"font_size": null,
"text_color": null
}
},
"e7f212b633bb4169a5ffe2769a847c44": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "FloatProgressModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "FloatProgressModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "ProgressView",
"bar_style": "success",
"description": "",
"description_allow_html": false,
"layout": "IPY_MODEL_f8e8a4c50bc147d3a7ab75d86c7a26d8",
"max": 2490.0,
"min": 0.0,
"orientation": "horizontal",
"style": "IPY_MODEL_5f44d99e98174d4da049ad6bf6faccaa",
"tabbable": null,
"tooltip": null,
"value": 2490.0
}
},
"e8d98e32646049b2a9bb95c91b28219f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"e9a45876a1744d0781e41a5e0ed0b33f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HTMLStyleModel",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "HTMLStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "StyleView",
"background": null,
"description_width": "",
"font_size": null,
"text_color": null
}
},
"ec33b89c5c584f968a64251b08151611": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HTMLModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "HTMLModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "HTMLView",
"description": "",
"description_allow_html": false,
"layout": "IPY_MODEL_5d3a7d2170324fbba63df3fc2fffe3e2",
"placeholder": "",
"style": "IPY_MODEL_084b1dd3ab664edf9a06605d3770772f",
"tabbable": null,
"tooltip": null,
"value": " 2490/2490 [00:00<00:00, 11604.00 examples/s]"
}
},
"ef9bab92c1684c6dad56b773ecb60786": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HTMLStyleModel",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "HTMLStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "StyleView",
"background": null,
"description_width": "",
"font_size": null,
"text_color": null
}
},
"f0bb04efe09b4872a4364e8b7d7c9235": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HTMLModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "HTMLModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "HTMLView",
"description": "",
"description_allow_html": false,
"layout": "IPY_MODEL_dc515ca50de74e7a81bb50e4ffc2da61",
"placeholder": "",
"style": "IPY_MODEL_7e9b8c64c4ce43eaaeb6c68ac86deed1",
"tabbable": null,
"tooltip": null,
"value": " 3000/3000 [00:00<00:00, 169348.23 examples/s]"
}
},
"f5ba7114c36d469b8a6cfdf2e8bd49a7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "FloatProgressModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "FloatProgressModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "ProgressView",
"bar_style": "success",
"description": "",
"description_allow_html": false,
"layout": "IPY_MODEL_ccd537d07fa949b08a67dec227b89a70",
"max": 277.0,
"min": 0.0,
"orientation": "horizontal",
"style": "IPY_MODEL_0eaa3058dfe6471787022c55b1861d13",
"tabbable": null,
"tooltip": null,
"value": 277.0
}
},
"f6a242b54d864cf8ba54953fb139f033": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "FloatProgressModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "FloatProgressModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "ProgressView",
"bar_style": "success",
"description": "",
"description_allow_html": false,
"layout": "IPY_MODEL_3f51002e95da48e59539587a53ebcc66",
"max": 1.0,
"min": 0.0,
"orientation": "horizontal",
"style": "IPY_MODEL_3e7585743a704a93910cd821dce8e639",
"tabbable": null,
"tooltip": null,
"value": 0.0
}
},
"f8e8a4c50bc147d3a7ab75d86c7a26d8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"fc402a72e9284208b1d096a18aef90ee": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HBoxModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "HBoxModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "HBoxView",
"box_style": "",
"children": [
"IPY_MODEL_bcb7b3a79ba74efaabd84a6202ff5189",
"IPY_MODEL_4ea8ac588ee346ebb1b3d8d9b07687ae",
"IPY_MODEL_c08c1fde14bc40308086a502858d384e"
],
"layout": "IPY_MODEL_c2dab219366b496d9e00967fb2f47600",
"tabbable": null,
"tooltip": null
}
},
"fd2ce6daed15416daea0cc29abb1085d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"ff0c31503cd849699d3a0da79b3642ec": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"ff7f8849edbb4453aa057d869b5600b4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HTMLModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "HTMLModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "HTMLView",
"description": "",
"description_allow_html": false,
"layout": "IPY_MODEL_0caac3fd16734e8198c0ff519996db41",
"placeholder": "",
"style": "IPY_MODEL_102b00009c464fc5acf3540ae02c9a55",
"tabbable": null,
"tooltip": null,
"value": "Fetching 26 files: 100%"
}
}
},
"version_major": 2,
"version_minor": 0
}
}
},
"nbformat": 4,
"nbformat_minor": 5
}