{ "cells": [ { "cell_type": "markdown", "id": "DvBYAt_QkQdY", "metadata": { "id": "DvBYAt_QkQdY" }, "source": [ "# AWS RL Agent — SFT with LoRA on Qwen2.5-Coder-3B\n", "\n", "**Pipeline**: HF SFT dataset → Optuna-tuned LoRA SFT → HF Hub adapter → GRPO (next phase)\n", "\n", "| | |\n", "|---|---|\n", "| **Base model** | `Qwen/Qwen2.5-Coder-3B-Instruct` (4-bit via Unsloth) |\n", "| **Dataset** | [`Sizzing/aws-rl-sft`](https://huggingface.co/datasets/Sizzing/aws-rl-sft) — 1500 train / 150 val |\n", "| **Target GPU** | Kaggle dual-T4 (single T4 is enough with 4-bit) |\n", "| **Expected runtime** | ~45 min end-to-end |\n", "| **Logging** | matplotlib PNGs in `OUT_DIR/plots/` |\n", "\n", "## What this notebook does\n", "\n", "1. **Pre-SFT baseline eval** — zero-shot metrics on the base model (the \"before\")\n", "2. **Optuna search** — 6 trials on a 500-row subset to pick best LoRA hparams\n", "3. **Final SFT** — full dataset with winning hparams, checkpointed to disk\n", "4. **Post-SFT eval** — same prompts, measure the delta\n", "5. **Push adapter** — 60MB LoRA adapter to HF Hub (not the full 3B model)\n", "\n", "## Why this stack\n", "\n", "- **Unsloth** — ~2× training speed and half the VRAM via fused kernels (makes 3B fit on a single T4)\n", "- **Optuna** — systematic hparam search instead of one-shot guessing; produces the parallel-coord plot judges love\n", "- **TRL `SFTTrainer`** — handles the `messages` column and chat template automatically\n", "- **matplotlib** — every training/Optuna/eval figure rendered locally and saved as PNG to `OUT_DIR/plots/` for download\n", "\n", "## Expected deltas (from the pre-training eval)\n", "\n", "| Metric | Before | Target after |\n", "|---|--:|--:|\n", "| `format%` | 85% | 100% |\n", "| `exact-match%` | 41% | 75%+ |\n", "| `operation%` | 63% | 90%+ |\n", "\n", "## Checkpoint / resume\n", "\n", "Final training saves every 50 steps to `/kaggle/working/final_sft/`. If the session dies, rerunning the final-training cell auto-detects the latest `checkpoint-*/` and resumes from it.\n", "\n", "## Reading guide\n", "\n", "The notebook is structured **before-vs-after**: every metric you see in the post-SFT section (§12) has a baseline counterpart from §7. The Optuna plots in §10 explain *why* the final hparams were picked; the training curves in §11a verify the run was healthy. If you only have time for one screen, it's the comparison bar chart in §12." ] }, { "cell_type": "markdown", "id": "Ezws954SkQdc", "metadata": { "id": "Ezws954SkQdc" }, "source": [ "## 1. Install dependencies\n", "\n", "Unsloth pulls in `trl`, `peft`, `accelerate`, `bitsandbytes`, and `transformers` at compatible versions. This takes ~3-4 min on first run.\n", "\n", "The cell uses a `%%capture` magic to keep the noisy install logs out of the notebook. After it runs, the runtime has:\n", "\n", "- **`unsloth`** — the fast fine-tuning toolkit (fused kernels for 4-bit Qwen2)\n", "- **`transformers>=4.50,<5.0`** — pinned away from 5.x because Unsloth still passes `tokenizer=` to the trainer (renamed in v5; we patch this with a shim later if needed)\n", "- **`trl<0.12.0`** — `SFTTrainer` API used here; v0.12 reshuffled the dataset-prep path\n", "- **`peft`, `accelerate`, `bitsandbytes`** — LoRA, distributed-training utilities, 4-bit quantisation\n", "- **`optuna` + `optuna-integration`** — the hyperparameter search itself plus its visualisation hooks\n", "- **`datasets`, `huggingface_hub`** — pull the SFT dataset and (later) push the adapter\n", "\n", "`IS_KAGGLE` / `IS_COLAB` are toggled at the top — they decide which Unsloth extras package to use and where the output directory lives. The current notebook is set up for Colab.\n", "\n", "Because of `%%capture`, you won't see pip's progress bars; the cell is silent on success. If something fails, drop the magic and re-run to surface the error." ] }, { "cell_type": "code", "execution_count": null, "id": "aa29805d", "metadata": { "id": "aa29805d" }, "outputs": [], "source": [ "%%capture\n", "# Unsloth ships platform-specific extras pinning xformers / triton / torch\n", "# to versions that match the runtime. Pick the right one based on host.\n", "import os as _os, sys as _sys\n", "IS_KAGGLE = False\n", "IS_COLAB = True\n", "\n", "!pip install -q --upgrade pip\n", "\n", "# if IS_KAGGLE:\n", "# !pip install -q \"unsloth[kaggle-new] @ git+https://github.com/unslothai/unsloth.git\"\n", "# elif IS_COLAB:\n", "# !pip install -q \"unsloth[colab-new] @ git+https://github.com/unslothai/unsloth.git\"\n", "# else:\n", "# !pip install -q unsloth\n", "\n", "!pip install -q unsloth\n", "\n", "!pip install -q --force-reinstall --no-deps \"transformers>=4.50,<5.0\"\n", "\n", "!pip install -q --upgrade \"trl<0.12.0\" peft accelerate datasets huggingface_hub bitsandbytes\n", "!pip install -q --upgrade optuna optuna-integration" ] }, { "cell_type": "markdown", "id": "318f19cb", "metadata": { "id": "318f19cb" }, "source": [ "## 2. Runtime sanity check\n", "\n", "Confirm the GPU, pick the right output directory (Kaggle vs Colab vs local), and fail loudly if there's no GPU.\n", "\n", "This cell pins three things you'll need later:\n", "\n", "1. **`OUT_DIR`** — host-specific destination for plots, checkpoints, the adapter, and metric JSONs. `/kaggle/working` on Kaggle, `/content/out` on Colab, `./out` otherwise.\n", "2. **`PYTORCH_ALLOC_CONF=expandable_segments:True`** — reduces VRAM fragmentation when models load and free repeatedly (matters during the 6 Optuna trials, where each trial reloads a fresh base model).\n", "3. **`USE_FP16` / `USE_BF16`** — Tesla T4 (Turing arch, CC 7.5) has no native bf16 support, so the cell forces fp16 there. Other GPUs (A100, H100, T4 successors) prefer bf16. Being explicit avoids silent precision conversions inside Unsloth.\n", "\n", "### What the output tells you\n", "\n", "```\n", "Environment : Colab\n", "Output dir : /content/out\n", "GPU : Tesla T4\n", "VRAM : 15.6 GB\n", "GPU count : 1\n", "Torch : 2.10.0+cu128\n", "CUDA : 12.8\n", "Precision : fp16\n", "```\n", "\n", "The `assert torch.cuda.is_available()` line halts the notebook with a clear error if the runtime is CPU-only — fail loud, fail early. 15.6 GB of VRAM is just enough to fit the 4-bit Qwen2.5-Coder-3B plus the LoRA adapter and a per-device batch of 2; if you see a smaller GPU, drop `per_device_train_batch_size` in the next cell." ] }, { "cell_type": "code", "execution_count": null, "id": "5dec74a0", "metadata": { "colab": { "base_uri": "https://localhost:8080/" }, "id": "5dec74a0", "outputId": "6a137f26-b499-42c7-caa7-b9dcbcdc17a9" }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Environment : Colab\n", "Output dir : /content/out\n", "GPU : Tesla T4\n", "VRAM : 15.6 GB\n", "GPU count : 1\n", "Torch : 2.10.0+cu128\n", "CUDA : 12.8\n", "Precision : fp16\n" ] } ], "source": [ "import os, sys, json, time, gc, re\n", "from pathlib import Path\n", "import torch\n", "\n", "\n", "if IS_KAGGLE:\n", " OUT_DIR = Path('/kaggle/working')\n", "elif IS_COLAB:\n", " OUT_DIR = Path('/content/out')\n", "else:\n", " OUT_DIR = Path('./out')\n", "OUT_DIR.mkdir(parents=True, exist_ok=True)\n", "\n", "os.environ.setdefault('PYTORCH_ALLOC_CONF', 'expandable_segments:True')\n", "\n", "assert torch.cuda.is_available(), 'No GPU detected — enable GPU in runtime settings.'\n", "gpu = torch.cuda.get_device_properties(0)\n", "\n", "print(f'Environment : {\"Kaggle\" if IS_KAGGLE else \"Colab\" if IS_COLAB else \"Local\"}')\n", "print(f'Output dir : {OUT_DIR}')\n", "print(f'GPU : {gpu.name}')\n", "print(f'VRAM : {gpu.total_memory / 1e9:.1f} GB')\n", "print(f'GPU count : {torch.cuda.device_count()}')\n", "print(f'Torch : {torch.__version__}')\n", "print(f'CUDA : {torch.version.cuda}')\n", "\n", "# T4 (Turing) does not support bf16. We use fp16 throughout. Unsloth also\n", "# handles this internally, but being explicit avoids silent conversions.\n", "IS_T4 = 'T4' in gpu.name\n", "USE_FP16 = IS_T4\n", "USE_BF16 = not IS_T4\n", "print(f'Precision : {\"fp16\" if USE_FP16 else \"bf16\"}')" ] }, { "cell_type": "markdown", "id": "542213a7", "metadata": { "id": "542213a7" }, "source": [ "## 3. Config\n", "\n", "Every knob lives in one dict. Fixed hyperparameters (batch size, epochs, target modules) stay here; Optuna tunes the ones below marked `(TUNED)`.\n", "\n", "The dict is split into five sections — keeping them in one place makes it easy to fork the notebook for a different model or dataset without hunting through cells.\n", "\n", "| Section | Keys | Notes |\n", "|---|---|---|\n", "| **Model** | `base_model`, `max_seq_length`, `load_in_4bit` | Unsloth's pre-quantised 4-bit checkpoint loads ~4× faster than letting bitsandbytes quantise on the fly. `max_seq_length=512` covers the dataset's p99 (≈453 tokens) with a small safety margin. |\n", "| **Dataset** | `dataset_repo` | HF Hub repo for the SFT dataset. |\n", "| **Fixed SFT hparams** | `per_device_train_batch_size=2`, `gradient_accumulation_steps=8`, `num_train_epochs=2`, `optim='adamw_8bit'`, `lr_scheduler_type='cosine'`, `weight_decay=0.0`, `seed=42`, `lora_target_modules=[q_proj, k_proj, v_proj, o_proj]` | Effective batch = 2 × 8 = 16 sequences. `adamw_8bit` saves ~25% VRAM vs. fp32 Adam. LoRA only attaches to the four attention projections — MLP projections are skipped to keep the adapter small (~15 MB). |\n", "| **Optuna search (TUNED)** | `n_trials=6`, `trial_max_train_rows=500`, `trial_epochs=1` | A short, *ranking-only* search: 6 trials × 1 epoch × 500 rows ≈ 25 min on a T4. The aim is to rank hparams, not converge them. |\n", "| **Checkpointing** | `save_steps=50`, `save_total_limit=3`, `eval_steps=50`, `logging_steps=10` | Every 50 steps; only the last 3 checkpoints survive on disk to keep the working directory under Kaggle's quota. |\n", "| **Output** | `adapter_repo`, `adapter_private` | Where the LoRA adapter is pushed at the end. Private by default so you can iterate before sharing. |\n", "\n", "The trailing `CONFIG` line returns the dict so Jupyter renders it inline — a quick visual confirmation that nothing got mistyped before training kicks off." ] }, { "cell_type": "code", "execution_count": null, "id": "c62a61cc", "metadata": { "colab": { "base_uri": "https://localhost:8080/" }, "id": "c62a61cc", "outputId": "636f3fdc-b5c4-4c91-d18d-4505703ffd22" }, "outputs": [], "source": [ "CONFIG = {\n", " # --- Model ---\n", " # Unsloth's 4-bit pre-quantized version loads ~4× faster than bnb-on-the-fly\n", " 'base_model': 'unsloth/Qwen2.5-Coder-3B-Instruct-bnb-4bit',\n", " 'max_seq_length': 512, # our dataset p99 is 453; 512 covers everything\n", " 'load_in_4bit': True,\n", "\n", " # --- Dataset ---\n", " 'dataset_repo': 'Sizzing/aws-rl-sft',\n", "\n", " # --- Fixed SFT hyperparameters ---\n", " 'per_device_train_batch_size': 2,\n", " 'gradient_accumulation_steps': 8, # effective batch = 16\n", " 'num_train_epochs': 2, # full final run\n", " 'optim': 'adamw_8bit', # Unsloth-compatible, saves VRAM\n", " 'max_grad_norm': 1.0,\n", " 'lr_scheduler_type': 'cosine',\n", " 'weight_decay': 0.0, # LoRA is self-regularizing\n", " 'seed': 42,\n", " 'lora_target_modules': ['q_proj', 'k_proj', 'v_proj', 'o_proj'],\n", "\n", " # --- Optuna search (TUNED) ---\n", " 'n_trials': 6,\n", " 'trial_max_train_rows': 500, # subset for fast trials\n", " 'trial_epochs': 1, # one pass is enough to rank hparams\n", "\n", " # --- Checkpointing ---\n", " 'save_steps': 50,\n", " 'save_total_limit': 3, # keep last 3 checkpoints\n", " 'logging_steps': 10,\n", " 'eval_steps': 50,\n", "\n", " # --- Output ---\n", " 'adapter_repo': 'Sizzing/aws-rl-sft-qwen25coder3b-adapter',\n", " 'adapter_private': True,\n", "}\n", "\n", "CONFIG" ] }, { "cell_type": "markdown", "id": "9cafd68f", "metadata": {}, "source": [ "## 3a. Plotting helpers (matplotlib)\n", "\n", "Defines the plot functions and `PLOTS_DIR` used throughout the notebook. Every figure produced later (training curves, Optuna views, eval comparison) is rendered inline **and** saved to `OUT_DIR/plots/` as a PNG so it can be downloaded.\n", "\n", "The cell registers seven plot helpers and a shared colour palette so all artefacts have one visual language (matches `compare_base_vs_sft.ipynb`):\n", "\n", "| Helper | Used in | What it shows |\n", "|---|---|---|\n", "| `plot_training_curves(log_history, …)` | §11a (final SFT) | 2×2 grid: train loss, eval loss, LR schedule, gradient norm |\n", "| `plot_optuna_history(study)` | §10 | Per-trial objective + best-so-far line — answers \"did later trials improve?\" |\n", "| `plot_optuna_param_importances(study)` | §10 | fANOVA-style horizontal bar of relative importance — which knob mattered |\n", "| `plot_optuna_parallel_coordinates(study)` | §10 | Polylines connecting hparams; viridis colour = objective (lower = better) |\n", "| `plot_optuna_slice(study)` | §10 | One scatter per param against the objective, coloured by trial number |\n", "| `plot_optuna_trial_loss_curves(study)` | §10 | Overlay every trial's training/eval curves — relies on `log_history` stashed via `trial.set_user_attr` inside `objective()` |\n", "| `plot_eval_comparison(baseline, posttrain)` | §12 | Grouped bars (before vs after) + delta-pp bar (green = improvement, red = regression) |\n", "\n", "The internal helpers `_save()` and `_split_log_history()` are private utilities. `_save()` writes PNGs at 150 DPI with a white background so the images display cleanly on dark slides too. `_split_log_history()` separates the trainer's mixed list of train/eval/summary records — train rows have `loss`+`step`, eval rows have `eval_loss`+`step`, the final summary row (no step) is dropped.\n", "\n", "### What the output tells you\n", "\n", "A single confirmation line:\n", "\n", "```\n", "Plot helpers ready. Figures will be saved to: \n", "```\n", "\n", "No figure renders here — the cell only registers helpers." ] }, { "cell_type": "code", "execution_count": null, "id": "24a126e5", "metadata": {}, "outputs": [], "source": [ "# ─── Plotting helpers ──────────────────────────────────────────────────────\n", "# All training-time charts (loss/eval/lr/grad-norm + Optuna views + eval bars)\n", "# are matplotlib figures, displayed inline and saved as PNGs to OUT_DIR/plots/.\n", "# Helpers:\n", "# plot_training_curves(...) — train/eval loss + lr + grad_norm\n", "# plot_optuna_history(...) — best-so-far + per-trial scatter\n", "# plot_optuna_param_importances(...) — fANOVA-style horizontal bar\n", "# plot_optuna_parallel_coordinates(...) — per-trial polylines\n", "# plot_optuna_slice(...) — each param vs objective\n", "# plot_optuna_trial_loss_curves(...) — overlay every trial's loss curves\n", "# plot_eval_comparison(...) — baseline vs post-SFT bars + delta\n", "import math\n", "import numpy as np\n", "import matplotlib.pyplot as plt\n", "import matplotlib.patches as mpatches\n", "from matplotlib.gridspec import GridSpec\n", "\n", "PLOTS_DIR = OUT_DIR / 'plots'\n", "PLOTS_DIR.mkdir(parents=True, exist_ok=True)\n", "\n", "# Colour palette mirrors compare_base_vs_sft.ipynb so all artefacts share one\n", "# visual language.\n", "COLOR_BASELINE = '#4C72B0'\n", "COLOR_TRAINED = '#DD8452'\n", "COLOR_POS = '#55A868'\n", "COLOR_NEG = '#C44E52'\n", "COLOR_TRAIN = '#4C72B0'\n", "COLOR_EVAL = '#DD8452'\n", "COLOR_GRAD = '#8172B2'\n", "COLOR_LR = '#937860'\n", "\n", "plt.rcParams.update({\n", " 'figure.dpi': 120,\n", " 'font.family': 'DejaVu Sans',\n", " 'font.size': 11,\n", " 'axes.titlesize': 12,\n", " 'axes.titleweight': 'bold',\n", " 'axes.labelsize': 10,\n", " 'axes.spines.top': False,\n", " 'axes.spines.right': False,\n", " 'axes.grid': True,\n", " 'grid.alpha': 0.35,\n", " 'legend.framealpha': 0.9,\n", " 'legend.fontsize': 9,\n", " 'xtick.labelsize': 9,\n", " 'ytick.labelsize': 9,\n", "})\n", "\n", "\n", "def _save(fig, name):\n", " \"\"\"Save a figure to PLOTS_DIR/.png at dpi=150 with white background.\"\"\"\n", " path = PLOTS_DIR / f'{name}.png'\n", " fig.savefig(path, dpi=150, bbox_inches='tight', facecolor='white')\n", " print(f' saved -> {path}')\n", " return path\n", "\n", "\n", "def _split_log_history(log_history):\n", " \"\"\"Split trainer.state.log_history into (train_records, eval_records).\n", "\n", " Train rows have 'loss' + 'step'; eval rows have 'eval_loss' + 'step'. The\n", " final summary row (no step) is dropped.\n", " \"\"\"\n", " train, eval_ = [], []\n", " for r in log_history:\n", " if 'loss' in r and 'step' in r:\n", " train.append(r)\n", " if 'eval_loss' in r and 'step' in r:\n", " eval_.append(r)\n", " return train, eval_\n", "\n", "\n", "def plot_training_curves(log_history, *, title, save_name):\n", " \"\"\"Render train/eval loss + LR + grad-norm in a 2x2 grid.\"\"\"\n", " train, eval_ = _split_log_history(log_history)\n", " if not train:\n", " print(f' (no training records to plot for {save_name})')\n", " return None\n", "\n", " t_step = np.array([r['step'] for r in train])\n", " t_loss = np.array([r['loss'] for r in train])\n", " t_lr = np.array([r.get('learning_rate', np.nan) for r in train])\n", " t_gn = np.array([r.get('grad_norm', np.nan) for r in train])\n", "\n", " fig = plt.figure(figsize=(14, 9))\n", " gs = GridSpec(2, 2, figure=fig, hspace=0.36, wspace=0.28)\n", " ax_loss = fig.add_subplot(gs[0, 0])\n", " ax_eval = fig.add_subplot(gs[0, 1])\n", " ax_lr = fig.add_subplot(gs[1, 0])\n", " ax_gn = fig.add_subplot(gs[1, 1])\n", "\n", " ax_loss.plot(t_step, t_loss, color=COLOR_TRAIN, lw=1.6, label='train_loss')\n", " ax_loss.set(title='Training loss vs step', xlabel='Step', ylabel='Cross-entropy loss')\n", " ax_loss.legend(loc='upper right')\n", "\n", " if eval_:\n", " e_step = np.array([r['step'] for r in eval_])\n", " e_loss = np.array([r['eval_loss'] for r in eval_])\n", " ax_eval.plot(e_step, e_loss, color=COLOR_EVAL, lw=1.6,\n", " marker='o', markersize=5, label='eval_loss')\n", " ax_eval.set(title='Eval loss vs step', xlabel='Step', ylabel='Eval cross-entropy loss')\n", " ax_eval.legend(loc='upper right')\n", " else:\n", " ax_eval.text(0.5, 0.5, 'No eval records', ha='center', va='center',\n", " transform=ax_eval.transAxes, color='#888')\n", " ax_eval.set(title='Eval loss vs step', xlabel='Step', ylabel='Eval cross-entropy loss')\n", "\n", " if not np.all(np.isnan(t_lr)):\n", " ax_lr.plot(t_step, t_lr, color=COLOR_LR, lw=1.6, label='learning_rate')\n", " ax_lr.set(title='Learning rate schedule', xlabel='Step', ylabel='Learning rate')\n", " ax_lr.legend(loc='upper right')\n", " else:\n", " ax_lr.text(0.5, 0.5, 'No LR records', ha='center', va='center',\n", " transform=ax_lr.transAxes, color='#888')\n", " ax_lr.set(title='Learning rate schedule', xlabel='Step', ylabel='Learning rate')\n", "\n", " if not np.all(np.isnan(t_gn)):\n", " ax_gn.plot(t_step, t_gn, color=COLOR_GRAD, lw=1.6, label='grad_norm')\n", " ax_gn.set(title='Gradient norm vs step', xlabel='Step', ylabel='||grad||₂')\n", " ax_gn.legend(loc='upper right')\n", " else:\n", " ax_gn.text(0.5, 0.5, 'No grad-norm records', ha='center', va='center',\n", " transform=ax_gn.transAxes, color='#888')\n", " ax_gn.set(title='Gradient norm vs step', xlabel='Step', ylabel='||grad||₂')\n", "\n", " fig.suptitle(title, fontsize=14, fontweight='bold', y=1.00)\n", " plt.tight_layout()\n", " _save(fig, save_name)\n", " plt.show()\n", " return fig\n", "\n", "\n", "def plot_optuna_history(study, *, save_name='optuna_history'):\n", " \"\"\"Best-so-far line + per-trial scatter (matplotlib version of plot_optimization_history).\"\"\"\n", " trials = [t for t in study.trials if t.value is not None]\n", " if not trials:\n", " print(' (no completed trials to plot)'); return None\n", " nums = np.array([t.number for t in trials])\n", " vals = np.array([t.value for t in trials])\n", " best_so_far = np.minimum.accumulate(vals)\n", "\n", " fig, ax = plt.subplots(figsize=(10, 5))\n", " ax.scatter(nums, vals, s=55, color=COLOR_TRAIN, edgecolors='white',\n", " linewidths=0.6, label='Trial value', zorder=3)\n", " ax.plot(nums, best_so_far, color=COLOR_NEG, lw=1.8, marker='s',\n", " markersize=6, label='Best so far', zorder=2)\n", " ax.set(title='Optuna optimization history',\n", " xlabel='Trial number',\n", " ylabel=f'Objective (eval_loss, {study.direction.name.lower()})')\n", " ax.set_xticks(nums)\n", " ax.legend(loc='upper right')\n", " plt.tight_layout()\n", " _save(fig, save_name)\n", " plt.show()\n", " return fig\n", "\n", "\n", "def plot_optuna_param_importances(study, *, save_name='optuna_importances'):\n", " \"\"\"fANOVA-style horizontal bar of optuna.importance.get_param_importances.\"\"\"\n", " try:\n", " import optuna\n", " importances = optuna.importance.get_param_importances(study)\n", " except Exception as e:\n", " print(f' (param importances unavailable: {e})')\n", " return None\n", " params = list(importances.keys())\n", " vals = list(importances.values())\n", " order = np.argsort(vals)[::-1]\n", " params = [params[i] for i in order]\n", " vals = [vals[i] for i in order]\n", "\n", " fig, ax = plt.subplots(figsize=(10, max(3, 0.6 * len(params) + 1.5)))\n", " bars = ax.barh(params[::-1], vals[::-1], color=COLOR_TRAIN,\n", " edgecolor='white', linewidth=0.6)\n", " for bar, v in zip(bars, vals[::-1]):\n", " ax.text(bar.get_width() + 0.005, bar.get_y() + bar.get_height()/2,\n", " f'{v:.3f}', va='center', fontsize=9, fontweight='bold')\n", " ax.set(title='Hyperparameter importance (fANOVA-style)',\n", " xlabel='Relative importance', ylabel='Hyperparameter')\n", " if vals:\n", " ax.set_xlim(0, max(vals) * 1.15)\n", " plt.tight_layout()\n", " _save(fig, save_name)\n", " plt.show()\n", " return fig\n", "\n", "\n", "def plot_optuna_parallel_coordinates(study, *, save_name='optuna_parallel'):\n", " \"\"\"Per-trial polyline plot. Color = objective value (lower = better).\"\"\"\n", " trials = [t for t in study.trials if t.value is not None]\n", " if not trials:\n", " print(' (no completed trials to plot)'); return None\n", "\n", " param_names = []\n", " for t in trials:\n", " for k in t.params:\n", " if k not in param_names:\n", " param_names.append(k)\n", "\n", " n_trials = len(trials)\n", " n_dims = len(param_names) + 1\n", " matrix = np.zeros((n_trials, n_dims))\n", " tick_labels = {}\n", "\n", " for d, p in enumerate(param_names):\n", " col = [t.params.get(p) for t in trials]\n", " if all(isinstance(v, (int, float)) and not isinstance(v, bool) for v in col):\n", " matrix[:, d] = col\n", " else:\n", " uniques = sorted({str(v) for v in col})\n", " mp = {u: i for i, u in enumerate(uniques)}\n", " matrix[:, d] = [mp[str(v)] for v in col]\n", " tick_labels[d] = uniques\n", " matrix[:, -1] = [t.value for t in trials]\n", " obj_label = 'objective (eval_loss)'\n", "\n", " norm = np.zeros_like(matrix)\n", " for d in range(n_dims):\n", " col = matrix[:, d]\n", " lo, hi = col.min(), col.max()\n", " norm[:, d] = (col - lo) / (hi - lo) if hi > lo else 0.5\n", "\n", " obj_vals = matrix[:, -1]\n", " cmap = plt.cm.viridis_r\n", " spread = np.ptp(obj_vals) if np.ptp(obj_vals) else 1.0\n", " obj_norm = (obj_vals - obj_vals.min()) / spread\n", "\n", " fig, ax = plt.subplots(figsize=(12, 5.5))\n", " xs = np.arange(n_dims)\n", " for i in range(n_trials):\n", " ax.plot(xs, norm[i], color=cmap(obj_norm[i]), alpha=0.85, lw=1.5)\n", "\n", " for d in range(n_dims):\n", " ax.axvline(d, color='#bbb', lw=0.8, zorder=1)\n", "\n", " ax.set_xticks(xs)\n", " ax.set_xticklabels(param_names + [obj_label], rotation=20, ha='right')\n", " ax.set_yticks([0, 0.5, 1.0])\n", " ax.set_yticklabels(['min', 'mid', 'max'])\n", " ax.set(title='Optuna parallel coordinates (color = objective; lower is better)',\n", " xlabel='Hyperparameter', ylabel='Normalised value')\n", " for d, labels in tick_labels.items():\n", " text = f'{param_names[d]}: ' + ', '.join(f'{i}={l}' for i, l in enumerate(labels))\n", " ax.annotate(text, xy=(d, -0.18), xycoords=('data', 'axes fraction'),\n", " ha='center', fontsize=7, color='#555')\n", "\n", " sm = plt.cm.ScalarMappable(cmap=cmap,\n", " norm=plt.Normalize(vmin=obj_vals.min(), vmax=obj_vals.max()))\n", " sm.set_array([])\n", " cbar = fig.colorbar(sm, ax=ax, pad=0.02)\n", " cbar.set_label(obj_label, fontsize=9)\n", " plt.tight_layout()\n", " _save(fig, save_name)\n", " plt.show()\n", " return fig\n", "\n", "\n", "def plot_optuna_slice(study, *, save_name='optuna_slice'):\n", " \"\"\"Per-parameter scatter: param value vs objective, colored by trial number.\"\"\"\n", " trials = [t for t in study.trials if t.value is not None]\n", " if not trials:\n", " print(' (no completed trials)'); return None\n", " param_names = []\n", " for t in trials:\n", " for k in t.params:\n", " if k not in param_names:\n", " param_names.append(k)\n", " n = len(param_names)\n", " cols = min(3, n)\n", " rows = math.ceil(n / cols)\n", " fig, axes = plt.subplots(rows, cols, figsize=(5.0 * cols, 4.0 * rows),\n", " squeeze=False, constrained_layout=True)\n", " sc = None\n", " for i, p in enumerate(param_names):\n", " ax = axes[i // cols][i % cols]\n", " xs = [t.params.get(p) for t in trials]\n", " ys = [t.value for t in trials]\n", " nums = [t.number for t in trials]\n", " if not all(isinstance(v, (int, float)) and not isinstance(v, bool) for v in xs):\n", " uniques = sorted({str(v) for v in xs})\n", " mp = {u: i for i, u in enumerate(uniques)}\n", " xs_plot = [mp[str(v)] for v in xs]\n", " ax.set_xticks(list(range(len(uniques))))\n", " ax.set_xticklabels(uniques)\n", " else:\n", " xs_plot = xs\n", " sc = ax.scatter(xs_plot, ys, c=nums, cmap='viridis', s=60,\n", " edgecolors='white', linewidths=0.6)\n", " ax.set(title=p, xlabel=p, ylabel='eval_loss')\n", " for j in range(n, rows * cols):\n", " axes[j // cols][j % cols].axis('off')\n", " if sc is not None:\n", " cbar = fig.colorbar(sc, ax=axes.ravel().tolist(), pad=0.02, fraction=0.04)\n", " cbar.set_label('Trial number', fontsize=9)\n", " fig.suptitle('Optuna slice plot (objective vs each hyperparameter)',\n", " fontsize=14, fontweight='bold')\n", " _save(fig, save_name)\n", " plt.show()\n", " return fig\n", "\n", "\n", "def plot_optuna_trial_loss_curves(study, *, save_name='optuna_trial_curves'):\n", " \"\"\"Overlay every trial's training-loss + eval-loss curves.\n", "\n", " Reads `log_history` from each trial's user_attrs (set inside objective()).\n", " \"\"\"\n", " trials_with_history = [t for t in study.trials\n", " if t.value is not None\n", " and 'log_history' in t.user_attrs]\n", " if not trials_with_history:\n", " print(' (no per-trial log_history captured — skipping trial curves)')\n", " return None\n", "\n", " cmap = plt.cm.viridis\n", " n = len(trials_with_history)\n", "\n", " fig, (ax_t, ax_e) = plt.subplots(1, 2, figsize=(14, 5))\n", " for i, t in enumerate(trials_with_history):\n", " log = t.user_attrs['log_history']\n", " train, eval_ = _split_log_history(log)\n", " color = cmap(i / max(1, n - 1))\n", " if train:\n", " ax_t.plot([r['step'] for r in train], [r['loss'] for r in train],\n", " color=color, lw=1.4, alpha=0.9,\n", " label=f'trial {t.number} (loss={t.value:.3f})')\n", " if eval_:\n", " ax_e.plot([r['step'] for r in eval_], [r['eval_loss'] for r in eval_],\n", " color=color, lw=1.4, marker='o', markersize=4, alpha=0.9,\n", " label=f'trial {t.number} (loss={t.value:.3f})')\n", "\n", " ax_t.set(title='Per-trial training loss', xlabel='Step', ylabel='Cross-entropy loss')\n", " ax_e.set(title='Per-trial eval loss', xlabel='Step', ylabel='Eval cross-entropy loss')\n", " ax_t.legend(loc='upper right', fontsize=7)\n", " ax_e.legend(loc='upper right', fontsize=7)\n", " fig.suptitle('Optuna — per-trial training & eval curves', fontweight='bold', y=1.02)\n", " plt.tight_layout()\n", " _save(fig, save_name)\n", " plt.show()\n", " return fig\n", "\n", "\n", "def plot_eval_comparison(baseline, posttrain, *, save_name='eval_metrics_comparison'):\n", " \"\"\"Grouped bar (baseline vs post-SFT) + delta bar for the 4 eval metrics.\"\"\"\n", " keys = ['format_pct', 'exact_pct', 'service_pct', 'operation_pct']\n", " labels = ['Format', 'Exact', 'Service', 'Operation']\n", " base_v = [100 * baseline[k] for k in keys]\n", " post_v = [100 * posttrain[k] for k in keys]\n", " delta = [p - b for b, p in zip(base_v, post_v)]\n", "\n", " fig = plt.figure(figsize=(14, 5.5))\n", " gs = GridSpec(1, 2, figure=fig, wspace=0.3)\n", " ax1 = fig.add_subplot(gs[0, 0])\n", " ax2 = fig.add_subplot(gs[0, 1])\n", "\n", " x, w = np.arange(len(labels)), 0.35\n", " bars1 = ax1.bar(x - w/2, base_v, w, color=COLOR_BASELINE, label='Pre-SFT (baseline)',\n", " edgecolor='white', linewidth=0.6)\n", " bars2 = ax1.bar(x + w/2, post_v, w, color=COLOR_TRAINED, label='Post-SFT',\n", " edgecolor='white', linewidth=0.6)\n", " for bars in (bars1, bars2):\n", " for bar in bars:\n", " ax1.text(bar.get_x() + bar.get_width()/2, bar.get_height() + 1,\n", " f'{bar.get_height():.1f}%', ha='center', va='bottom',\n", " fontsize=9, fontweight='bold')\n", " ax1.set(title='Eval metrics — Baseline vs Post-SFT', xlabel='Metric',\n", " ylabel='Score (%)', ylim=(0, 118))\n", " ax1.set_xticks(x); ax1.set_xticklabels(labels)\n", " ax1.legend(loc='lower right')\n", "\n", " colors = [COLOR_POS if d >= 0 else COLOR_NEG for d in delta]\n", " bars = ax2.bar(x, delta, 0.5, color=colors, edgecolor='white', linewidth=0.6)\n", " for bar, d in zip(bars, delta):\n", " ax2.text(bar.get_x() + bar.get_width()/2,\n", " bar.get_height() + (0.6 if d >= 0 else -1.6),\n", " f'{d:+.1f}pt', ha='center',\n", " va='bottom' if d >= 0 else 'top',\n", " fontsize=9, fontweight='bold')\n", " ax2.axhline(0, color='#333', lw=0.9)\n", " ax2.set(title='Delta (Post − Pre, percentage points)', xlabel='Metric', ylabel='Δ pp')\n", " ax2.set_xticks(x); ax2.set_xticklabels(labels)\n", " ax2.legend(handles=[mpatches.Patch(color=COLOR_POS, label='Improvement'),\n", " mpatches.Patch(color=COLOR_NEG, label='Regression')])\n", " plt.tight_layout()\n", " _save(fig, save_name)\n", " plt.show()\n", " return fig\n", "\n", "\n", "print(f'Plot helpers ready. Figures will be saved to: {PLOTS_DIR}')" ] }, { "cell_type": "markdown", "id": "90b842d0", "metadata": { "id": "90b842d0" }, "source": [ "## 4. Authenticate\n", "\n", "`HF_TOKEN` must be set so we can pull the dataset and (later) push the LoRA adapter.\n", "\n", "**On Kaggle**: Notebook → Add-ons → Secrets → add `HF_TOKEN`. The cell below picks it up automatically.\n", "**On Colab**: Sidebar → key icon → add `HF_TOKEN` to Colab Secrets.\n", "**Locally**: `export HF_TOKEN=...` before launching the kernel.\n", "\n", "The cell branches on the runtime: Kaggle reads via `UserSecretsClient`, Colab via `google.colab.userdata`, local just inherits the env var. After the token is in `os.environ`, `huggingface_hub.login()` registers it for every later HF call (datasets, model pull, hub push) without you having to thread the token through each one.\n", "\n", "`add_to_git_credential=False` keeps the token out of `~/.gitconfig` — important on shared runtimes where the next session might not be yours.\n", "\n", "The `assert` makes the missing-token failure mode loud: a one-line halt instead of an obscure 401 deep inside `load_dataset` later.\n", "\n", "### What the output tells you\n", "\n", "```\n", "OK: HF authenticated\n", "```\n", "\n", "Anything else (a Python traceback, a 401, a \"token revoked\" warning) means the token is wrong or expired — fix it before continuing or every later HF call will fail." ] }, { "cell_type": "code", "execution_count": null, "id": "92b83e84", "metadata": { "colab": { "base_uri": "https://localhost:8080/" }, "id": "92b83e84", "outputId": "44bd34a1-7e1e-49cf-99e2-e67b85655ee7" }, "outputs": [], "source": [ "if IS_KAGGLE:\n", " from kaggle_secrets import UserSecretsClient\n", " secrets = UserSecretsClient()\n", " os.environ['HF_TOKEN'] = secrets.get_secret('HF_TOKEN')\n", "elif IS_COLAB:\n", " from google.colab import userdata\n", " os.environ['HF_TOKEN'] = userdata.get('HF_TOKEN')\n", "\n", "assert 'HF_TOKEN' in os.environ and os.environ['HF_TOKEN'], 'HF_TOKEN missing'\n", "\n", "from huggingface_hub import login as hf_login\n", "hf_login(token=os.environ['HF_TOKEN'], add_to_git_credential=False)\n", "print('OK: HF authenticated')" ] }, { "cell_type": "markdown", "id": "a32d7ea4", "metadata": { "id": "a32d7ea4" }, "source": [ "## 5. Load dataset\n", "\n", "The dataset is already published at `Sizzing/aws-rl-sft`. Each row has `messages` (chat format) plus metadata columns (`task_id`, `difficulty`, `source`, `step_idx`) for filtering.\n", "\n", "`load_dataset(...)` pulls three parquet shards from the Hub: `train`, `validation`, and a held-out `reserve` split (used later for GRPO-time evaluation, not here). After the call returns, `ds` is a `DatasetDict` whose splits are lazily memory-mapped — no full load until you index into them.\n", "\n", "### What the output tells you\n", "\n", "```\n", "DatasetDict({\n", " train: Dataset({ features: [task_id, difficulty, source, step_idx, messages], num_rows: 1500 })\n", " validation: Dataset({ features: [task_id, difficulty, source, step_idx, messages], num_rows: 150 })\n", " reserve: Dataset({ features: [task_id, difficulty, source, step_idx, messages], num_rows: 200 })\n", "})\n", "```\n", "\n", "The sanity-print walks the `messages` list of one training row. Each row has three turns:\n", "\n", "- **`system`** — the AWS-engineer persona prompt (constant across the dataset)\n", "- **`user`** — the task description plus environment context (`Step:`, `Last command output:`, …)\n", "- **`assistant`** — the canonical AWS CLI command (this is the supervision target)\n", "\n", "Example output:\n", "\n", "```\n", "task_id=11 difficulty=intermediate source=verification\n", " [system ] You are an AWS cloud engineer interacting with a real AWS environment via CLI...\n", " [user ] TASK: Create an S3 bucket named 'data-pipeline' and upload a file to it...\n", " [assistant] aws s3api list-objects-v2 --bucket data-pipeline\n", "```\n", "\n", "Metadata fields (`difficulty`, `source`, `step_idx`) drive the eval-set curation in §6 — we want coverage across difficulty tiers and source categories, not just easy prompts." ] }, { "cell_type": "code", "execution_count": null, "id": "5f2a8c98", "metadata": { "colab": { "base_uri": "https://localhost:8080/", "height": 684, "referenced_widgets": [ "29231af3a98a4913a229841d84b27422", "27ce5b996e4742a7a835112d03a9ae17", "eb3e7af58dc7441f9befff94cd837496", "bd36a2a263244450b85a492f96d018fa", "7fca6a24a44a45bb87e8cc4fd390403e", "a3adefd3834347cdb48d9e3316a5ed48", "a83dabfdb0324a9abc66b7bb47142fdc", "778e34c12b4347d387dc53596a598fe2", "bda8d508d0a24cdaab5782d2cc1335e8", "897116c49c5c4c9591c2c77d7538e851", "4f7701101cc24c2f90049a6fc0919d80", "458d4b1b8efa47da9485514935fdbbf1", "ad2af2ba3b334823a563ce1dd4b2c65f", "8cf568edd88743b1a0cc66702873f5e6", "c05ce0271f8e4dc7a0315601532ca955", "4baef096df4242b48f3273c0ef46c648", "6016e224b904438cbe154f26372d8c38", "13d6cac54c3849f1afee12e0ef48dddf", "b9374d73b2ac427e9c8d55949737bf4b", "ac471c36448e42e6a4278eb212464d78", "e1c8bb5ef082498b8fe0a66130e69035", "481e292b38954268ace143e169dfca74", "75124ef3b8c5400986ad002c88504834", "bdde1deb5ae9491eae7b6152c81c059d", "7848ff282e424293b99fc1ffc4cd2fc2", "98925b8108c54ea28eb21503015989c1", "d9f6cfc6a3f449b49907ff71ff293141", "77770c5f10934573a6fbe934cfb9cb4d", "a6dbc6baa4b44ca0b042c6449959a7f0", "2ffe97ed07e54f17b353563bcdd48b41", "20e75436cb7942e98f86392cb0378079", "29da9ecefb744a6ebe187d6ad24a04ec", "1d5e153fda8a4e38884d13b4b916edda", "feebd174d6514ce69a24462b8cd314c4", "3ad89276ef674026baca9d24d1296710", "3d39bd5c62554dc98e37f26209681667", "d8cd88776dd640b8a2790bd8222a32e5", "2a30540f69414facb204ef8a7e6dea4a", "376b785a2a0f425693df17708b72f866", "13cba6f342194b9ca6288583f9ff7b7a", "992500d0a88044f3be59f23920e19f46", "4758f788c9894f0a94fe1263a23039b6", "5f810f46fc1d4b93a9362bab5e1d02cb", "eab6a31889534b9886ea848e324f1a93", "72eecc7e741a41d695abed8c79cf885e", "f834d546d5634bcabf4776770c6d8871", "f5fe5f5074154467a6d5101f06b2dfc5", "b52c54c6617d4f7294f843f02ab70f02", "6425c2a961c74464a23986d7f52590bf", "efeab27804f448febcf5335f0be8302d", "c6ac84d0c64b4259be243b913caf652c", "bd9250796f574171b657eb6da8880200", "a6969e8ebd3d4f2aa1fb6d9153654a28", "0ddc82e2462d4ad4b4661e55654352b3", "275b2d90c0da458abbf59c963afb2e7e", "de9c5e0f171e470c983d459e836ea96d", "c08137d749274ddfa7d16d00038bbdcc", "3a24f03afa3143448425861758e13de2", "8a4eb795873c46188f85230e6a948795", "14a182021a734a6399c7fd5d9da8e9c7", "72ec2fb877254e0b9bb0b8a636c25187", "f3ee5b5442b447539b1d7a72a9df1b58", "ed4d26c9971d41ba821bcbf8c876c1cb", "37f6fba6ad82421885e71b7cc4b42064", "84eaa448117b41fcbfa3d68b0287540e", "c73de00f6d4f456e8fb28a765df6a1fd", "fbdf24206c1f4640be831670f4d29ed0", "f530e71385fb41fbac41b8ac8c4e6d8e", "e01e04ec36af435fa9af715377355e5a", "4649e83451ae45fc9e47878075e04834", "a9e1f270b5314d4ba6c0417313dbd226", "73366bb0f86c4689828558a6db8160c2", "70c43ae789a94fa8b686164510c86176", "6332e4cac11e4456a57f49757ad7a243", "c21a9c6799f94f3b9400ed220a0fc1e9", "6c8e529410e94ce6af69ccfc3df6be6d", "d97b2639afd9447eb61a6983cebe605a" ] }, "id": "5f2a8c98", "outputId": "d5057f0c-ffae-440f-d587-0cfec9dfe4b1" }, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "29231af3a98a4913a229841d84b27422", "version_major": 2, "version_minor": 0 }, "text/plain": [ "README.md: 0.00B [00:00, ?B/s]" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "458d4b1b8efa47da9485514935fdbbf1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "data/train-00000-of-00001.parquet: 0%| | 0.00/1.92M [00:00 large for an 18-prompt eval.\n", "4. **`eval_model(model, tokenizer, eval_set)`** — runs greedy decoding (`do_sample=False, temperature=0.0`) on each prompt, decodes only the *new* tokens (slicing past `inputs.input_ids.shape[1]`), scores the completion, and returns aggregated percentages plus a `_per_row` list (used in §13 for qualitative inspection).\n", "\n", "Greedy decoding is deliberate: it makes the eval *deterministic* across runs. Same model + same prompt → same number every time, so the before/after delta is purely about the weights, not sampling noise.\n", "\n", "### What the output tells you\n", "\n", "```\n", "Eval set: 18 prompts across 9 (tier, source) combos\n", "```\n", "\n", "That's `max_per_combo=2 × 9 combos = 18` prompts spanning the difficulty tiers (easy/intermediate/hard) and source categories present in the validation split." ] }, { "cell_type": "code", "execution_count": null, "id": "a65c94e3", "metadata": { "colab": { "base_uri": "https://localhost:8080/" }, "id": "a65c94e3", "outputId": "5c9185ab-a335-4a14-f5d7-7f076b73d093" }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Eval set: 18 prompts across 9 (tier, source) combos\n" ] } ], "source": [ "def extract_command(raw: str) -> str:\n", " \"\"\"Strip fences/prose to find the first 'aws ...' line.\"\"\"\n", " text = raw.strip()\n", " if text.startswith('```'):\n", " lines = text.split('\\n')\n", " text = '\\n'.join(l for l in lines if not l.startswith('```')).strip()\n", " for line in text.split('\\n'):\n", " line = line.strip()\n", " if line.startswith('aws '):\n", " return line\n", " return text\n", "\n", "def score_row(completion: str, expected: str) -> dict:\n", " extracted = extract_command(completion)\n", " e_tokens = extracted.split()\n", " exp_tokens = expected.split()\n", " return {\n", " 'format_ok': completion.strip().startswith('aws '),\n", " 'format_after_extract': extracted.startswith('aws '),\n", " 'exact': extracted == expected.strip(),\n", " 'service': (len(e_tokens) >= 2 and len(exp_tokens) >= 2 and e_tokens[1:2] == exp_tokens[1:2]),\n", " 'operation': (len(e_tokens) >= 3 and len(exp_tokens) >= 3 and e_tokens[2:3] == exp_tokens[2:3]),\n", " }\n", "\n", "def curate_eval_set(dataset, max_per_combo: int = 2):\n", " seen = {}\n", " picks = []\n", " for r in dataset:\n", " key = (r['difficulty'], r['source'])\n", " seen[key] = seen.get(key, 0) + 1\n", " if seen[key] <= max_per_combo:\n", " picks.append(r)\n", " return picks\n", "\n", "def eval_model(model, tokenizer, eval_set, max_new_tokens: int = 120) -> dict:\n", " results = []\n", " model.eval()\n", " for row in eval_set:\n", " msgs = row['messages'][:2] # system + user only\n", " expected = row['messages'][2]['content']\n", " prompt = tokenizer.apply_chat_template(msgs, tokenize=False, add_generation_prompt=True)\n", " inputs = tokenizer(prompt, return_tensors='pt').to(model.device)\n", " t0 = time.time()\n", " with torch.inference_mode():\n", " out_ids = model.generate(\n", " **inputs, max_new_tokens=max_new_tokens,\n", " do_sample=False, temperature=0.0,\n", " pad_token_id=tokenizer.eos_token_id,\n", " )\n", " dt = time.time() - t0\n", " completion = tokenizer.decode(out_ids[0, inputs.input_ids.shape[1]:], skip_special_tokens=True)\n", " s = score_row(completion, expected)\n", " s.update({'latency': dt, 'len': len(completion), 'completion': completion, 'expected': expected})\n", " results.append(s)\n", " n = len(results)\n", " return {\n", " 'format_pct': sum(r['format_ok'] for r in results) / n,\n", " 'format_after_extract_pct': sum(r['format_after_extract'] for r in results) / n,\n", " 'exact_pct': sum(r['exact'] for r in results) / n,\n", " 'service_pct': sum(r['service'] for r in results) / n,\n", " 'operation_pct': sum(r['operation'] for r in results) / n,\n", " 'avg_latency': sum(r['latency'] for r in results) / n,\n", " 'avg_len': sum(r['len'] for r in results) / n,\n", " '_per_row': results,\n", " }\n", "\n", "EVAL_SET = curate_eval_set(ds['validation'], max_per_combo=2)\n", "combos = len(set((r['difficulty'], r['source']) for r in EVAL_SET))\n", "print(f'Eval set: {len(EVAL_SET)} prompts across {combos} (tier, source) combos')" ] }, { "cell_type": "markdown", "id": "264c8c94", "metadata": { "id": "264c8c94" }, "source": [ "## 7. Pre-SFT baseline eval\n", "\n", "Load Qwen2.5-Coder-3B in 4-bit and run the eval set. This is our **\"before\"** snapshot — we'll compare against it after training.\n", "\n", "`FastLanguageModel.from_pretrained` pulls the 4-bit pre-quantised checkpoint (~2 GB on disk vs. 6 GB for fp16). `for_inference()` then swaps in Unsloth's fused-attention kernels — generation gets ~2× faster, no accuracy loss.\n", "\n", "After the eval finishes, the cell:\n", "\n", "1. Prints the metrics (each as a percentage, plus latency/length averages)\n", "2. Dumps the metric dict (minus `_per_row` so the JSON stays small) to `OUT_DIR/baseline_metrics.json` — survives session restarts so you can rebuild §12's comparison without rerunning §7\n", "3. Frees the base model from VRAM (`del` + `gc.collect` + `torch.cuda.empty_cache`) so Optuna can reload from scratch each trial without OOMing\n", "\n", "### What the output tells you\n", "\n", "```\n", "=== PRE-SFT BASELINE ===\n", " format_pct 33.3%\n", " format_after_extract_pct 100.0%\n", " exact_pct 38.9%\n", " service_pct 77.8%\n", " operation_pct 61.1%\n", " avg_latency 1.60\n", " avg_len 85.83\n", "```\n", "\n", "### How to read these numbers\n", "\n", "- **`format_pct = 33.3%`** — only ⅓ of completions start with `aws ` directly. The base model often pads with prose before the command.\n", "- **`format_after_extract_pct = 100%`** — but every completion *contains* an `aws …` line somewhere. The model knows the shape, it just doesn't lead with it. SFT will cure this — the easiest delta.\n", "- **`exact_pct = 38.9%`** — the hardest target. Exact-match means the same flags, in the same order, with the same values. Real lift here is the headline number.\n", "- **`service_pct (77.8%) > operation_pct (61.1%) > exact_pct (38.9%)`** — the funnel: it picks the right service most of the time, the right operation often, the exact command less often. Each step down the hierarchy reveals where the base model leaks.\n", "- **`avg_latency ≈ 1.6 s/prompt`** — useful as a regression check; SFT shouldn't make generation slower.\n", "- **`avg_len ≈ 86 chars`** — relatively long because the base model wraps the command in prose; expect this to *shrink* after SFT.\n", "\n", "Remember these — §12 prints the same table after training, and the deltas tell you what SFT actually bought." ] }, { "cell_type": "code", "execution_count": null, "id": "dd2ffb4b", "metadata": { "colab": { "base_uri": "https://localhost:8080/", "height": 632, "referenced_widgets": [ "fd41dbbd73c5487d9b0d5e3751385225", "3f871a98b3214aecb047e164dc4a2a5d", "a419e0561e0f4b3da3f0eb8cb657755f", "87273b19125e42d0ad471db11f600a15", "170a45be12e84118b1499c2d5a6c1b49", "73b2b5b571f448b6bc3bc99552b1c392", "37924cda1a6446ffa7e3ed65c46fb0f2", "db75caefb31b4f49876694c98de6a6ad", "d2106145680e4083a0d3efae7309cbb8", "b68f12d836a24d57b2708b476bfc71ad", "3db2b92b2e844f229826b4c46dd1faf9", "d08376eb6b62480cb85f4e0b62320210", "5668a72966b841019572521c201ea4e2", "1ad5f8440a414d3eb18484e567ec57e5", "8946e4ccc6fa4cbc93fff996338aad43", "636f00f102ee4601839ab20f63386777", "895249c57814429e99f87e5d86907346", "61ad1078a7cc40819cdad3bf68531b6c", "94f05fcac46b45a88cf98017f1870ad8", "4423b209ea8a439d9dc62bd0c85a055e", "83e24d6711ab464daa46584dd6526e33", "48c20c5564494cd5bac8ed6577bd91b0", "4db1938146d24d3a8f267ad069c63baf", "cc72718e8e344f99839589eec9388dc5", "a336d465b4c146e68fb7f9e0414001e5", "7309057341a74ca28a8bd6e9f1d8e0df", "fe237eb64d7b4a71bf13753010e77cbb", "383bb49d4cd34c2685a36c0965e9730b", "6e1e9431d2da44648b11d4422814f4de", "d98c35bbd1524d6bb5b3faec9f74de31", "939163edb94b4620876de0deaf90d550", "4c4456ede1364182b6b84bab9dbd0ceb", "a90d649010ca43aebc1534822d3aee6a", "75b9ddd94a41423baf0eae13d3c74f9b", "6def0cb756d347cea530ec55079725f7", "8582e647c2e24f91aef1aa10c80e561c", "1bcdcc5cb631454d95ef3a2ca180fbda", "ceb840afa0094d96a145df316807a345", "c87be66de92644ca993361e6ca7a7cec", "b1f7e2baa64e461e928854bde8ca37da", "b0e7dc59392242baaad8d4ba599646e2", "241038e98d724ee5b15b20682725b1ec", "6f8cc86dadfa4e47a4e3ec2aeb9ef0da", "6d290f1a029d409999a4d4f9dad9af00", "98980e3258f148ae80e89c0b23847336", "fcbdd1e084124303be96ca0a89a8e293", "00ebf205de7145699686bf127480ec74", "bb5dea14dc0c420fa06ffda49187f503", "7e9cff4098c64cf9b95d105e1aff748c", "512998b463a04362a4d618f503ceb95c", "2e7179f8d86740689b94aa8af55f403d", "4d02b3371c1d4bd6a2dd7e9df50d227b", "4c03c750722344faad6a2636dcf2a8c4", "e1a49fe3dcfe4c518055364a3b9654b1", "530347c79cab4606835a0b7302e35f5b", "857fc23cb42c4e5297b6cbc12f42bfb1", "afbec639658a4db09b968424a52074f9", "fa9a37a523ec459e8d02007b55b1ba20", "f9f7b1fc79dc4bee9b6a0a946ff39bb2", "bf421ed09e4d42c3b906c51f159eaa2c", "f0e4397588a847af90236075a3065ac7", "83d5c8137daf43f08389eaa70861637f", "df691f3fe6d84515aea9eba173c19208", "609b59d6e0544e39a92d47ef036baf47", "1056869d6f2048b38e79ab0bdddf0d55", "1c846669e92d4d3a9cd91c408809ba69", "31f6a413168f45a5ab84a3e764013d78", "ccd9559fb88e4d6ab05f4d4f47a9e364", "f31c8cc62d4c401d8a865e6caad20c38", "1af65eaea1dc47e49ba71128f8cc7043", "66c2a12960974935949e3186d50d2e45", "5d6c9aa373cb457b84bf0818e880374f", "048621e84d3a417f803f7a3e944234a6", "eef7a636fa3d45b0865133884b93eea9", "9d9e8a585584449fbc2982735731b96e", "9edb47ef9a4e4348b0e99d302f1308eb", "c377f4bbadda4ca9a50769e7b7b83d1d", "57553e43d221422d921c4212d71ad972", "5463570fd1ad4f43af5e5d4a14e5bbb1", "8d3afe0c4db14a9ab7234230d9f12e3e", "8a6323e9aa7342e1ab3337f24a48d61e", "21b3fb6c19f54448a9e20ece85600a5b", "643b5f3367fc475aba8eeffe6091032c", "e67201215c274e8684c1c088bb7edc37", "d95d024f4dcb4bc5b0dfa92259ede3e5", "5e2d63577b9846649c53977c1e5f67e5", "636cba5df88940e2b92525b4c2ea00b6", "a6f703306605483c9fe86cc203e73a5d" ] }, "id": "dd2ffb4b", "outputId": "63999ae7-fba5-469a-bd32-76385896f53f" }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "🦥 Unsloth: Will patch your computer to enable 2x faster free finetuning.\n", "🦥 Unsloth Zoo will now patch everything to make training faster!\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "WARNING:unsloth_zoo.log:Unsloth: Could not patch trl.trainer.gkd_trainer: Direct module loading failed for UnslothGKDTrainer: parameter without a default follows parameter with a default (UnslothGKDTrainer.py, line 962)\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "==((====))== Unsloth 2026.4.7: Fast Qwen2 patching. Transformers: 4.57.6.\n", " \\\\ /| Tesla T4. Num GPUs = 1. Max memory: 14.563 GB. Platform: Linux.\n", "O^O/ \\_/ \\ Torch: 2.10.0+cu128. CUDA: 7.5. CUDA Toolkit: 12.8. Triton: 3.6.0\n", "\\ / Bfloat16 = FALSE. FA [Xformers = 0.0.35. FA2 = False]\n", " \"-____-\" Free license: http://github.com/unslothai/unsloth\n", "Unsloth: Fast downloading is enabled - ignore downloading bars which are red colored!\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fd41dbbd73c5487d9b0d5e3751385225", "version_major": 2, "version_minor": 0 }, "text/plain": [ "model.safetensors: 0%| | 0.00/2.05G [00:00assistant\\n`. The model only learns to produce the assistant turn, not memorise the system prompt or user task. This *completion-only loss* is essential — without it the trainer would also try to predict the system prompt and your loss numbers would be meaningless.\n", " - Trains, evaluates, stashes `log_history` on the trial via `set_user_attr` (used later by `plot_optuna_trial_loss_curves`), prints a one-line summary, frees memory, and returns `eval_loss` for Optuna to minimise.\n", "\n", "### What the output tells you\n", "\n", "This cell is just defining the function — no training output yet. Expect a single line:\n", "\n", "```\n", "Trial train: 500, trial val: 80\n", "```\n", "\n", "confirming the slices are sized correctly. Plus, on Transformers 4.x: `Transformers 4.57.6: no shim needed`. On 5.x: `Applied Transformers 5.x.y shim: tokenizer= -> processing_class=`. The actual per-trial logging happens in §9." ] }, { "cell_type": "code", "execution_count": null, "id": "c0a2eb83", "metadata": { "colab": { "base_uri": "https://localhost:8080/" }, "id": "c0a2eb83", "outputId": "eb4b5c4a-ad68-4330-bc1b-642eaae6935f" }, "outputs": [], "source": [ "# --- Transformers 5.x compatibility shim (no restart needed) ---\n", "# Unsloth 2026.x forwards `tokenizer=` through **kwargs to Trainer.__init__.\n", "# Transformers 5.0+ removed that kwarg in favor of `processing_class=`.\n", "# We patch Unsloth's captured reference so the rename happens at the boundary.\n", "try:\n", " import transformers as _tf\n", " import unsloth.models._utils as _u\n", " _major = int(_tf.__version__.split('.')[0])\n", " if _major >= 5 and not getattr(_u, '_unsloth_tokenizer_shim', False):\n", " _orig_init = _u._original_trainer_init\n", " def _shimmed_init(self, *args, **kwargs):\n", " if 'tokenizer' in kwargs:\n", " kwargs['processing_class'] = kwargs.pop('tokenizer')\n", " return _orig_init(self, *args, **kwargs)\n", " _u._original_trainer_init = _shimmed_init\n", " _u._unsloth_tokenizer_shim = True\n", " print(f'Applied Transformers {_tf.__version__} shim: tokenizer= -> processing_class=')\n", " else:\n", " print(f'Transformers {_tf.__version__}: no shim needed')\n", "except Exception as _e:\n", " print(f'Shim skipped: {_e}')\n", "\n", "import optuna\n", "from trl import SFTTrainer, SFTConfig\n", "from unsloth.chat_templates import train_on_responses_only\n", "\n", "# Prepare trial-sized splits once (not per trial)\n", "TRIAL_TRAIN = ds['train'].shuffle(seed=CONFIG['seed']).select(range(CONFIG['trial_max_train_rows']))\n", "TRIAL_VAL = ds['validation'].select(range(min(80, len(ds['validation']))))\n", "print(f'Trial train: {len(TRIAL_TRAIN)}, trial val: {len(TRIAL_VAL)}')\n", "\n", "def _render_messages(example, tokenizer):\n", " \"\"\"Apply the chat template to turn messages into a single text string.\n", " TRL 0.12+ requires an explicit text column; Unsloth respects the\n", " tokenizer's built-in Qwen2.5 ChatML template.\n", " \"\"\"\n", " return {'text': tokenizer.apply_chat_template(\n", " example['messages'], tokenize=False, add_generation_prompt=False,\n", " )}\n", "\n", "def objective(trial: optuna.Trial) -> float:\n", " \"\"\"One Optuna trial. Returns eval_loss (minimize).\"\"\"\n", " gc.collect(); torch.cuda.empty_cache()\n", "\n", " # --- Suggest hyperparameters ---\n", " lora_r = trial.suggest_categorical('lora_r', [8, 16, 32])\n", " lora_alpha_mul = trial.suggest_categorical('lora_alpha_mul', [1, 2, 4])\n", " lora_alpha = lora_r * lora_alpha_mul\n", " lora_dropout = trial.suggest_float('lora_dropout', 0.0, 0.1)\n", " learning_rate = trial.suggest_float('learning_rate', 1e-4, 5e-4, log=True)\n", " warmup_ratio = trial.suggest_categorical('warmup_ratio', [0.03, 0.1])\n", "\n", " # --- Load fresh model + tokenizer for this trial ---\n", " model, tokenizer = FastLanguageModel.from_pretrained(\n", " model_name=CONFIG['base_model'],\n", " max_seq_length=CONFIG['max_seq_length'],\n", " load_in_4bit=CONFIG['load_in_4bit'],\n", " )\n", " model = FastLanguageModel.get_peft_model(\n", " model,\n", " r=lora_r,\n", " lora_alpha=lora_alpha,\n", " lora_dropout=lora_dropout,\n", " target_modules=CONFIG['lora_target_modules'],\n", " bias='none',\n", " use_gradient_checkpointing='unsloth',\n", " random_state=CONFIG['seed'],\n", " )\n", "\n", " # --- Render messages -> text using THIS trial's tokenizer ---\n", " train_ds = TRIAL_TRAIN.map(lambda ex: _render_messages(ex, tokenizer))\n", " val_ds = TRIAL_VAL.map(lambda ex: _render_messages(ex, tokenizer))\n", " # Drop metadata and pre-tokenize, leaving only numeric columns.\n", " # Unsloth forces remove_unused_columns=False; if `text` survives into\n", " # the collator it raises 'too many dimensions str'. Pre-tokenizing and\n", " # skipping the trainer's internal dataset prep sidesteps both issues.\n", " train_ds = train_ds.remove_columns([c for c in train_ds.column_names if c != 'text'])\n", " val_ds = val_ds.remove_columns([c for c in val_ds.column_names if c != 'text'])\n", " def _tokenize(batch):\n", " return tokenizer(\n", " batch['text'], truncation=True,\n", " max_length=CONFIG['max_seq_length'], padding=False,\n", " )\n", " train_ds = train_ds.map(_tokenize, batched=True, remove_columns=['text'])\n", " val_ds = val_ds.map(_tokenize, batched=True, remove_columns=['text'])\n", "\n", " trial_dir = OUT_DIR / f'optuna/trial-{trial.number}'\n", " trainer = SFTTrainer(\n", " model=model,\n", " tokenizer=tokenizer,\n", " train_dataset=train_ds,\n", " eval_dataset=val_ds,\n", " args=SFTConfig(\n", " output_dir=str(trial_dir),\n", " dataset_text_field='text',\n", " dataset_kwargs={'skip_prepare_dataset': True}, # we pre-tokenized above\n", " max_seq_length=CONFIG['max_seq_length'],\n", " per_device_train_batch_size=CONFIG['per_device_train_batch_size'],\n", " gradient_accumulation_steps=CONFIG['gradient_accumulation_steps'],\n", " num_train_epochs=CONFIG['trial_epochs'],\n", " learning_rate=learning_rate,\n", " warmup_ratio=warmup_ratio,\n", " lr_scheduler_type=CONFIG['lr_scheduler_type'],\n", " optim=CONFIG['optim'],\n", " weight_decay=CONFIG['weight_decay'],\n", " max_grad_norm=CONFIG['max_grad_norm'],\n", " fp16=USE_FP16, bf16=USE_BF16,\n", " logging_steps=25,\n", " eval_strategy='epoch',\n", " save_strategy='no', # trials don't save\n", " report_to='none',\n", " run_name=f'optuna-trial-{trial.number}',\n", " seed=CONFIG['seed'],\n", " dataset_num_proc=1,\n", " ),\n", " )\n", " # Completion-only loss: mask system + user tokens; train only on the\n", " # assistant's reply. These ChatML delimiters are Qwen2.5-specific.\n", " trainer = train_on_responses_only(\n", " trainer,\n", " instruction_part='<|im_start|>user\\n',\n", " response_part='<|im_start|>assistant\\n',\n", " )\n", "\n", " trainer.train()\n", " eval_result = trainer.evaluate()\n", "\n", " # Stash the trainer's log_history on the trial so plot_optuna_trial_loss_curves\n", " # can overlay every trial's curves later without a custom TrainerCallback.\n", " trial.set_user_attr('log_history', list(trainer.state.log_history))\n", "\n", " loss = eval_result['eval_loss']\n", " print(f' Trial {trial.number}: r={lora_r} alpha={lora_alpha} dropout={lora_dropout:.3f} '\n", " f'lr={learning_rate:.2e} warmup={warmup_ratio} -> eval_loss={loss:.4f}')\n", "\n", " del model, tokenizer, trainer, train_ds, val_ds\n", " gc.collect(); torch.cuda.empty_cache()\n", " return loss" ] }, { "cell_type": "markdown", "id": "e51c5aec", "metadata": { "id": "e51c5aec" }, "source": [ "## 9. Run the Optuna study\n", "\n", "TPE sampler (Bayesian-ish) is more sample-efficient than random with only 6 trials.\n", "\n", "`optuna.create_study(direction='minimize')` makes a new in-memory study. `TPESampler(seed=42)` is deterministic — same seed, same trial sequence, so the search is reproducible. With only 6 trials a Tree-structured Parzen Estimator typically beats random because it builds a probability density of \"good\" vs \"bad\" hparams after the first few trials and biases later suggestions toward the good region.\n", "\n", "`study.optimize(objective, n_trials=6)` runs the loop. Each trial logs:\n", "\n", "- The Optuna `[I ...]` info line with parameters and the value\n", "- The notebook's own one-line summary (`Trial N: r=… alpha=… → eval_loss=…`)\n", "- An Unsloth banner showing trainable params (e.g. `7,372,800 of 3,093,311,488 (0.24% trained)` for r=16)\n", "\n", "After the loop, `study.best_value` / `study.best_params` are populated. The cell pretty-prints them and dumps the full study (every trial's params and value) to `OUT_DIR/optuna_study.json` so plots can be rebuilt without rerunning.\n", "\n", "### What the output tells you\n", "\n", "The 6 per-trial summaries from this run, followed by the winner:\n", "\n", "```\n", "Trial 0: r=16 alpha=16 dropout=0.006 lr=4.03e-04 warmup=0.1 -> eval_loss=0.0523\n", "Trial 1: r=16 alpha=16 dropout=0.030 lr=2.33e-04 warmup=0.03 -> eval_loss=0.0790\n", "Trial 2: r=8 alpha=32 dropout=0.020 lr=2.29e-04 warmup=0.03 -> eval_loss=0.0587\n", "Trial 3: r=8 alpha=16 dropout=0.030 lr=1.17e-04 warmup=0.03 -> eval_loss=0.1199\n", "Trial 4: r=16 alpha=16 dropout=0.031 lr=2.31e-04 warmup=0.03 -> eval_loss=0.0793\n", "Trial 5: r=8 alpha=32 dropout=0.009 lr=1.37e-04 warmup=0.1 -> eval_loss=0.0828\n", "\n", "=== OPTUNA RESULTS ===\n", "Best eval_loss : 0.0523\n", "Best trial : #0\n", "Best params :\n", " lora_r 16\n", " lora_alpha_mul 1\n", " lora_dropout 0.0058\n", " learning_rate 4.03e-04\n", " warmup_ratio 0.1\n", "```\n", "\n", "Trial #0 won — TPE got lucky on its first sample, then the next five didn't beat it. That's normal for a small-budget search; the spread between best (0.0523) and worst (0.1199) trials is ~2× in eval loss, which is exactly the kind of separation §10's plots will visualise. Note also that the lowest-LR trial (#3, lr=1.17e-04) had the worst eval loss — strong evidence that learning rate is the dominant knob in this range." ] }, { "cell_type": "code", "execution_count": null, "id": "805b88a0", "metadata": { "colab": { "base_uri": "https://localhost:8080/", "height": 1000, "referenced_widgets": [ "2479fa82f86e44efb0074bf98d677948", "af1c80e5ed764e0dbe94a7901bfa5055", "50a6b112d54b4f4caf81ff51b5d47330", "2258954750884ee483357f4b9c178036", "facd2d2ea3fd48f9a1ac2cc13bef64b8", "aa7bce772af442928a74629464e2fc0e", "8fa83e655f654286a77f0d64c2017e40", "7e1c3b7d0e714ee3a7d92f7bdc68f19a", "f63a0c3bd30741e389921c5a0c0257b6", "5e5e3d76fe88464aa73ead1a1c51ccc5", "407a7acb4e474669bbec60ec70028736", "bc2d4de1df5241e3949f4558b9322321", "e441aedea1414eac9574830ee8425098", "a6c5d26ad5e14dd2b3b701de1bfe2b7f", "806a5a3781074d9d8201d0db61c04765", "bcacc2d5bcb34e0ab2caeb2e5fddeeba", "81abc2746ae8418ba793c0e15783c665", "19a0246152f9400a9bb4362fd5f563fe", "190841be433642759e1a669a3c1a456a", "e28c2ec5beb14108bf9633eb1965d233", "9c688b55b9d244cd9a6ea1294670a1ad", "4398ec401e6340b4b5f09482759a1045", "08036e0504e74efa9853b662f5bac19b", "a02f4be4f7c745aaae9727e9fb8f428c", "21402222e42046feb1eb6f4e64ecae50", "760789c0138e4adaade91c3bb73cea2d", "643e84e16a3d4205bbc332db420f21d6", "288bd1af47c34ce7afe1cf10ae64da1a", "cb97fe53c8364943b3251e935a6b59f9", "7fa93872e8ce480b8f298cbcbb746916", "1b8bdab05d574458ad302ab4d60c86e0", "73b07b37c66a41ada1a6a2aa5272398c", "f93c3a6553d1414ebc5ff9e5b18fb4dd", "572caef8e71c48cea2b9bf826256a1e3", "fc8ba4f1606743dcabc2ee0dd482b704", "0f4287efdcda4149a62718c3e8c14326", "0e17405c7a8e4e6ab41d3964dc5fa5b4", "f803f04e1f0b4c8db5b2a571538790d3", "0e00775c7821414fb82084db4c71aff9", "e18fbe8e72964a569c24722e35b81cb2", "64500442a3d44994a3593d309cd9ab02", "ee43ac368f5a4aa0813035b3d07cc399", "afcb53065479412f8ab30274403dcd9a", "d11291002423435f9ab639af145e999b", "cdb67ffc2d694e33a6612115a5974d11", "ae5960c8a5fb4c7c8a75c7bf9a4e6ebf", "bf5d69a2795144ffb2e2c5a115e1c5b4", "5d434b4b5a88449aaa35026f0f2fe772", "6a2234cf25d847d586c0639407cb0422", "cee47b7f9a1d4f86a51afedae1cc6185", "30ecc6450c0e4891b44c08f4e78db09c", "776f37e27e864e3596640ad6708fe717", "5f897a4a2d2d4134b182ca12ffedfd41", "4696ce54235f4bd3873eeed778a4d75e", "aecf790586e4461ca62b06581201a4db", "59115df98912426b9d679bf80e3f5f6e", "c28d17bc0e2446dc89081a1a638a2484", "79099348a0c643e7bceaf63e6456f1f7", "10132dd4cbde4803bdd38f45dc7e8b7d", "62769eb172cd4d2884c75b8e36c2d28c", "e6c1913352514eef9cbf15cee827606b", "5dc28d883bd046b7a7cc329b869b329e", "eab8c43144bf40f1925820492473e9d3", "ecb17e182dd84febbdcded2879fa80b7", "e2cdbf13de504156ae577dc40cbb48e5", "f7143a33b8ec4638934f319f04daa5fe", "633c5d5645dc4d91953efe8466dd55cd", "16d4f581ec604fcc927343369c73f075", "d0f184b2c8934ac0830dfeb1963b083a", "e4440093f346491da5d4af23c296c324", "2a8681d890d3439a90403ba1b9eec927", "ff0c2a46d55946459f52d2dd09e05674", "75b1eff81944448ab15c7d3f25021c99", "ee900b2750c14293af20f0a47ca57f6c", "249df56441d74bf4ba35ca0463e8d443", "ee0c45ace98b42a3a5c7d39f997d749d", "047421bbdbf042e3927d810afbb0b565", "64a36df9f60c4473afd94b03803c8a1c", "5d7559aac4da485e920ddd19859521bd", "d2d2f9d53852463982a293f44dda3572", "2eb6cd8deed74f1cae2298c20265efd6", "8cb6e3e7b5254bc085775607e1d37f0e", "8ad0641ef6a040a99e42b838fefb13cc", "19f1fea7704742f79b50e096e08f7e30", "cef92c4d93074e1e9f73c527f0e1b021", "0f8fc328cf5a4d56b155a64238f1a3e5", "867ffb288b49498281c615325c9f9320", "a19ce4b328c34e1d9f84a9a70b5917d0" ] }, "id": "805b88a0", "outputId": "650ad285-2c7b-4742-f8ac-06f8e7534f58" }, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "[I 2026-04-22 23:58:32,139] A new study created in memory with name: aws-rl-sft-lora-search\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "==((====))== Unsloth 2026.4.7: Fast Qwen2 patching. Transformers: 4.57.6.\n", " \\\\ /| Tesla T4. Num GPUs = 1. Max memory: 14.563 GB. Platform: Linux.\n", "O^O/ \\_/ \\ Torch: 2.10.0+cu128. CUDA: 7.5. CUDA Toolkit: 12.8. Triton: 3.6.0\n", "\\ / Bfloat16 = FALSE. FA [Xformers = 0.0.35. FA2 = False]\n", " \"-____-\" Free license: http://github.com/unslothai/unsloth\n", "Unsloth: Fast downloading is enabled - ignore downloading bars which are red colored!\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Unsloth: Dropout = 0 is supported for fast patching. You are using dropout = 0.005808361216819946.\n", "Unsloth will patch all other layers, except LoRA matrices, causing a performance hit.\n", "Unsloth 2026.4.7 patched 36 layers with 0 QKV layers, 0 O layers and 0 MLP layers.\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2479fa82f86e44efb0074bf98d677948", "version_major": 2, "version_minor": 0 }, "text/plain": [ "Map: 0%| | 0/500 [00:00" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "Tracking run with wandb version 0.26.0" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "Run data is saved locally in /content/wandb/run-20260422_235902-zu5yyufj" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "Syncing run optuna-trial-0 to Weights & Biases (docs)
" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ " View project at https://wandb.ai/sizzing-sizzing/AWS-RL-SFT" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ " View run at https://wandb.ai/sizzing-sizzing/AWS-RL-SFT/runs/zu5yyufj" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stderr", "output_type": "stream", "text": [ "wandb: Detected [huggingface_hub.inference, openai] in use.\n", "wandb: Use W&B Weave for improved LLM call tracing. Install Weave with `pip install weave` then add `import weave` to the top of your script.\n", "wandb: For more information, check out the docs at: https://weave-docs.wandb.ai\n" ] }, { "data": { "text/html": [ "\n", "
\n", " \n", " \n", " [32/32 03:08, Epoch 1/1]\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
EpochTraining LossValidation Loss
10.1000000.052316

" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "\n", "

\n", " \n", " \n", " [20/20 00:12]\n", "
\n", " " ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "

Run history:


eval/loss█▁
eval/runtime█▁
eval/samples_per_second▁█
eval/steps_per_second▁█
train/epoch▁███
train/global_step▁███
train/grad_norm
train/learning_rate
train/loss

Run summary:


eval/loss0.05231
eval/runtime13.5339
eval/samples_per_second5.911
eval/steps_per_second1.478
total_flos2946293207040000.0
train/epoch1
train/global_step32
train/grad_norm0.1389
train/learning_rate8e-05
train/loss0.1
+4...

" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ " View run optuna-trial-0 at: https://wandb.ai/sizzing-sizzing/AWS-RL-SFT/runs/zu5yyufj
View project at: https://wandb.ai/sizzing-sizzing/AWS-RL-SFT
Synced 5 W&B file(s), 0 media file(s), 0 artifact file(s) and 0 other file(s)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "Find logs at: ./wandb/run-20260422_235902-zu5yyufj/logs" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stderr", "output_type": "stream", "text": [ "[I 2026-04-23 00:02:42,889] Trial 0 finished with value: 0.05230738967657089 and parameters: {'lora_r': 16, 'lora_alpha_mul': 1, 'lora_dropout': 0.005808361216819946, 'learning_rate': 0.00040311702880369243, 'warmup_ratio': 0.1}. Best is trial 0 with value: 0.05230738967657089.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " Trial 0: r=16 alpha=16 dropout=0.006 lr=4.03e-04 warmup=0.1 -> eval_loss=0.0523\n", "==((====))== Unsloth 2026.4.7: Fast Qwen2 patching. Transformers: 4.57.6.\n", " \\\\ /| Tesla T4. Num GPUs = 1. Max memory: 14.563 GB. Platform: Linux.\n", "O^O/ \\_/ \\ Torch: 2.10.0+cu128. CUDA: 7.5. CUDA Toolkit: 12.8. Triton: 3.6.0\n", "\\ / Bfloat16 = FALSE. FA [Xformers = 0.0.35. FA2 = False]\n", " \"-____-\" Free license: http://github.com/unslothai/unsloth\n", "Unsloth: Fast downloading is enabled - ignore downloading bars which are red colored!\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Unsloth: Dropout = 0 is supported for fast patching. You are using dropout = 0.030424224295953775.\n", "Unsloth will patch all other layers, except LoRA matrices, causing a performance hit.\n", "/usr/local/lib/python3.12/dist-packages/unsloth/models/_utils.py:2331: FutureWarning: `tokenizer` is deprecated and will be removed in version 5.0.0 for `UnslothSFTTrainer.__init__`. Use `processing_class` instead.\n", " _original_trainer_init(self, *args, **kwargs)\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "🦥 Unsloth: Padding-free auto-enabled, enabling faster training.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "==((====))== Unsloth - 2x faster free finetuning | Num GPUs used = 1\n", " \\\\ /| Num examples = 500 | Num Epochs = 1 | Total steps = 32\n", "O^O/ \\_/ \\ Batch size per device = 2 | Gradient accumulation steps = 8\n", "\\ / Data Parallel GPUs = 1 | Total batch size (2 x 8 x 1) = 16\n", " \"-____-\" Trainable parameters = 7,372,800 of 3,093,311,488 (0.24% trained)\n" ] }, { "data": { "text/html": [], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "Tracking run with wandb version 0.26.0" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "Run data is saved locally in /content/wandb/run-20260423_000304-pfrd9n61" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "Syncing run optuna-trial-1 to Weights & Biases (docs)
" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ " View project at https://wandb.ai/sizzing-sizzing/AWS-RL-SFT" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ " View run at https://wandb.ai/sizzing-sizzing/AWS-RL-SFT/runs/pfrd9n61" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "\n", "
\n", " \n", " \n", " [32/32 03:03, Epoch 1/1]\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
EpochTraining LossValidation Loss
10.1145000.078962

" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "\n", "

\n", " \n", " \n", " [20/20 00:12]\n", "
\n", " " ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "

Run history:


eval/loss█▁
eval/runtime█▁
eval/samples_per_second▁█
eval/steps_per_second▁█
train/epoch▁███
train/global_step▁███
train/grad_norm
train/learning_rate
train/loss

Run summary:


eval/loss0.07896
eval/runtime13.5401
eval/samples_per_second5.908
eval/steps_per_second1.477
total_flos2946293207040000.0
train/epoch1
train/global_step32
train/grad_norm0.14956
train/learning_rate4e-05
train/loss0.1145
+4...

" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ " View run optuna-trial-1 at: https://wandb.ai/sizzing-sizzing/AWS-RL-SFT/runs/pfrd9n61
View project at: https://wandb.ai/sizzing-sizzing/AWS-RL-SFT
Synced 4 W&B file(s), 0 media file(s), 0 artifact file(s) and 0 other file(s)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "Find logs at: ./wandb/run-20260423_000304-pfrd9n61/logs" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stderr", "output_type": "stream", "text": [ "[I 2026-04-23 00:06:32,284] Trial 1 finished with value: 0.0789594054222107 and parameters: {'lora_r': 16, 'lora_alpha_mul': 1, 'lora_dropout': 0.030424224295953775, 'learning_rate': 0.0002326960468194962, 'warmup_ratio': 0.03}. Best is trial 0 with value: 0.05230738967657089.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " Trial 1: r=16 alpha=16 dropout=0.030 lr=2.33e-04 warmup=0.03 -> eval_loss=0.0790\n", "==((====))== Unsloth 2026.4.7: Fast Qwen2 patching. Transformers: 4.57.6.\n", " \\\\ /| Tesla T4. Num GPUs = 1. Max memory: 14.563 GB. Platform: Linux.\n", "O^O/ \\_/ \\ Torch: 2.10.0+cu128. CUDA: 7.5. CUDA Toolkit: 12.8. Triton: 3.6.0\n", "\\ / Bfloat16 = FALSE. FA [Xformers = 0.0.35. FA2 = False]\n", " \"-____-\" Free license: http://github.com/unslothai/unsloth\n", "Unsloth: Fast downloading is enabled - ignore downloading bars which are red colored!\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Unsloth: Dropout = 0 is supported for fast patching. You are using dropout = 0.019967378215835975.\n", "Unsloth will patch all other layers, except LoRA matrices, causing a performance hit.\n", "/usr/local/lib/python3.12/dist-packages/unsloth/models/_utils.py:2331: FutureWarning: `tokenizer` is deprecated and will be removed in version 5.0.0 for `UnslothSFTTrainer.__init__`. Use `processing_class` instead.\n", " _original_trainer_init(self, *args, **kwargs)\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "🦥 Unsloth: Padding-free auto-enabled, enabling faster training.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "==((====))== Unsloth - 2x faster free finetuning | Num GPUs used = 1\n", " \\\\ /| Num examples = 500 | Num Epochs = 1 | Total steps = 32\n", "O^O/ \\_/ \\ Batch size per device = 2 | Gradient accumulation steps = 8\n", "\\ / Data Parallel GPUs = 1 | Total batch size (2 x 8 x 1) = 16\n", " \"-____-\" Trainable parameters = 3,686,400 of 3,089,625,088 (0.12% trained)\n" ] }, { "data": { "text/html": [], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "Tracking run with wandb version 0.26.0" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "Run data is saved locally in /content/wandb/run-20260423_000654-dh2eeaxk" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "Syncing run optuna-trial-2 to Weights & Biases (docs)
" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ " View project at https://wandb.ai/sizzing-sizzing/AWS-RL-SFT" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ " View run at https://wandb.ai/sizzing-sizzing/AWS-RL-SFT/runs/dh2eeaxk" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "\n", "
\n", " \n", " \n", " [32/32 03:03, Epoch 1/1]\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
EpochTraining LossValidation Loss
10.0966000.058720

" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "\n", "

\n", " \n", " \n", " [20/20 00:12]\n", "
\n", " " ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "

Run history:


eval/loss▁█
eval/runtime█▁
eval/samples_per_second▁█
eval/steps_per_second▁█
train/epoch▁███
train/global_step▁███
train/grad_norm
train/learning_rate
train/loss

Run summary:


eval/loss0.05872
eval/runtime13.3861
eval/samples_per_second5.976
eval/steps_per_second1.494
total_flos2942389309440000.0
train/epoch1
train/global_step32
train/grad_norm0.31422
train/learning_rate4e-05
train/loss0.0966
+4...

" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ " View run optuna-trial-2 at: https://wandb.ai/sizzing-sizzing/AWS-RL-SFT/runs/dh2eeaxk
View project at: https://wandb.ai/sizzing-sizzing/AWS-RL-SFT
Synced 4 W&B file(s), 0 media file(s), 0 artifact file(s) and 0 other file(s)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "Find logs at: ./wandb/run-20260423_000654-dh2eeaxk/logs" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stderr", "output_type": "stream", "text": [ "[I 2026-04-23 00:10:20,691] Trial 2 finished with value: 0.05872423201799393 and parameters: {'lora_r': 8, 'lora_alpha_mul': 4, 'lora_dropout': 0.019967378215835975, 'learning_rate': 0.00022878863522445903, 'warmup_ratio': 0.03}. Best is trial 0 with value: 0.05230738967657089.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " Trial 2: r=8 alpha=32 dropout=0.020 lr=2.29e-04 warmup=0.03 -> eval_loss=0.0587\n", "==((====))== Unsloth 2026.4.7: Fast Qwen2 patching. Transformers: 4.57.6.\n", " \\\\ /| Tesla T4. Num GPUs = 1. Max memory: 14.563 GB. Platform: Linux.\n", "O^O/ \\_/ \\ Torch: 2.10.0+cu128. CUDA: 7.5. CUDA Toolkit: 12.8. Triton: 3.6.0\n", "\\ / Bfloat16 = FALSE. FA [Xformers = 0.0.35. FA2 = False]\n", " \"-____-\" Free license: http://github.com/unslothai/unsloth\n", "Unsloth: Fast downloading is enabled - ignore downloading bars which are red colored!\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Unsloth: Dropout = 0 is supported for fast patching. You are using dropout = 0.03046137691733707.\n", "Unsloth will patch all other layers, except LoRA matrices, causing a performance hit.\n", "/usr/local/lib/python3.12/dist-packages/unsloth/models/_utils.py:2331: FutureWarning: `tokenizer` is deprecated and will be removed in version 5.0.0 for `UnslothSFTTrainer.__init__`. Use `processing_class` instead.\n", " _original_trainer_init(self, *args, **kwargs)\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "🦥 Unsloth: Padding-free auto-enabled, enabling faster training.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "==((====))== Unsloth - 2x faster free finetuning | Num GPUs used = 1\n", " \\\\ /| Num examples = 500 | Num Epochs = 1 | Total steps = 32\n", "O^O/ \\_/ \\ Batch size per device = 2 | Gradient accumulation steps = 8\n", "\\ / Data Parallel GPUs = 1 | Total batch size (2 x 8 x 1) = 16\n", " \"-____-\" Trainable parameters = 3,686,400 of 3,089,625,088 (0.12% trained)\n" ] }, { "data": { "text/html": [], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "Tracking run with wandb version 0.26.0" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "Run data is saved locally in /content/wandb/run-20260423_001042-jep5c7sz" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "Syncing run optuna-trial-3 to Weights & Biases (docs)
" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ " View project at https://wandb.ai/sizzing-sizzing/AWS-RL-SFT" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ " View run at https://wandb.ai/sizzing-sizzing/AWS-RL-SFT/runs/jep5c7sz" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "\n", "
\n", " \n", " \n", " [32/32 03:04, Epoch 1/1]\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
EpochTraining LossValidation Loss
10.1456000.119793

" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "\n", "

\n", " \n", " \n", " [20/20 00:12]\n", "
\n", " " ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "

Run history:


eval/loss▁█
eval/runtime█▁
eval/samples_per_second▁█
eval/steps_per_second▁█
train/epoch▁███
train/global_step▁███
train/grad_norm
train/learning_rate
train/loss

Run summary:


eval/loss0.11986
eval/runtime13.5701
eval/samples_per_second5.895
eval/steps_per_second1.474
total_flos2942389309440000.0
train/epoch1
train/global_step32
train/grad_norm0.253
train/learning_rate2e-05
train/loss0.1456
+4...

" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ " View run optuna-trial-3 at: https://wandb.ai/sizzing-sizzing/AWS-RL-SFT/runs/jep5c7sz
View project at: https://wandb.ai/sizzing-sizzing/AWS-RL-SFT
Synced 4 W&B file(s), 0 media file(s), 0 artifact file(s) and 0 other file(s)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "Find logs at: ./wandb/run-20260423_001042-jep5c7sz/logs" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stderr", "output_type": "stream", "text": [ "[I 2026-04-23 00:14:09,403] Trial 3 finished with value: 0.11985526233911514 and parameters: {'lora_r': 8, 'lora_alpha_mul': 2, 'lora_dropout': 0.03046137691733707, 'learning_rate': 0.00011702263636127808, 'warmup_ratio': 0.03}. Best is trial 0 with value: 0.05230738967657089.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " Trial 3: r=8 alpha=16 dropout=0.030 lr=1.17e-04 warmup=0.03 -> eval_loss=0.1199\n", "==((====))== Unsloth 2026.4.7: Fast Qwen2 patching. Transformers: 4.57.6.\n", " \\\\ /| Tesla T4. Num GPUs = 1. Max memory: 14.563 GB. Platform: Linux.\n", "O^O/ \\_/ \\ Torch: 2.10.0+cu128. CUDA: 7.5. CUDA Toolkit: 12.8. Triton: 3.6.0\n", "\\ / Bfloat16 = FALSE. FA [Xformers = 0.0.35. FA2 = False]\n", " \"-____-\" Free license: http://github.com/unslothai/unsloth\n", "Unsloth: Fast downloading is enabled - ignore downloading bars which are red colored!\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Unsloth: Dropout = 0 is supported for fast patching. You are using dropout = 0.031171107608941095.\n", "Unsloth will patch all other layers, except LoRA matrices, causing a performance hit.\n", "/usr/local/lib/python3.12/dist-packages/unsloth/models/_utils.py:2331: FutureWarning: `tokenizer` is deprecated and will be removed in version 5.0.0 for `UnslothSFTTrainer.__init__`. Use `processing_class` instead.\n", " _original_trainer_init(self, *args, **kwargs)\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "🦥 Unsloth: Padding-free auto-enabled, enabling faster training.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "==((====))== Unsloth - 2x faster free finetuning | Num GPUs used = 1\n", " \\\\ /| Num examples = 500 | Num Epochs = 1 | Total steps = 32\n", "O^O/ \\_/ \\ Batch size per device = 2 | Gradient accumulation steps = 8\n", "\\ / Data Parallel GPUs = 1 | Total batch size (2 x 8 x 1) = 16\n", " \"-____-\" Trainable parameters = 7,372,800 of 3,093,311,488 (0.24% trained)\n" ] }, { "data": { "text/html": [], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "Tracking run with wandb version 0.26.0" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "Run data is saved locally in /content/wandb/run-20260423_001430-wvylgkh8" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "Syncing run optuna-trial-4 to Weights & Biases (docs)
" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ " View project at https://wandb.ai/sizzing-sizzing/AWS-RL-SFT" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ " View run at https://wandb.ai/sizzing-sizzing/AWS-RL-SFT/runs/wvylgkh8" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "\n", "
\n", " \n", " \n", " [32/32 03:03, Epoch 1/1]\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
EpochTraining LossValidation Loss
10.1148000.079328

" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "\n", "

\n", " \n", " \n", " [20/20 00:12]\n", "
\n", " " ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "

Run history:


eval/loss▁█
eval/runtime█▁
eval/samples_per_second▁█
eval/steps_per_second▁█
train/epoch▁███
train/global_step▁███
train/grad_norm
train/learning_rate
train/loss

Run summary:


eval/loss0.07934
eval/runtime13.4903
eval/samples_per_second5.93
eval/steps_per_second1.483
total_flos2946293207040000.0
train/epoch1
train/global_step32
train/grad_norm0.14956
train/learning_rate4e-05
train/loss0.1148
+4...

" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ " View run optuna-trial-4 at: https://wandb.ai/sizzing-sizzing/AWS-RL-SFT/runs/wvylgkh8
View project at: https://wandb.ai/sizzing-sizzing/AWS-RL-SFT
Synced 4 W&B file(s), 0 media file(s), 0 artifact file(s) and 0 other file(s)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "Find logs at: ./wandb/run-20260423_001430-wvylgkh8/logs" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stderr", "output_type": "stream", "text": [ "[I 2026-04-23 00:17:57,673] Trial 4 finished with value: 0.0793430432677269 and parameters: {'lora_r': 16, 'lora_alpha_mul': 1, 'lora_dropout': 0.031171107608941095, 'learning_rate': 0.00023094679892576625, 'warmup_ratio': 0.03}. Best is trial 0 with value: 0.05230738967657089.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " Trial 4: r=16 alpha=16 dropout=0.031 lr=2.31e-04 warmup=0.03 -> eval_loss=0.0793\n", "==((====))== Unsloth 2026.4.7: Fast Qwen2 patching. Transformers: 4.57.6.\n", " \\\\ /| Tesla T4. Num GPUs = 1. Max memory: 14.563 GB. Platform: Linux.\n", "O^O/ \\_/ \\ Torch: 2.10.0+cu128. CUDA: 7.5. CUDA Toolkit: 12.8. Triton: 3.6.0\n", "\\ / Bfloat16 = FALSE. FA [Xformers = 0.0.35. FA2 = False]\n", " \"-____-\" Free license: http://github.com/unslothai/unsloth\n", "Unsloth: Fast downloading is enabled - ignore downloading bars which are red colored!\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Unsloth: Dropout = 0 is supported for fast patching. You are using dropout = 0.00884925020519195.\n", "Unsloth will patch all other layers, except LoRA matrices, causing a performance hit.\n", "/usr/local/lib/python3.12/dist-packages/unsloth/models/_utils.py:2331: FutureWarning: `tokenizer` is deprecated and will be removed in version 5.0.0 for `UnslothSFTTrainer.__init__`. Use `processing_class` instead.\n", " _original_trainer_init(self, *args, **kwargs)\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "🦥 Unsloth: Padding-free auto-enabled, enabling faster training.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "==((====))== Unsloth - 2x faster free finetuning | Num GPUs used = 1\n", " \\\\ /| Num examples = 500 | Num Epochs = 1 | Total steps = 32\n", "O^O/ \\_/ \\ Batch size per device = 2 | Gradient accumulation steps = 8\n", "\\ / Data Parallel GPUs = 1 | Total batch size (2 x 8 x 1) = 16\n", " \"-____-\" Trainable parameters = 3,686,400 of 3,089,625,088 (0.12% trained)\n" ] }, { "data": { "text/html": [], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "Tracking run with wandb version 0.26.0" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "Run data is saved locally in /content/wandb/run-20260423_001819-n06qegrd" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "Syncing run optuna-trial-5 to Weights & Biases (docs)
" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ " View project at https://wandb.ai/sizzing-sizzing/AWS-RL-SFT" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ " View run at https://wandb.ai/sizzing-sizzing/AWS-RL-SFT/runs/n06qegrd" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "\n", "
\n", " \n", " \n", " [32/32 03:15, Epoch 1/1]\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
EpochTraining LossValidation Loss
10.1225000.082837

" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "\n", "

\n", " \n", " \n", " [20/20 00:12]\n", "
\n", " " ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "

Run history:


eval/loss█▁
eval/runtime█▁
eval/samples_per_second▁█
eval/steps_per_second▁█
train/epoch▁███
train/global_step▁███
train/grad_norm
train/learning_rate
train/loss

Run summary:


eval/loss0.08283
eval/runtime13.5748
eval/samples_per_second5.893
eval/steps_per_second1.473
total_flos2942389309440000.0
train/epoch1
train/global_step32
train/grad_norm0.32769
train/learning_rate3e-05
train/loss0.1225
+4...

" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ " View run optuna-trial-5 at: https://wandb.ai/sizzing-sizzing/AWS-RL-SFT/runs/n06qegrd
View project at: https://wandb.ai/sizzing-sizzing/AWS-RL-SFT
Synced 4 W&B file(s), 0 media file(s), 0 artifact file(s) and 0 other file(s)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "Find logs at: ./wandb/run-20260423_001819-n06qegrd/logs" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stderr", "output_type": "stream", "text": [ "[I 2026-04-23 00:21:57,943] Trial 5 finished with value: 0.08283159881830215 and parameters: {'lora_r': 8, 'lora_alpha_mul': 4, 'lora_dropout': 0.00884925020519195, 'learning_rate': 0.0001370838023704289, 'warmup_ratio': 0.1}. Best is trial 0 with value: 0.05230738967657089.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " Trial 5: r=8 alpha=32 dropout=0.009 lr=1.37e-04 warmup=0.1 -> eval_loss=0.0828\n", "\n", "=== OPTUNA RESULTS ===\n", "Best eval_loss : 0.0523\n", "Best trial : #0\n", "Best params :\n", " lora_r 16\n", " lora_alpha_mul 1\n", " lora_dropout 0.005808361216819946\n", " learning_rate 0.00040311702880369243\n", " warmup_ratio 0.1\n" ] } ], "source": [ "study = optuna.create_study(\n", " direction='minimize',\n", " sampler=optuna.samplers.TPESampler(seed=CONFIG['seed']),\n", " study_name='aws-rl-sft-lora-search',\n", ")\n", "study.optimize(objective, n_trials=CONFIG['n_trials'])\n", "\n", "print('\\n=== OPTUNA RESULTS ===')\n", "print(f'Best eval_loss : {study.best_value:.4f}')\n", "print(f'Best trial : #{study.best_trial.number}')\n", "print(f'Best params :')\n", "for k, v in study.best_params.items():\n", " print(f' {k:<20} {v}')\n", "\n", "# Persist the study so we can replot without rerunning\n", "with open(OUT_DIR / 'optuna_study.json', 'w') as f:\n", " json.dump({\n", " 'best_value': study.best_value,\n", " 'best_params': study.best_params,\n", " 'trials': [{'number': t.number, 'value': t.value, 'params': t.params, 'state': str(t.state)}\n", " for t in study.trials],\n", " }, f, indent=2)" ] }, { "cell_type": "markdown", "id": "21d9c33e", "metadata": { "id": "21d9c33e" }, "source": [ "## 10. Optuna plots\n", "\n", "Five views, all rendered with matplotlib and saved as PNGs to `OUT_DIR/plots/`:\n", "\n", "1. **Optimization history** — did later trials converge on lower loss?\n", "2. **Param importances** — which knob mattered most (fANOVA-style)?\n", "3. **Parallel coordinates** — which hparam combinations trend toward low loss?\n", "4. **Slice plot** — per-parameter scatter against the objective.\n", "5. **Per-trial loss curves** — overlay every trial's training/eval loss to see how the search space behaved during fitting.\n", "\n", "### How to read each plot\n", "\n", "- **`optuna_history.png`** — blue dots are individual trial values; the red staircase is the best-so-far. A flat staircase past trial 1 means TPE didn't find anything better than the first random pick (expected with only 6 trials, and what happens in this run since trial #0 won outright).\n", "- **`optuna_importances.png`** — fANOVA-style: how much variance in `eval_loss` each parameter explains. Given the trial table from §9, expect `learning_rate` to dominate; if `lora_dropout` shows up high it means you under-regularised the larger ranks.\n", "- **`optuna_parallel.png`** — every trial is one polyline across all hparam axes (last axis = objective). Polyline colour encodes the objective value (viridis_r — dark = lower / better). Look for clusters of dark lines over the same axis values — that's the winning region.\n", "- **`optuna_slice.png`** — one panel per param: x-axis is the param value, y-axis is `eval_loss`, dot colour encodes trial number. A clear monotonic trend means the search space was pointed in the right direction; a flat scatter means the param was insensitive in this range.\n", "- **`optuna_trial_curves.png`** — every trial's training-loss + eval-loss curves overlaid on the same axes. The trial that lands lowest at the end is your best — but watch for trials that *would have* dropped further with more steps (early-stopped winners). With only 32 steps per trial these curves are short, so use them to confirm trends, not for fine analysis.\n", "\n", "### What the output tells you\n", "\n", "Each helper prints a `saved -> /path/to/png` line as it writes its figure to disk and shows the chart inline. Five PNGs land in `OUT_DIR/plots/` (`optuna_history.png`, `optuna_importances.png`, `optuna_parallel.png`, `optuna_slice.png`, `optuna_trial_curves.png`) — all together they tell the story of *why* the final hparams were chosen." ] }, { "cell_type": "code", "execution_count": null, "id": "90d27d5b", "metadata": { "colab": { "base_uri": "https://localhost:8080/", "height": 1000 }, "id": "90d27d5b", "outputId": "96cdda6f-79f0-44fc-dd02-70368ed5bff9" }, "outputs": [], "source": [ "# All Optuna views as matplotlib PNGs in OUT_DIR/plots/.\n", "# Each helper renders inline AND saves to disk; see PLOTS_DIR for the files.\n", "plot_optuna_history(study)\n", "plot_optuna_param_importances(study)\n", "plot_optuna_parallel_coordinates(study)\n", "plot_optuna_slice(study)\n", "plot_optuna_trial_loss_curves(study)" ] }, { "cell_type": "markdown", "id": "7323c278", "metadata": { "id": "7323c278" }, "source": [ "## 11. Final SFT run — best hparams, full data, checkpointed\n", "\n", "- Full dataset (1500 train / 150 val)\n", "- 2 epochs (vs. 1 during search)\n", "- Checkpoints saved every 50 steps; last 3 kept (`save_total_limit=3`)\n", "- `load_best_model_at_end=True` — final model = lowest eval_loss checkpoint, not last\n", "- **Resume-safe**: if the session dies, rerunning this cell picks up from the latest `checkpoint-*/`\n", "\n", "### What this cell does\n", "\n", "The structure mirrors `objective()` but with three meaningful differences: full data, more epochs, and checkpointing.\n", "\n", "1. **Re-apply the Transformers 5.x shim** (idempotent — same flag-guard as §8).\n", "2. **Reload base + apply LoRA** with the best hparams from `study.best_params`. `final_alpha = final_r × best['lora_alpha_mul']`.\n", "3. **Render and pre-tokenise the full dataset** (1500 train / 150 val) — same chat-template + drop-metadata + tokenize trick as the trial loop, just on more data.\n", "4. **Auto-detect resume checkpoint** — globs `OUT_DIR/final_sft/checkpoint-*` and picks the highest step number. If found, prints `Resuming from checkpoint: …` and `trainer.train(resume_from_checkpoint=…)` continues from there. If the session dies mid-training (T4 timeouts on free Colab/Kaggle), just rerun this cell — no edits needed.\n", "5. **Build the final `SFTTrainer`** with `load_best_model_at_end=True` + `metric_for_best_model='eval_loss'` + `greater_is_better=False`. After training finishes, the trainer reloads the checkpoint with the lowest validation loss — so your final weights are *not* necessarily the last step's weights. This is your built-in protection against late-training overfit.\n", "6. **`train_on_responses_only`** — same completion-only loss masking. Critical for fair comparison with the Optuna trials (apples-to-apples loss values).\n", "7. **Evaluate once at the end** and print both the average training loss and the final eval loss.\n", "\n", "### What the output tells you\n", "\n", "Total steps ≈ 1500 rows × 2 epochs ÷ effective-batch 16 ≈ 187 steps. Along the way you'll see Unsloth's banner reporting `Trainable parameters = 7,372,800 of 3,093,311,488 (0.24% trained)` (assuming the winning `r=16`), then a stream of progress bars from the trainer logging every 10 steps and evaluating every 50.\n", "\n", "The final two lines summarise:\n", "\n", "```\n", "Final train loss: ~0.04\n", "Final eval loss: ~0.05\n", "```\n", "\n", "A healthy run has training loss dropping smoothly with no spikes, eval loss tracking close to training (small overfit gap), and the LR cosine-annealing to ~0 by the end. If `eval_loss` is rising in the last few evals while `loss` is still falling, that's overfitting — `load_best_model_at_end` will rescue you by reloading an earlier checkpoint." ] }, { "cell_type": "code", "execution_count": null, "id": "cbeb9145", "metadata": { "colab": { "base_uri": "https://localhost:8080/", "height": 874, "referenced_widgets": [ "8ba25aaf330e4cecb4940f51ce4c2d91", "a11421346cb544c3ae79e49143b3ff98", "59cb2a9a1e0f474fb0759dce2e9254b4", "6fa8f54bd32c4c05b39643df321bf826", "45efca052b0948659037c654d3fa4cfc", "b7d9cf67d7ee44ffb77a45fd4e6fe32f", "01e6e5c1ca6b46e38b90c3437b2a338a", "f02d91e96fe84c0781b1c6e17fd537ae", "5aa8c08833564830a597642fdee68611", "6acc17dc21b84d0e9d91605f8e76e1ce", "8ce3dac1705c4d608474c0b2b29ef16c", "2149d1d6bb244d4db8d53d5c16649563", "0e757f51fc684a33b871c6654f1bc520", "e86a2ac8f7d543b1ae3ecbc2f4e560f7", "1c4fd41612f4466b853c66cfc8b77427", "aa058deba06246f1b0003d7b073c8b1c", "5438f243332143e38cea9fe6ac6acf40", "f74e56c5f86046d8812584b3f4b460ce", "f16acd23373845d3894da4abf9500e0f", "d2babfe551ed49f9809a535092e078e4", "601e2da7c2f3466c907c6dc975904974", "bc086dd51c684413bcb3e40183290786", "24df48e26dde45c78e01649c8b9b68b4", "315ae3dd2bd441b0be55ab63d71cf2f3", "2e2b3a77fa2444528c88527ce662ebcc", "9531b4bcfab345b7b0235c422e7f8c18", "2d740eedcf154502ab8ea9651603d816", "a108eb483f0e4ed0ae36e77e2b269ce6", "6069750771574e9c9d641c4e97d0f1a4", "d5a7f54aab804d7c998694863e366900", "5ae30524dc344783a7b546ac4c403239", "b957a5477fc54821a8112428690ca3f8", "7d3a823c2d45490e9e9505d3e399aeff", "7f3c543649714b99a9565399839ba5e1", "6cdce07c0aae4c80b63ba7c312c15999", "45f43e003da84552b733938e93e76575", "3ca5a40ba10f4ad09b23ee0339607696", "64770e809d234b958d990ad9db262f86", "839bcd34b3d1455c9b168f3c0eb7ee48", "f46385b2c5dd46ebae4f130e22bc2b51", "6cfd94dbb7a84ddf9cada7c2760a2264", "5b6113c58c8b49459b9fe02794b461d4", "4b3da87ff3884fbabe0e6e05af82679a", "2e8fd49cd671471c8e59c8f2b0ecde5b", "95d4d9080e17430687b4a52e7b704ac1", "514d072373ed49d6900888c63d959d39", "cff8893cc6d2490cbb1c903f22d85772", "8874182d6efb466f9551c71306e87be2", "00d34d841ca74436aae9d727781deb95", "4c5ad75f54da4638a49f5d7b91a80675", "3bedf84e5b124ca882242272cabede5c", "90cfd352cfce435a9fb4c2ca4506ef81", "91e66dab350841299c8785795c380366", "8afebc1ba6cc47868b3caa994d271e2a", "8e8c8c3211484f63a499bbe3d5f0b63d", "875f7ae9afab4421bdeacdec71be326a", "42c06ae8171840c8b1c73b5b489d25a7", "7456f76578b944ec98a79f0b0dc6de65", "45a4dce069c5478ab52ce3a35b21123c", "3fec3c13e9224c35aef5fce6f6108e34", "397f468d7aff48618720f3e06b9284ed", "7a6c64ca6c284301b4308fe3f2fe9bcb", "46e1e61959b94777953aa2dd43997a4e", "35ed6c346ecf445f8b9307546af0b17b", "6945c712815142f4b78b3ab735646f6e", "a6343a6d1db84aa180e2cd42376dad35", "00b580c294954b7789e5ec131b554bb0", "55f2f5c7da47473497cccd4591f6f1b2", "cd36d12e348f438e81d1def580ddc3bb", "c7e6eb783c8f465dba5ffe4912db0735", "0b5b82b219a8493badb13a0de16120d8", "b2f24deee752408c9c11652cf60a84d3", "db50c8f9fcd64b1391c751ee7697e23d", "1c7903362174485aa575d018201c4352", "c14897b6216b47038f9b1b5bdb941467", "79520fc6e14b4fb7a20f4eca948dede0", "290efeeadcc0488994d0bf7d32f4e57b", "ba4a487089554097a60c839774eb6312", "99c64e4279264453b7bf06e578ba7025", "0db1cdbbb47a4d0aa8654678cda5e5c8", "47487ef40fba4b01a29038c332fdbe6e", "297df3af99124fe98b6699137b5f3cd8", "51fab6cbb2574f828d0ae4b8431eeda0", "73f33acaacc846e5b22e00e94dff8743", "3848ca58a1b24b0489c0ed2ac572d9a2", "497d07100389476fb3e68a6fe20e04dd", "b8789c36105a4c6d91aa8f2f8aa2182d", "4600b1a835694f13b580c2306d0c267b" ] }, "id": "cbeb9145", "outputId": "0f4b26e4-8a29-4de8-a86e-44de8c7831f4" }, "outputs": [], "source": [ "# Ensure the Transformers 5.x shim is in place (idempotent).\n", "try:\n", " import transformers as _tf\n", " import unsloth.models._utils as _u\n", " if int(_tf.__version__.split('.')[0]) >= 5 and not getattr(_u, '_unsloth_tokenizer_shim', False):\n", " _orig_init = _u._original_trainer_init\n", " def _shimmed_init(self, *args, **kwargs):\n", " if 'tokenizer' in kwargs:\n", " kwargs['processing_class'] = kwargs.pop('tokenizer')\n", " return _orig_init(self, *args, **kwargs)\n", " _u._original_trainer_init = _shimmed_init\n", " _u._unsloth_tokenizer_shim = True\n", "except Exception:\n", " pass\n", "\n", "gc.collect(); torch.cuda.empty_cache()\n", "\n", "best = study.best_params\n", "final_r = best['lora_r']\n", "final_alpha = final_r * best['lora_alpha_mul']\n", "\n", "# --- Fresh model with winning hparams ---\n", "model, tokenizer = FastLanguageModel.from_pretrained(\n", " model_name=CONFIG['base_model'],\n", " max_seq_length=CONFIG['max_seq_length'],\n", " load_in_4bit=CONFIG['load_in_4bit'],\n", ")\n", "model = FastLanguageModel.get_peft_model(\n", " model,\n", " r=final_r,\n", " lora_alpha=final_alpha,\n", " lora_dropout=best['lora_dropout'],\n", " target_modules=CONFIG['lora_target_modules'],\n", " bias='none',\n", " use_gradient_checkpointing='unsloth',\n", " random_state=CONFIG['seed'],\n", ")\n", "\n", "# --- Render the full dataset with the chat template ---\n", "full_train = ds['train'].map(lambda ex: _render_messages(ex, tokenizer))\n", "full_val = ds['validation'].map(lambda ex: _render_messages(ex, tokenizer))\n", "# Drop metadata then pre-tokenize — leaves only numeric columns for the collator.\n", "full_train = full_train.remove_columns([c for c in full_train.column_names if c != 'text'])\n", "full_val = full_val.remove_columns([c for c in full_val.column_names if c != 'text'])\n", "def _tokenize_batch(batch):\n", " return tokenizer(\n", " batch['text'], truncation=True,\n", " max_length=CONFIG['max_seq_length'], padding=False,\n", " )\n", "full_train = full_train.map(_tokenize_batch, batched=True, remove_columns=['text'])\n", "full_val = full_val.map(_tokenize_batch, batched=True, remove_columns=['text'])\n", "\n", "# --- Auto-detect existing checkpoint to resume ---\n", "ckpt_root = OUT_DIR / 'final_sft'\n", "resume_ckpt = None\n", "if ckpt_root.exists():\n", " existing = sorted(\n", " [d for d in ckpt_root.glob('checkpoint-*') if d.is_dir()],\n", " key=lambda d: int(d.name.split('-')[-1]),\n", " )\n", " if existing:\n", " resume_ckpt = str(existing[-1])\n", " print(f'Resuming from checkpoint: {resume_ckpt}')\n", " else:\n", " print('No checkpoint found — starting fresh')\n", "else:\n", " print('No prior training dir — starting fresh')\n", "\n", "final_trainer = SFTTrainer(\n", " model=model,\n", " tokenizer=tokenizer,\n", " train_dataset=full_train,\n", " eval_dataset=full_val,\n", " args=SFTConfig(\n", " output_dir=str(ckpt_root),\n", " dataset_text_field='text',\n", " dataset_kwargs={'skip_prepare_dataset': True},\n", " max_seq_length=CONFIG['max_seq_length'],\n", " per_device_train_batch_size=CONFIG['per_device_train_batch_size'],\n", " gradient_accumulation_steps=CONFIG['gradient_accumulation_steps'],\n", " num_train_epochs=CONFIG['num_train_epochs'],\n", " learning_rate=best['learning_rate'],\n", " warmup_ratio=best['warmup_ratio'],\n", " lr_scheduler_type=CONFIG['lr_scheduler_type'],\n", " optim=CONFIG['optim'],\n", " weight_decay=CONFIG['weight_decay'],\n", " max_grad_norm=CONFIG['max_grad_norm'],\n", " fp16=USE_FP16, bf16=USE_BF16,\n", " eval_strategy='steps',\n", " eval_steps=CONFIG['eval_steps'],\n", " save_strategy='steps',\n", " save_steps=CONFIG['save_steps'],\n", " save_total_limit=CONFIG['save_total_limit'],\n", " logging_steps=CONFIG['logging_steps'],\n", " load_best_model_at_end=True,\n", " metric_for_best_model='eval_loss',\n", " greater_is_better=False,\n", " report_to='none',\n", " run_name='final-sft',\n", " seed=CONFIG['seed'],\n", " dataset_num_proc=1,\n", " ),\n", ")\n", "# Completion-only loss — same masking as Optuna trials\n", "final_trainer = train_on_responses_only(\n", " final_trainer,\n", " instruction_part='<|im_start|>user\\n',\n", " response_part='<|im_start|>assistant\\n',\n", ")\n", "\n", "train_result = final_trainer.train(resume_from_checkpoint=resume_ckpt)\n", "print(f'\\nFinal train loss: {train_result.training_loss:.4f}')\n", "final_eval = final_trainer.evaluate()\n", "print(f'Final eval loss: {final_eval[\"eval_loss\"]:.4f}')" ] }, { "cell_type": "markdown", "id": "707ab49e", "metadata": {}, "source": [ "## 11a. Final SFT — training curves\n", "\n", "The trainer's `log_history` carries every logged step (loss, eval_loss, learning_rate, grad_norm). Render it as a 2×2 grid and save to `OUT_DIR/plots/final_training_curves.png`.\n", "\n", "`final_trainer.state.log_history` is a list of dicts — one per logging event. Three event types live there:\n", "\n", "- **training rows**: `{'step': N, 'loss': …, 'learning_rate': …, 'grad_norm': …}` (every `logging_steps=10`)\n", "- **eval rows**: `{'step': N, 'eval_loss': …}` (every `eval_steps=50`)\n", "- a final summary row with neither `loss` nor `eval_loss` (silently dropped by `_split_log_history`)\n", "\n", "`plot_training_curves` produces a 2×2 figure:\n", "\n", "| Panel | What it shows | What \"good\" looks like |\n", "|---|---|---|\n", "| **Top-left** — training loss | Cross-entropy per step on the masked assistant tokens | Monotonically decreasing curve, no spikes; some noise from gradient accumulation is normal |\n", "| **Top-right** — eval loss | Cross-entropy on the held-out val set every 50 steps | Tracks training loss; final value close to (or below) the best Optuna trial's eval loss (~0.05 for this run) |\n", "| **Bottom-left** — learning rate | The cosine schedule with warmup | Linear ramp up for the first ~3-10% of steps (per the chosen `warmup_ratio`), then a smooth cosine decay to ~0 by the last step |\n", "| **Bottom-right** — gradient norm | ‖grad‖₂ pre-clip | Settles into a stable range (often 0.5–2.0); spikes followed by NaN losses mean lower the LR |\n", "\n", "### What the output tells you\n", "\n", "The cell renders the figure inline and writes `OUT_DIR/plots/final_training_curves.png` with a `saved -> …` confirmation line. Together with `OUT_DIR/plots/eval_metrics_comparison.png` from §12, this is the figure most likely to make it into the write-up — it's the proof the run was healthy." ] }, { "cell_type": "code", "execution_count": null, "id": "fa46b4b1", "metadata": {}, "outputs": [], "source": [ "# Final SFT — training curves\n", "# (train + eval loss, learning-rate schedule, gradient-norm) extracted from\n", "# trainer.state.log_history. Saved to OUT_DIR/plots/final_training_curves.png.\n", "plot_training_curves(\n", " list(final_trainer.state.log_history),\n", " title='Final SFT — training curves (full dataset, best Optuna params)',\n", " save_name='final_training_curves',\n", ")" ] }, { "cell_type": "markdown", "id": "kRib4wOVkQdh", "metadata": { "id": "kRib4wOVkQdh" }, "source": [ "## 12. Post-SFT eval — the delta that matters\n", "\n", "Same prompts as the baseline. This is the headline table for judges.\n", "\n", "The cell switches the model into Unsloth's fast-inference mode (`for_inference`) and runs `eval_model` on the *same 18-prompt `EVAL_SET`* used for the baseline — identical prompts, identical scoring, only the weights have changed. Then it prints a side-by-side table, dumps the numbers to JSON, and renders the comparison plot.\n", "\n", "### What the output tells you\n", "\n", "A formatted Before / After / Delta table for every metric. The shape of the change (with the baseline numbers from §7 as anchors):\n", "\n", "| Metric | Before | Direction expected after SFT | Why |\n", "|---|--:|---|---|\n", "| `format_pct` | 33.3% | jumps to near 100% | Largest absolute delta — the base model knew the shape but buried it in prose; SFT teaches it to lead with `aws `. |\n", "| `format_after_extract_pct` | 100.0% | stays at 100% | No headroom; an identity result is the right outcome. |\n", "| `exact_pct` | 38.9% | ~doubles | The headline number — same flags, same order, same values. §13's qualitative samples (5 of 6 exact matches in the first slice) imply this lands in the 80%+ range. |\n", "| `service_pct` | 77.8% | rises further | Already partly correct in the baseline; ceiling is the eval-set's task variety. |\n", "| `operation_pct` | 61.1% | rises substantially | Falls between `service` and `exact` in the funnel. |\n", "| `avg_len` | 85.83 | shrinks | Shorter outputs because the model stops emitting prose around the command. |\n", "\n", "### Other artefacts\n", "\n", "The cell also dumps `OUT_DIR/delta_summary.json` — a `{baseline, posttrain, delta}` dict for the write-up — and `plot_eval_comparison` saves `OUT_DIR/plots/eval_metrics_comparison.png`. That figure has two panels: grouped bars on the left (blue baseline, orange post-SFT) with percentage labels above each bar, and a delta-pp bar chart on the right (green = improvement, red = regression). The delta-pp panel is the single most decision-relevant figure in the notebook." ] }, { "cell_type": "code", "execution_count": null, "id": "uOmvY2y_kQdh", "metadata": { "colab": { "base_uri": "https://localhost:8080/" }, "id": "uOmvY2y_kQdh", "outputId": "e33f9f51-2439-43c9-b9a9-708abb482bfa" }, "outputs": [], "source": [ "FastLanguageModel.for_inference(model)\n", "\n", "print('Running post-SFT eval on the same EVAL_SET...')\n", "posttrain_metrics = eval_model(model, tokenizer, EVAL_SET)\n", "\n", "print('\\n=== BEFORE vs AFTER ===')\n", "print(f'{\"Metric\":<30} {\"Before\":>10} {\"After\":>10} {\"Delta\":>12}')\n", "print('-' * 64)\n", "metric_keys = ['format_pct', 'format_after_extract_pct', 'exact_pct',\n", " 'service_pct', 'operation_pct', 'avg_latency', 'avg_len']\n", "for k in metric_keys:\n", " b = baseline_metrics[k]\n", " a = posttrain_metrics[k]\n", " if 'pct' in k:\n", " print(f'{k:<30} {100*b:9.1f}% {100*a:9.1f}% {100*(a-b):+11.1f}pt')\n", " else:\n", " print(f'{k:<30} {b:10.2f} {a:10.2f} {a-b:+12.2f}')\n", "\n", "# Persist for the write-up\n", "with open(OUT_DIR / 'delta_summary.json', 'w') as f:\n", " json.dump({\n", " 'baseline': {k: baseline_metrics[k] for k in metric_keys},\n", " 'posttrain': {k: posttrain_metrics[k] for k in metric_keys},\n", " 'delta': {k: posttrain_metrics[k] - baseline_metrics[k] for k in metric_keys},\n", " }, f, indent=2)\n", "\n", "# Render baseline-vs-SFT grouped bars + Δpp delta bars; saved to\n", "# OUT_DIR/plots/eval_metrics_comparison.png. The JSON dump above keeps the\n", "# raw numbers for any downstream comparison.\n", "plot_eval_comparison(baseline_metrics, posttrain_metrics)" ] }, { "cell_type": "markdown", "id": "Wp7ycEItkQdh", "metadata": { "id": "Wp7ycEItkQdh" }, "source": [ "## 13. Inspect a few post-SFT generations\n", "\n", "Qualitative sanity: does the trained model actually produce valid AWS commands?\n", "\n", "The aggregate metrics in §12 can hide failure modes (e.g., the model collapsing to one command). This cell prints six side-by-side comparisons of expected vs generated, prefixed with one of three markers:\n", "\n", "- **`[OK]`** — `exact` match (`r['exact'] == True`)\n", "- **`[~ ]`** — formatted correctly but the command differs (`format_after_extract` only)\n", "- **`[X ]`** — couldn't even extract an `aws …` line\n", "\n", "### What the output tells you\n", "\n", "```\n", "Post-SFT generations vs canonical:\n", "\n", " [OK] expected : 'aws route53 list-hosted-zones'\n", " generated: 'aws route53 list-hosted-zones'\n", "\n", " [OK] expected : 'aws dynamodb put-item --table-name orders --item ...'\n", " generated: 'aws dynamodb put-item --table-name orders --item ...'\n", "\n", " [~ ] expected : 'aws help --task-hint'\n", " generated: 'aws lambda create-function --function-name scheduled-task ...'\n", "\n", " [OK] expected : 'aws sns create-topic --name notifications'\n", " generated: 'aws sns create-topic --name notifications'\n", "\n", " [OK] expected : 'aws apigatewayv2 create-api --name payments-api --protocol-type HTTP'\n", " generated: 'aws apigatewayv2 create-api --name payments-api --protocol-type HTTP'\n", "\n", " [OK] expected : 'aws s3api create-bucket --bucket firehose-delivery'\n", " generated: 'aws s3api create-bucket --bucket firehose-delivery'\n", "```\n", "\n", "5 / 6 exact matches in the first slice. The single `[~ ]` is interesting: the canonical answer is the meta-command `aws help --task-hint`, which is a dataset-specific control token, not a real AWS API call. The model produces a real command instead — a *reasonable* error that the next phase (GRPO with environment reward) can correct, since the live environment will signal whether the chosen command actually advanced the task.\n", "\n", "Use this section to spot patterns: are failures concentrated in one service? Are flag values being hallucinated? Are JSON args malformed? Each pattern points at a different fix (more data, better masking, a specific reward in GRPO)." ] }, { "cell_type": "code", "execution_count": null, "id": "OovPADlKkQdh", "metadata": { "colab": { "base_uri": "https://localhost:8080/" }, "id": "OovPADlKkQdh", "outputId": "d50dd10c-4135-49f6-fe79-a8a7ef7bb807" }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Post-SFT generations vs canonical:\n", "\n", " [OK] expected : 'aws route53 list-hosted-zones'\n", " generated: 'aws route53 list-hosted-zones'\n", "\n", " [OK] expected : 'aws dynamodb put-item --table-name orders --item \\'{\"order_id\":{\"S\":\"001\"},\"status\":{\"S\":\"pending\"}}\\''\n", " generated: 'aws dynamodb put-item --table-name orders --item \\'{\"order_id\":{\"S\":\"001\"},\"status\":{\"S\":\"pending\"}}\\''\n", "\n", " [~ ] expected : 'aws help --task-hint'\n", " generated: 'aws lambda create-function --function-name scheduled-task --runtime python3.12 --handler index.handl'\n", "\n", " [OK] expected : 'aws sns create-topic --name notifications'\n", " generated: 'aws sns create-topic --name notifications'\n", "\n", " [OK] expected : 'aws apigatewayv2 create-api --name payments-api --protocol-type HTTP'\n", " generated: 'aws apigatewayv2 create-api --name payments-api --protocol-type HTTP'\n", "\n", " [OK] expected : 'aws s3api create-bucket --bucket firehose-delivery'\n", " generated: 'aws s3api create-bucket --bucket firehose-delivery'\n" ] } ], "source": [ "print('Post-SFT generations vs canonical:')\n", "for r in posttrain_metrics['_per_row'][:6]:\n", " match = 'OK' if r['exact'] else ('~ ' if r['format_after_extract'] else 'X ')\n", " print(f'\\n [{match}] expected : {r[\"expected\"][:100]!r}')\n", " print(f' generated: {r[\"completion\"].strip()[:100]!r}')" ] }, { "cell_type": "markdown", "id": "7vLaN97EkQdh", "metadata": { "id": "7vLaN97EkQdh" }, "source": [ "## 14. Push LoRA adapter to Hugging Face Hub\n", "\n", "Just the adapter — ~60MB instead of the full 3B (~6GB). Consumers will apply it on top of `Qwen/Qwen2.5-Coder-3B-Instruct` at inference time.\n", "\n", "`model.save_pretrained` writes the LoRA weights and the PEFT config (`adapter_config.json`, `adapter_model.safetensors`) to disk; `tokenizer.save_pretrained` writes the tokenizer files (`tokenizer.json`, `vocab.json`, `merges.txt`, `special_tokens_map.json`, …). PEFT only persists the adapter matrices (~15 MB at `r=16`); the tokenizer adds ~12 MB. The Hub-side upload deduplicates against existing files, so re-pushes only send what changed.\n", "\n", "`push_to_hub(..., private=True)` creates the repo if it doesn't exist and uploads. Private by default so you can iterate before sharing.\n", "\n", "### What the output tells you\n", "\n", "```\n", "Adapter saved locally: /content/out/adapter\n", "...adapter_model.safetensors: 100%|##########| 14.8MB / 14.8MB\n", "Saved model to https://huggingface.co/Sizzing/aws-rl-sft-qwen25coder3b-adapter\n", "...tokenizer.json: 100%|##########| 11.4MB / 11.4MB\n", "OK: adapter pushed to https://huggingface.co/Sizzing/aws-rl-sft-qwen25coder3b-adapter\n", "```\n", "\n", "The first upload pushes the 14.8 MB safetensors blob (the actual LoRA matrices). The second pushes the 11.4 MB `tokenizer.json` plus the smaller config/vocab files. Total payload ~30 MB — orders of magnitude lighter than shipping a fine-tuned 3B model. The two `Saved model to …` / `OK: …` lines confirm both uploads succeeded; the URL goes straight to the adapter's Hub page." ] }, { "cell_type": "code", "execution_count": null, "id": "HzjnMLBMkQdh", "metadata": { "colab": { "base_uri": "https://localhost:8080/", "height": 315, "referenced_widgets": [ "b15fcea90a104c5a8fa21646638b0a12", "bc6c6aee6b6d4cd3afe76dd00245f8db", "49c2f2ae112f4133a434b6274ca9ffd0", "871a4878c903463289a2283b5f649d00", "8ea83d7a46d84e37a28890d5c61109cf", "dd6994f094df444c9c62f84fd2da82af", "2d642e51abf547849f6584d35b5d7a70", "c0bc942b2dec498480f6e19344c4d203", "30ca70060ebd492390750750e5c677bf", "3e9b15dda7bf48c3aae394f0d68e2b10", "9dcb1c84d9384ab3b0d9ad681646e4e9", "003ae8232ede408d8f51453bdc63f96e", "5c796d225e474ae2940c9106b9d64938", "9a45bc9a77c94a66b1ff7256e8231088", "e91e918d37a14b28beb9e16f012458f5", "9b33c99b889543a19eef2316ac5ab0fe", "2978d0d591544b74a9b1fc816e430e43", "f50bbeaadfe1453fb7880dc8d725fefb", "648646594ca74b69a29ace1fed5db1be", "c313a139e75c4953ab62b75752bcc5d7", "689257af48194add88f3462e44a9c9a7", "b3f3175c19c74344a406aff51a048139", "0ffa028e2b1e4bcdaa441a9be76de87e", "607cf6ca93ed4f6ab23765508b5f95c1", "4cf904670be54de0803dc23c6e3059d3", "33c60940f8ec4a098021b70f1a76e6b5", "5247e1b5ee1042a593e68f679f30a670", "b3ce39f1bb0741ffbda5960559007735", "d82962ea0d704b99a06987a6d58bc36c", "3db4042595a1463a93d26ef4e8fd5185", "2f180de8e1ef4040ab355cfcdd6445da", "afef069fc3054b6bac72e05c06a9b699", "0cdd8c9bfcce4be8b452a4e03b56cf8f", "a3cb87314cd145cb892e64a5936d5288", "7ed12fe7019d4facb1c8b98238805561", "110e9a99f25f4b9f9139b495a557975b", "25cdfd281d264f49841120ad73571197", "b10bb711d77540678c446c980abbefb0", "d9bd7bf387b44ed7bd859d415bc2986f", "d3e67e65c9b44eadac8364257b7b6a4d", "fdd57fafdc3747baa062dfce006addbf", "240577f1ac5b475ca29ace7e5a697890", "49b872b4786d48d5b906f03d5ffea4cf", "4f7540961425431f895ad9f368867e76", "2e7a725fb0da46768d271d76019af7ff", "2f835b1be1fd4a1fa215c38ccb24fade", "6b7d3842124e451ea5bccfd3d00aaf41", "dbbc84a88ec54339aa0b17acaa527221", "ffbda3ae381149c58b0f4f4ca3aba694", "de8e98bcce6a4a32bb344467f5301c16", "129d882ae4a340fcab1cafde0f5fafaf", "19ce6b36b49e45e39ec255c52fba389d", "4be4e4869d5e441486cb640177763603", "362ca4826fc24755b7898c54334b5f7b", "23ccb3a4752b4bc28c3f312f9537d6a4", "a5f80d1357054b3794403ff0ea183bb1", "ed09000d8a464e21bb0d345c9042ad60", "ac1d67b8c8a24e619ac85998b6fbd44e", "5ccff814bf444f0bb1622c1639072fd3", "ac7464fbe2bd4241bcb283b8f8c2f38c", "823885191d4c472e9f961c11a3c6ffc5", "6eab9db0d1aa4b84b90fc3872e083dc6", "811977f4dc4a45ebaec21ecb2882a6f5", "5f97644a4dbb4de9b2401617cd0d405e", "bb36946281b04834aad5e987f54ef2c5", "d67efe136abc47dcbd9f2f7aea2870b4", "a6c8c00476ed49c7ac1d17165dbb19e0", "b09db1f09d6e4f98b13a1496df56f634", "00af5c6f40494636a6f3229e0a7cfe7c", "0e7ae2b6132647bc9017f6ac2cc342f9", "3a1db87d4cef4e41839e92e7080813c0", "c5c6d5fe77ae4a118d531152e752a552", "a737b9169ce442b7a607273640ac1562", "59c1b9d1ff41425986d2a8740cec7720", "e8069fbac7d04e4093e3f08fdd84b9ff", "81465b29ad7c4f9e98021f23bf6654c0", "e0943fee62a64d16803e1ce7a015c06b" ] }, "id": "HzjnMLBMkQdh", "outputId": "eae869a8-3758-4f63-d204-76e691821fe1" }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Adapter saved locally: /content/out/adapter\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b15fcea90a104c5a8fa21646638b0a12", "version_major": 2, "version_minor": 0 }, "text/plain": [ "README.md: 0%| | 0.00/573 [00:00` reasoning (R1-Zero style)\n", "\n", "The adapter we just trained serves as both the starting policy and the KL anchor — SFT locks format and basic competence, GRPO refines task correctness with real reward signal.\n", "\n", "### Why SFT first, then GRPO?\n", "\n", "GRPO is a policy-gradient method — it needs a starting policy that can already produce well-formatted, plausibly-correct outputs, otherwise the reward signal is too sparse to learn from. The 33% → ~95%+ format jump and the 39% → ~80%+ exact-match jump that this SFT run buys mean GRPO can spend its compute exploring *which command* is best for a task, not learning that commands should start with `aws `." ] }, { "cell_type": "code", "execution_count": null, "id": "RsaNFJOpz3qj", "metadata": { "colab": { "base_uri": "https://localhost:8080/", "height": 106 }, "id": "RsaNFJOpz3qj", "outputId": "1b6ff873-a8a0-4844-93be-4f45c7ff2984" }, "outputs": [], "source": [ "import shutil\n", "from pathlib import Path\n", "\n", "STAGE = Path('/content/aws_rl_sft_export')\n", "STAGE.mkdir(exist_ok=True)\n", "\n", "# Copy the output folder wholesale. `out/plots/` is included automatically.\n", "for folder in ['out']:\n", " src = Path('/content') / folder\n", " if src.exists():\n", " dest = STAGE / folder\n", " if dest.exists():\n", " shutil.rmtree(dest)\n", " shutil.copytree(src, dest)\n", " size_mb = sum(p.stat().st_size for p in dest.rglob('*') if p.is_file()) / 1e6\n", " print(f' {folder}/ {size_mb:.1f} MB')\n", " else:\n", " print(f' {folder}/ MISSING')\n", "\n", "# Zip it\n", "zip_path = shutil.make_archive('/content/aws_rl_sft_artifacts', 'zip', STAGE)\n", "size_mb = Path(zip_path).stat().st_size / 1e6\n", "print(f'\\nArchive: {zip_path} ({size_mb:.1f} MB)')\n", "\n", "# Download\n", "from google.colab import files\n", "files.download(zip_path)" ] }, { "cell_type": "code", "execution_count": null, "id": "Wkhwg6Wqz547", "metadata": { "id": "Wkhwg6Wqz547" }, "outputs": [], "source": [] } ], "metadata": { "accelerator": "GPU", "colab": { "gpuType": "T4", "provenance": [] }, "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.12.10" }, "widgets": { "application/vnd.jupyter.widget-state+json": { "state": { "003ae8232ede408d8f51453bdc63f96e": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_5c796d225e474ae2940c9106b9d64938", "IPY_MODEL_9a45bc9a77c94a66b1ff7256e8231088", "IPY_MODEL_e91e918d37a14b28beb9e16f012458f5" ], "layout": "IPY_MODEL_9b33c99b889543a19eef2316ac5ab0fe" } }, "00af5c6f40494636a6f3229e0a7cfe7c": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_59c1b9d1ff41425986d2a8740cec7720", "max": 11422086, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_e8069fbac7d04e4093e3f08fdd84b9ff", "value": 11422086 } }, "00b580c294954b7789e5ec131b554bb0": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_55f2f5c7da47473497cccd4591f6f1b2", "IPY_MODEL_cd36d12e348f438e81d1def580ddc3bb", "IPY_MODEL_c7e6eb783c8f465dba5ffe4912db0735" ], "layout": "IPY_MODEL_0b5b82b219a8493badb13a0de16120d8" } }, "00d34d841ca74436aae9d727781deb95": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "00ebf205de7145699686bf127480ec74": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_4d02b3371c1d4bd6a2dd7e9df50d227b", "max": 1, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_4c03c750722344faad6a2636dcf2a8c4", "value": 1 } }, "01e6e5c1ca6b46e38b90c3437b2a338a": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "047421bbdbf042e3927d810afbb0b565": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "048621e84d3a417f803f7a3e944234a6": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "08036e0504e74efa9853b662f5bac19b": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_a02f4be4f7c745aaae9727e9fb8f428c", "IPY_MODEL_21402222e42046feb1eb6f4e64ecae50", "IPY_MODEL_760789c0138e4adaade91c3bb73cea2d" ], "layout": "IPY_MODEL_643e84e16a3d4205bbc332db420f21d6" } }, "0b5b82b219a8493badb13a0de16120d8": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "0cdd8c9bfcce4be8b452a4e03b56cf8f": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "0db1cdbbb47a4d0aa8654678cda5e5c8": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_3848ca58a1b24b0489c0ed2ac572d9a2", "max": 150, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_497d07100389476fb3e68a6fe20e04dd", "value": 150 } }, "0ddc82e2462d4ad4b4661e55654352b3": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "0e00775c7821414fb82084db4c71aff9": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "0e17405c7a8e4e6ab41d3964dc5fa5b4": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_afcb53065479412f8ab30274403dcd9a", "placeholder": "​", "style": "IPY_MODEL_d11291002423435f9ab639af145e999b", "value": " 80/80 [00:00<00:00, 553.74 examples/s]" } }, "0e757f51fc684a33b871c6654f1bc520": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_5438f243332143e38cea9fe6ac6acf40", "placeholder": "​", "style": "IPY_MODEL_f74e56c5f86046d8812584b3f4b460ce", "value": "Map: 100%" } }, "0e7ae2b6132647bc9017f6ac2cc342f9": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_81465b29ad7c4f9e98021f23bf6654c0", "placeholder": "​", "style": "IPY_MODEL_e0943fee62a64d16803e1ce7a015c06b", "value": " 11.4MB / 11.4MB            " } }, "0f4287efdcda4149a62718c3e8c14326": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_64500442a3d44994a3593d309cd9ab02", "max": 80, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_ee43ac368f5a4aa0813035b3d07cc399", "value": 80 } }, "0f8fc328cf5a4d56b155a64238f1a3e5": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "0ffa028e2b1e4bcdaa441a9be76de87e": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_607cf6ca93ed4f6ab23765508b5f95c1", "IPY_MODEL_4cf904670be54de0803dc23c6e3059d3", "IPY_MODEL_33c60940f8ec4a098021b70f1a76e6b5" ], "layout": "IPY_MODEL_5247e1b5ee1042a593e68f679f30a670" } }, "10132dd4cbde4803bdd38f45dc7e8b7d": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_e2cdbf13de504156ae577dc40cbb48e5", "placeholder": "​", "style": "IPY_MODEL_f7143a33b8ec4638934f319f04daa5fe", "value": " 500/500 [00:00<00:00, 599.43 examples/s]" } }, "1056869d6f2048b38e79ab0bdddf0d55": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "110e9a99f25f4b9f9139b495a557975b": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_fdd57fafdc3747baa062dfce006addbf", "max": 14783936, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_240577f1ac5b475ca29ace7e5a697890", "value": 14783936 } }, "129d882ae4a340fcab1cafde0f5fafaf": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "13cba6f342194b9ca6288583f9ff7b7a": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "13d6cac54c3849f1afee12e0ef48dddf": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "14a182021a734a6399c7fd5d9da8e9c7": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "16d4f581ec604fcc927343369c73f075": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_ff0c2a46d55946459f52d2dd09e05674", "placeholder": "​", "style": "IPY_MODEL_75b1eff81944448ab15c7d3f25021c99", "value": "Map (num_proc=6): 100%" } }, "170a45be12e84118b1499c2d5a6c1b49": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "190841be433642759e1a669a3c1a456a": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "19a0246152f9400a9bb4362fd5f563fe": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "19ce6b36b49e45e39ec255c52fba389d": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": "20px" } }, "19f1fea7704742f79b50e096e08f7e30": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "1ad5f8440a414d3eb18484e567ec57e5": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_94f05fcac46b45a88cf98017f1870ad8", "max": 266, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_4423b209ea8a439d9dc62bd0c85a055e", "value": 266 } }, "1af65eaea1dc47e49ba71128f8cc7043": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_9edb47ef9a4e4348b0e99d302f1308eb", "placeholder": "​", "style": "IPY_MODEL_c377f4bbadda4ca9a50769e7b7b83d1d", "value": " 613/613 [00:00<00:00, 12.7kB/s]" } }, "1b8bdab05d574458ad302ab4d60c86e0": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "1bcdcc5cb631454d95ef3a2ca180fbda": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_6f8cc86dadfa4e47a4e3ec2aeb9ef0da", "placeholder": "​", "style": "IPY_MODEL_6d290f1a029d409999a4d4f9dad9af00", "value": " 2.78M/? [00:00<00:00, 10.2MB/s]" } }, "1c4fd41612f4466b853c66cfc8b77427": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_601e2da7c2f3466c907c6dc975904974", "placeholder": "​", "style": "IPY_MODEL_bc086dd51c684413bcb3e40183290786", "value": " 150/150 [00:00<00:00, 2036.09 examples/s]" } }, "1c7903362174485aa575d018201c4352": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "1c846669e92d4d3a9cd91c408809ba69": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "1d5e153fda8a4e38884d13b4b916edda": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "20e75436cb7942e98f86392cb0378079": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "21402222e42046feb1eb6f4e64ecae50": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_7fa93872e8ce480b8f298cbcbb746916", "max": 500, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_1b8bdab05d574458ad302ab4d60c86e0", "value": 500 } }, "2149d1d6bb244d4db8d53d5c16649563": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_0e757f51fc684a33b871c6654f1bc520", "IPY_MODEL_e86a2ac8f7d543b1ae3ecbc2f4e560f7", "IPY_MODEL_1c4fd41612f4466b853c66cfc8b77427" ], "layout": "IPY_MODEL_aa058deba06246f1b0003d7b073c8b1c" } }, "21b3fb6c19f54448a9e20ece85600a5b": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "2258954750884ee483357f4b9c178036": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_5e5e3d76fe88464aa73ead1a1c51ccc5", "placeholder": "​", "style": "IPY_MODEL_407a7acb4e474669bbec60ec70028736", "value": " 500/500 [00:00<00:00, 2383.93 examples/s]" } }, "23ccb3a4752b4bc28c3f312f9537d6a4": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "240577f1ac5b475ca29ace7e5a697890": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "241038e98d724ee5b15b20682725b1ec": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "2479fa82f86e44efb0074bf98d677948": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_af1c80e5ed764e0dbe94a7901bfa5055", "IPY_MODEL_50a6b112d54b4f4caf81ff51b5d47330", "IPY_MODEL_2258954750884ee483357f4b9c178036" ], "layout": "IPY_MODEL_facd2d2ea3fd48f9a1ac2cc13bef64b8" } }, "249df56441d74bf4ba35ca0463e8d443": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "24df48e26dde45c78e01649c8b9b68b4": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_315ae3dd2bd441b0be55ab63d71cf2f3", "IPY_MODEL_2e2b3a77fa2444528c88527ce662ebcc", "IPY_MODEL_9531b4bcfab345b7b0235c422e7f8c18" ], "layout": "IPY_MODEL_2d740eedcf154502ab8ea9651603d816" } }, "25cdfd281d264f49841120ad73571197": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_49b872b4786d48d5b906f03d5ffea4cf", "placeholder": "​", "style": "IPY_MODEL_4f7540961425431f895ad9f368867e76", "value": " 14.8MB / 14.8MB            " } }, "275b2d90c0da458abbf59c963afb2e7e": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "27ce5b996e4742a7a835112d03a9ae17": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_a3adefd3834347cdb48d9e3316a5ed48", "placeholder": "​", "style": "IPY_MODEL_a83dabfdb0324a9abc66b7bb47142fdc", "value": "README.md: " } }, "288bd1af47c34ce7afe1cf10ae64da1a": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "290efeeadcc0488994d0bf7d32f4e57b": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "29231af3a98a4913a229841d84b27422": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_27ce5b996e4742a7a835112d03a9ae17", "IPY_MODEL_eb3e7af58dc7441f9befff94cd837496", "IPY_MODEL_bd36a2a263244450b85a492f96d018fa" ], "layout": "IPY_MODEL_7fca6a24a44a45bb87e8cc4fd390403e" } }, "2978d0d591544b74a9b1fc816e430e43": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "297df3af99124fe98b6699137b5f3cd8": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "29da9ecefb744a6ebe187d6ad24a04ec": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "2a30540f69414facb204ef8a7e6dea4a": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "2a8681d890d3439a90403ba1b9eec927": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "2d642e51abf547849f6584d35b5d7a70": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "2d740eedcf154502ab8ea9651603d816": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "2e2b3a77fa2444528c88527ce662ebcc": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_d5a7f54aab804d7c998694863e366900", "max": 1500, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_5ae30524dc344783a7b546ac4c403239", "value": 1500 } }, "2e7179f8d86740689b94aa8af55f403d": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "2e7a725fb0da46768d271d76019af7ff": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_2f835b1be1fd4a1fa215c38ccb24fade", "IPY_MODEL_6b7d3842124e451ea5bccfd3d00aaf41", "IPY_MODEL_dbbc84a88ec54339aa0b17acaa527221" ], "layout": "IPY_MODEL_ffbda3ae381149c58b0f4f4ca3aba694" } }, "2e8fd49cd671471c8e59c8f2b0ecde5b": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "2eb6cd8deed74f1cae2298c20265efd6": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_867ffb288b49498281c615325c9f9320", "placeholder": "​", "style": "IPY_MODEL_a19ce4b328c34e1d9f84a9a70b5917d0", "value": " 80/80 [00:00<00:00, 42.34 examples/s]" } }, "2f180de8e1ef4040ab355cfcdd6445da": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "2f835b1be1fd4a1fa215c38ccb24fade": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_de8e98bcce6a4a32bb344467f5301c16", "placeholder": "​", "style": "IPY_MODEL_129d882ae4a340fcab1cafde0f5fafaf", "value": "Processing Files (1 / 1)      : 100%" } }, "2ffe97ed07e54f17b353563bcdd48b41": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "30ca70060ebd492390750750e5c677bf": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "30ecc6450c0e4891b44c08f4e78db09c": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "315ae3dd2bd441b0be55ab63d71cf2f3": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_a108eb483f0e4ed0ae36e77e2b269ce6", "placeholder": "​", "style": "IPY_MODEL_6069750771574e9c9d641c4e97d0f1a4", "value": "Map: 100%" } }, "31f6a413168f45a5ab84a3e764013d78": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_ccd9559fb88e4d6ab05f4d4f47a9e364", "IPY_MODEL_f31c8cc62d4c401d8a865e6caad20c38", "IPY_MODEL_1af65eaea1dc47e49ba71128f8cc7043" ], "layout": "IPY_MODEL_66c2a12960974935949e3186d50d2e45" } }, "33c60940f8ec4a098021b70f1a76e6b5": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_afef069fc3054b6bac72e05c06a9b699", "placeholder": "​", "style": "IPY_MODEL_0cdd8c9bfcce4be8b452a4e03b56cf8f", "value": " 14.8MB / 14.8MB, 9.24MB/s  " } }, "35ed6c346ecf445f8b9307546af0b17b": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "362ca4826fc24755b7898c54334b5f7b": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "376b785a2a0f425693df17708b72f866": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "37924cda1a6446ffa7e3ed65c46fb0f2": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "37f6fba6ad82421885e71b7cc4b42064": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "383bb49d4cd34c2685a36c0965e9730b": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "3848ca58a1b24b0489c0ed2ac572d9a2": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "397f468d7aff48618720f3e06b9284ed": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "3a1db87d4cef4e41839e92e7080813c0": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "3a24f03afa3143448425861758e13de2": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_ed4d26c9971d41ba821bcbf8c876c1cb", "max": 150, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_37f6fba6ad82421885e71b7cc4b42064", "value": 150 } }, "3ad89276ef674026baca9d24d1296710": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_376b785a2a0f425693df17708b72f866", "placeholder": "​", "style": "IPY_MODEL_13cba6f342194b9ca6288583f9ff7b7a", "value": "data/reserve-00000-of-00001.parquet: 100%" } }, "3bedf84e5b124ca882242272cabede5c": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "3ca5a40ba10f4ad09b23ee0339607696": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_4b3da87ff3884fbabe0e6e05af82679a", "placeholder": "​", "style": "IPY_MODEL_2e8fd49cd671471c8e59c8f2b0ecde5b", "value": " 150/150 [00:00<00:00, 1001.93 examples/s]" } }, "3d39bd5c62554dc98e37f26209681667": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_992500d0a88044f3be59f23920e19f46", "max": 260654, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_4758f788c9894f0a94fe1263a23039b6", "value": 260654 } }, "3db2b92b2e844f229826b4c46dd1faf9": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "3db4042595a1463a93d26ef4e8fd5185": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": "20px" } }, "3e9b15dda7bf48c3aae394f0d68e2b10": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "3f871a98b3214aecb047e164dc4a2a5d": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_73b2b5b571f448b6bc3bc99552b1c392", "placeholder": "​", "style": "IPY_MODEL_37924cda1a6446ffa7e3ed65c46fb0f2", "value": "model.safetensors: 100%" } }, "3fec3c13e9224c35aef5fce6f6108e34": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "407a7acb4e474669bbec60ec70028736": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "42c06ae8171840c8b1c73b5b489d25a7": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_397f468d7aff48618720f3e06b9284ed", "placeholder": "​", "style": "IPY_MODEL_7a6c64ca6c284301b4308fe3f2fe9bcb", "value": "Filter (num_proc=5): 100%" } }, "4398ec401e6340b4b5f09482759a1045": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "4423b209ea8a439d9dc62bd0c85a055e": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "458d4b1b8efa47da9485514935fdbbf1": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_ad2af2ba3b334823a563ce1dd4b2c65f", "IPY_MODEL_8cf568edd88743b1a0cc66702873f5e6", "IPY_MODEL_c05ce0271f8e4dc7a0315601532ca955" ], "layout": "IPY_MODEL_4baef096df4242b48f3273c0ef46c648" } }, "45a4dce069c5478ab52ce3a35b21123c": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_6945c712815142f4b78b3ab735646f6e", "placeholder": "​", "style": "IPY_MODEL_a6343a6d1db84aa180e2cd42376dad35", "value": " 1500/1500 [00:01<00:00, 357.86 examples/s]" } }, "45efca052b0948659037c654d3fa4cfc": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "45f43e003da84552b733938e93e76575": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_6cfd94dbb7a84ddf9cada7c2760a2264", "max": 150, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_5b6113c58c8b49459b9fe02794b461d4", "value": 150 } }, "4600b1a835694f13b580c2306d0c267b": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "4649e83451ae45fc9e47878075e04834": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_6c8e529410e94ce6af69ccfc3df6be6d", "placeholder": "​", "style": "IPY_MODEL_d97b2639afd9447eb61a6983cebe605a", "value": " 200/200 [00:00<00:00, 9432.93 examples/s]" } }, "4696ce54235f4bd3873eeed778a4d75e": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "46e1e61959b94777953aa2dd43997a4e": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "47487ef40fba4b01a29038c332fdbe6e": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_b8789c36105a4c6d91aa8f2f8aa2182d", "placeholder": "​", "style": "IPY_MODEL_4600b1a835694f13b580c2306d0c267b", "value": " 150/150 [00:00<00:00, 100.37 examples/s]" } }, "4758f788c9894f0a94fe1263a23039b6": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "481e292b38954268ace143e169dfca74": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "48c20c5564494cd5bac8ed6577bd91b0": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "497d07100389476fb3e68a6fe20e04dd": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "49b872b4786d48d5b906f03d5ffea4cf": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "49c2f2ae112f4133a434b6274ca9ffd0": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_c0bc942b2dec498480f6e19344c4d203", "max": 573, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_30ca70060ebd492390750750e5c677bf", "value": 573 } }, "4b3da87ff3884fbabe0e6e05af82679a": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "4baef096df4242b48f3273c0ef46c648": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "4be4e4869d5e441486cb640177763603": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "4c03c750722344faad6a2636dcf2a8c4": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "4c4456ede1364182b6b84bab9dbd0ceb": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "4c5ad75f54da4638a49f5d7b91a80675": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "4cf904670be54de0803dc23c6e3059d3": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_3db4042595a1463a93d26ef4e8fd5185", "max": 1, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_2f180de8e1ef4040ab355cfcdd6445da", "value": 1 } }, "4d02b3371c1d4bd6a2dd7e9df50d227b": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": "20px" } }, "4db1938146d24d3a8f267ad069c63baf": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_cc72718e8e344f99839589eec9388dc5", "IPY_MODEL_a336d465b4c146e68fb7f9e0414001e5", "IPY_MODEL_7309057341a74ca28a8bd6e9f1d8e0df" ], "layout": "IPY_MODEL_fe237eb64d7b4a71bf13753010e77cbb" } }, "4f7540961425431f895ad9f368867e76": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "4f7701101cc24c2f90049a6fc0919d80": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "50a6b112d54b4f4caf81ff51b5d47330": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_7e1c3b7d0e714ee3a7d92f7bdc68f19a", "max": 500, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_f63a0c3bd30741e389921c5a0c0257b6", "value": 500 } }, "512998b463a04362a4d618f503ceb95c": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "514d072373ed49d6900888c63d959d39": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_4c5ad75f54da4638a49f5d7b91a80675", "placeholder": "​", "style": "IPY_MODEL_3bedf84e5b124ca882242272cabede5c", "value": "Map (num_proc=5): 100%" } }, "51fab6cbb2574f828d0ae4b8431eeda0": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "5247e1b5ee1042a593e68f679f30a670": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "530347c79cab4606835a0b7302e35f5b": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "5438f243332143e38cea9fe6ac6acf40": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "5463570fd1ad4f43af5e5d4a14e5bbb1": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_643b5f3367fc475aba8eeffe6091032c", "placeholder": "​", "style": "IPY_MODEL_e67201215c274e8684c1c088bb7edc37", "value": "tokenizer.json: " } }, "55f2f5c7da47473497cccd4591f6f1b2": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_b2f24deee752408c9c11652cf60a84d3", "placeholder": "​", "style": "IPY_MODEL_db50c8f9fcd64b1391c751ee7697e23d", "value": "Map (num_proc=5): 100%" } }, "5668a72966b841019572521c201ea4e2": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_895249c57814429e99f87e5d86907346", "placeholder": "​", "style": "IPY_MODEL_61ad1078a7cc40819cdad3bf68531b6c", "value": "generation_config.json: 100%" } }, "572caef8e71c48cea2b9bf826256a1e3": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_fc8ba4f1606743dcabc2ee0dd482b704", "IPY_MODEL_0f4287efdcda4149a62718c3e8c14326", "IPY_MODEL_0e17405c7a8e4e6ab41d3964dc5fa5b4" ], "layout": "IPY_MODEL_f803f04e1f0b4c8db5b2a571538790d3" } }, "57553e43d221422d921c4212d71ad972": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_5463570fd1ad4f43af5e5d4a14e5bbb1", "IPY_MODEL_8d3afe0c4db14a9ab7234230d9f12e3e", "IPY_MODEL_8a6323e9aa7342e1ab3337f24a48d61e" ], "layout": "IPY_MODEL_21b3fb6c19f54448a9e20ece85600a5b" } }, "59115df98912426b9d679bf80e3f5f6e": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_c28d17bc0e2446dc89081a1a638a2484", "IPY_MODEL_79099348a0c643e7bceaf63e6456f1f7", "IPY_MODEL_10132dd4cbde4803bdd38f45dc7e8b7d" ], "layout": "IPY_MODEL_62769eb172cd4d2884c75b8e36c2d28c" } }, "59c1b9d1ff41425986d2a8740cec7720": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "59cb2a9a1e0f474fb0759dce2e9254b4": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_f02d91e96fe84c0781b1c6e17fd537ae", "max": 1500, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_5aa8c08833564830a597642fdee68611", "value": 1500 } }, "5aa8c08833564830a597642fdee68611": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "5ae30524dc344783a7b546ac4c403239": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "5b6113c58c8b49459b9fe02794b461d4": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "5c796d225e474ae2940c9106b9d64938": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_2978d0d591544b74a9b1fc816e430e43", "placeholder": "​", "style": "IPY_MODEL_f50bbeaadfe1453fb7880dc8d725fefb", "value": "Processing Files (1 / 1)      : 100%" } }, "5ccff814bf444f0bb1622c1639072fd3": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_bb36946281b04834aad5e987f54ef2c5", "placeholder": "​", "style": "IPY_MODEL_d67efe136abc47dcbd9f2f7aea2870b4", "value": "  0.00B /  0.00B,  0.00B/s  " } }, "5d434b4b5a88449aaa35026f0f2fe772": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_4696ce54235f4bd3873eeed778a4d75e", "placeholder": "​", "style": "IPY_MODEL_aecf790586e4461ca62b06581201a4db", "value": " 500/500 [00:00<00:00, 556.09 examples/s]" } }, "5d6c9aa373cb457b84bf0818e880374f": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "5d7559aac4da485e920ddd19859521bd": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_8ad0641ef6a040a99e42b838fefb13cc", "placeholder": "​", "style": "IPY_MODEL_19f1fea7704742f79b50e096e08f7e30", "value": "Filter (num_proc=6): 100%" } }, "5dc28d883bd046b7a7cc329b869b329e": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "5e2d63577b9846649c53977c1e5f67e5": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "5e5e3d76fe88464aa73ead1a1c51ccc5": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "5f810f46fc1d4b93a9362bab5e1d02cb": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "5f897a4a2d2d4134b182ca12ffedfd41": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "5f97644a4dbb4de9b2401617cd0d405e": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "6016e224b904438cbe154f26372d8c38": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "601e2da7c2f3466c907c6dc975904974": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "6069750771574e9c9d641c4e97d0f1a4": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "607cf6ca93ed4f6ab23765508b5f95c1": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_b3ce39f1bb0741ffbda5960559007735", "placeholder": "​", "style": "IPY_MODEL_d82962ea0d704b99a06987a6d58bc36c", "value": "New Data Upload               : 100%" } }, "609b59d6e0544e39a92d47ef036baf47": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "61ad1078a7cc40819cdad3bf68531b6c": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "62769eb172cd4d2884c75b8e36c2d28c": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "6332e4cac11e4456a57f49757ad7a243": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "633c5d5645dc4d91953efe8466dd55cd": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_16d4f581ec604fcc927343369c73f075", "IPY_MODEL_d0f184b2c8934ac0830dfeb1963b083a", "IPY_MODEL_e4440093f346491da5d4af23c296c324" ], "layout": "IPY_MODEL_2a8681d890d3439a90403ba1b9eec927" } }, "636cba5df88940e2b92525b4c2ea00b6": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "636f00f102ee4601839ab20f63386777": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "6425c2a961c74464a23986d7f52590bf": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "643b5f3367fc475aba8eeffe6091032c": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "643e84e16a3d4205bbc332db420f21d6": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "64500442a3d44994a3593d309cd9ab02": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "64770e809d234b958d990ad9db262f86": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "648646594ca74b69a29ace1fed5db1be": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": "20px" } }, "64a36df9f60c4473afd94b03803c8a1c": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_5d7559aac4da485e920ddd19859521bd", "IPY_MODEL_d2d2f9d53852463982a293f44dda3572", "IPY_MODEL_2eb6cd8deed74f1cae2298c20265efd6" ], "layout": "IPY_MODEL_8cb6e3e7b5254bc085775607e1d37f0e" } }, "66c2a12960974935949e3186d50d2e45": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "689257af48194add88f3462e44a9c9a7": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "6945c712815142f4b78b3ab735646f6e": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "6a2234cf25d847d586c0639407cb0422": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "6acc17dc21b84d0e9d91605f8e76e1ce": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "6b7d3842124e451ea5bccfd3d00aaf41": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_19ce6b36b49e45e39ec255c52fba389d", "max": 1, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_4be4e4869d5e441486cb640177763603", "value": 1 } }, "6c8e529410e94ce6af69ccfc3df6be6d": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "6cdce07c0aae4c80b63ba7c312c15999": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_839bcd34b3d1455c9b168f3c0eb7ee48", "placeholder": "​", "style": "IPY_MODEL_f46385b2c5dd46ebae4f130e22bc2b51", "value": "Map: 100%" } }, "6cfd94dbb7a84ddf9cada7c2760a2264": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "6d290f1a029d409999a4d4f9dad9af00": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "6def0cb756d347cea530ec55079725f7": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_c87be66de92644ca993361e6ca7a7cec", "placeholder": "​", "style": "IPY_MODEL_b1f7e2baa64e461e928854bde8ca37da", "value": "vocab.json: " } }, "6e1e9431d2da44648b11d4422814f4de": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "6eab9db0d1aa4b84b90fc3872e083dc6": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "6f8cc86dadfa4e47a4e3ec2aeb9ef0da": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "6fa8f54bd32c4c05b39643df321bf826": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_6acc17dc21b84d0e9d91605f8e76e1ce", "placeholder": "​", "style": "IPY_MODEL_8ce3dac1705c4d608474c0b2b29ef16c", "value": " 1500/1500 [00:00<00:00, 3272.91 examples/s]" } }, "70c43ae789a94fa8b686164510c86176": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "72ec2fb877254e0b9bb0b8a636c25187": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "72eecc7e741a41d695abed8c79cf885e": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_f834d546d5634bcabf4776770c6d8871", "IPY_MODEL_f5fe5f5074154467a6d5101f06b2dfc5", "IPY_MODEL_b52c54c6617d4f7294f843f02ab70f02" ], "layout": "IPY_MODEL_6425c2a961c74464a23986d7f52590bf" } }, "7309057341a74ca28a8bd6e9f1d8e0df": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_4c4456ede1364182b6b84bab9dbd0ceb", "placeholder": "​", "style": "IPY_MODEL_a90d649010ca43aebc1534822d3aee6a", "value": " 7.51k/? [00:00<00:00, 124kB/s]" } }, "73366bb0f86c4689828558a6db8160c2": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "73b07b37c66a41ada1a6a2aa5272398c": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "73b2b5b571f448b6bc3bc99552b1c392": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "73f33acaacc846e5b22e00e94dff8743": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "7456f76578b944ec98a79f0b0dc6de65": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_46e1e61959b94777953aa2dd43997a4e", "max": 1500, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_35ed6c346ecf445f8b9307546af0b17b", "value": 1500 } }, "75124ef3b8c5400986ad002c88504834": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_bdde1deb5ae9491eae7b6152c81c059d", "IPY_MODEL_7848ff282e424293b99fc1ffc4cd2fc2", "IPY_MODEL_98925b8108c54ea28eb21503015989c1" ], "layout": "IPY_MODEL_d9f6cfc6a3f449b49907ff71ff293141" } }, "75b1eff81944448ab15c7d3f25021c99": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "75b9ddd94a41423baf0eae13d3c74f9b": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_6def0cb756d347cea530ec55079725f7", "IPY_MODEL_8582e647c2e24f91aef1aa10c80e561c", "IPY_MODEL_1bcdcc5cb631454d95ef3a2ca180fbda" ], "layout": "IPY_MODEL_ceb840afa0094d96a145df316807a345" } }, "760789c0138e4adaade91c3bb73cea2d": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_73b07b37c66a41ada1a6a2aa5272398c", "placeholder": "​", "style": "IPY_MODEL_f93c3a6553d1414ebc5ff9e5b18fb4dd", "value": " 500/500 [00:00<00:00, 628.81 examples/s]" } }, "776f37e27e864e3596640ad6708fe717": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "77770c5f10934573a6fbe934cfb9cb4d": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "778e34c12b4347d387dc53596a598fe2": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": "20px" } }, "7848ff282e424293b99fc1ffc4cd2fc2": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_2ffe97ed07e54f17b353563bcdd48b41", "max": 193593, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_20e75436cb7942e98f86392cb0378079", "value": 193593 } }, "79099348a0c643e7bceaf63e6456f1f7": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_eab8c43144bf40f1925820492473e9d3", "max": 500, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_ecb17e182dd84febbdcded2879fa80b7", "value": 500 } }, "79520fc6e14b4fb7a20f4eca948dede0": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "7a6c64ca6c284301b4308fe3f2fe9bcb": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "7d3a823c2d45490e9e9505d3e399aeff": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "7e1c3b7d0e714ee3a7d92f7bdc68f19a": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "7e9cff4098c64cf9b95d105e1aff748c": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "7ed12fe7019d4facb1c8b98238805561": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_d9bd7bf387b44ed7bd859d415bc2986f", "placeholder": "​", "style": "IPY_MODEL_d3e67e65c9b44eadac8364257b7b6a4d", "value": "  ...adapter_model.safetensors: 100%" } }, "7f3c543649714b99a9565399839ba5e1": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_6cdce07c0aae4c80b63ba7c312c15999", "IPY_MODEL_45f43e003da84552b733938e93e76575", "IPY_MODEL_3ca5a40ba10f4ad09b23ee0339607696" ], "layout": "IPY_MODEL_64770e809d234b958d990ad9db262f86" } }, "7fa93872e8ce480b8f298cbcbb746916": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "7fca6a24a44a45bb87e8cc4fd390403e": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "806a5a3781074d9d8201d0db61c04765": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_9c688b55b9d244cd9a6ea1294670a1ad", "placeholder": "​", "style": "IPY_MODEL_4398ec401e6340b4b5f09482759a1045", "value": " 80/80 [00:00<00:00, 1506.87 examples/s]" } }, "811977f4dc4a45ebaec21ecb2882a6f5": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": "20px" } }, "81465b29ad7c4f9e98021f23bf6654c0": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "81abc2746ae8418ba793c0e15783c665": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "823885191d4c472e9f961c11a3c6ffc5": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "839bcd34b3d1455c9b168f3c0eb7ee48": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "83d5c8137daf43f08389eaa70861637f": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "83e24d6711ab464daa46584dd6526e33": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "84eaa448117b41fcbfa3d68b0287540e": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "857fc23cb42c4e5297b6cbc12f42bfb1": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_afbec639658a4db09b968424a52074f9", "IPY_MODEL_fa9a37a523ec459e8d02007b55b1ba20", "IPY_MODEL_f9f7b1fc79dc4bee9b6a0a946ff39bb2" ], "layout": "IPY_MODEL_bf421ed09e4d42c3b906c51f159eaa2c" } }, "8582e647c2e24f91aef1aa10c80e561c": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_b0e7dc59392242baaad8d4ba599646e2", "max": 1, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_241038e98d724ee5b15b20682725b1ec", "value": 1 } }, "867ffb288b49498281c615325c9f9320": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "871a4878c903463289a2283b5f649d00": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_3e9b15dda7bf48c3aae394f0d68e2b10", "placeholder": "​", "style": "IPY_MODEL_9dcb1c84d9384ab3b0d9ad681646e4e9", "value": " 573/573 [00:00<00:00, 60.2kB/s]" } }, "87273b19125e42d0ad471db11f600a15": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_b68f12d836a24d57b2708b476bfc71ad", "placeholder": "​", "style": "IPY_MODEL_3db2b92b2e844f229826b4c46dd1faf9", "value": " 2.05G/2.05G [00:21<00:00, 72.9MB/s]" } }, "875f7ae9afab4421bdeacdec71be326a": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_42c06ae8171840c8b1c73b5b489d25a7", "IPY_MODEL_7456f76578b944ec98a79f0b0dc6de65", "IPY_MODEL_45a4dce069c5478ab52ce3a35b21123c" ], "layout": "IPY_MODEL_3fec3c13e9224c35aef5fce6f6108e34" } }, "8874182d6efb466f9551c71306e87be2": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_8afebc1ba6cc47868b3caa994d271e2a", "placeholder": "​", "style": "IPY_MODEL_8e8c8c3211484f63a499bbe3d5f0b63d", "value": " 1500/1500 [00:00<00:00, 469.61 examples/s]" } }, "8946e4ccc6fa4cbc93fff996338aad43": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_83e24d6711ab464daa46584dd6526e33", "placeholder": "​", "style": "IPY_MODEL_48c20c5564494cd5bac8ed6577bd91b0", "value": " 266/266 [00:00<00:00, 5.92kB/s]" } }, "895249c57814429e99f87e5d86907346": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "897116c49c5c4c9591c2c77d7538e851": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "8a4eb795873c46188f85230e6a948795": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_84eaa448117b41fcbfa3d68b0287540e", "placeholder": "​", "style": "IPY_MODEL_c73de00f6d4f456e8fb28a765df6a1fd", "value": " 150/150 [00:00<00:00, 7213.48 examples/s]" } }, "8a6323e9aa7342e1ab3337f24a48d61e": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_636cba5df88940e2b92525b4c2ea00b6", "placeholder": "​", "style": "IPY_MODEL_a6f703306605483c9fe86cc203e73a5d", "value": " 7.03M/? [00:00<00:00, 19.8MB/s]" } }, "8ad0641ef6a040a99e42b838fefb13cc": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "8afebc1ba6cc47868b3caa994d271e2a": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "8ba25aaf330e4cecb4940f51ce4c2d91": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_a11421346cb544c3ae79e49143b3ff98", "IPY_MODEL_59cb2a9a1e0f474fb0759dce2e9254b4", "IPY_MODEL_6fa8f54bd32c4c05b39643df321bf826" ], "layout": "IPY_MODEL_45efca052b0948659037c654d3fa4cfc" } }, "8cb6e3e7b5254bc085775607e1d37f0e": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "8ce3dac1705c4d608474c0b2b29ef16c": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "8cf568edd88743b1a0cc66702873f5e6": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_b9374d73b2ac427e9c8d55949737bf4b", "max": 1923495, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_ac471c36448e42e6a4278eb212464d78", "value": 1923495 } }, "8d3afe0c4db14a9ab7234230d9f12e3e": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_d95d024f4dcb4bc5b0dfa92259ede3e5", "max": 1, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_5e2d63577b9846649c53977c1e5f67e5", "value": 1 } }, "8e8c8c3211484f63a499bbe3d5f0b63d": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "8ea83d7a46d84e37a28890d5c61109cf": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "8fa83e655f654286a77f0d64c2017e40": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "90cfd352cfce435a9fb4c2ca4506ef81": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "91e66dab350841299c8785795c380366": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "939163edb94b4620876de0deaf90d550": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "94f05fcac46b45a88cf98017f1870ad8": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "9531b4bcfab345b7b0235c422e7f8c18": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_b957a5477fc54821a8112428690ca3f8", "placeholder": "​", "style": "IPY_MODEL_7d3a823c2d45490e9e9505d3e399aeff", "value": " 1500/1500 [00:01<00:00, 1026.90 examples/s]" } }, "95d4d9080e17430687b4a52e7b704ac1": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_514d072373ed49d6900888c63d959d39", "IPY_MODEL_cff8893cc6d2490cbb1c903f22d85772", "IPY_MODEL_8874182d6efb466f9551c71306e87be2" ], "layout": "IPY_MODEL_00d34d841ca74436aae9d727781deb95" } }, "98925b8108c54ea28eb21503015989c1": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_29da9ecefb744a6ebe187d6ad24a04ec", "placeholder": "​", "style": "IPY_MODEL_1d5e153fda8a4e38884d13b4b916edda", "value": " 194k/194k [00:00<00:00, 769kB/s]" } }, "98980e3258f148ae80e89c0b23847336": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_fcbdd1e084124303be96ca0a89a8e293", "IPY_MODEL_00ebf205de7145699686bf127480ec74", "IPY_MODEL_bb5dea14dc0c420fa06ffda49187f503" ], "layout": "IPY_MODEL_7e9cff4098c64cf9b95d105e1aff748c" } }, "992500d0a88044f3be59f23920e19f46": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "99c64e4279264453b7bf06e578ba7025": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_51fab6cbb2574f828d0ae4b8431eeda0", "placeholder": "​", "style": "IPY_MODEL_73f33acaacc846e5b22e00e94dff8743", "value": "Filter (num_proc=5): 100%" } }, "9a45bc9a77c94a66b1ff7256e8231088": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_648646594ca74b69a29ace1fed5db1be", "max": 1, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_c313a139e75c4953ab62b75752bcc5d7", "value": 1 } }, "9b33c99b889543a19eef2316ac5ab0fe": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "9c688b55b9d244cd9a6ea1294670a1ad": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "9d9e8a585584449fbc2982735731b96e": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "9dcb1c84d9384ab3b0d9ad681646e4e9": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "9edb47ef9a4e4348b0e99d302f1308eb": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "a02f4be4f7c745aaae9727e9fb8f428c": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_288bd1af47c34ce7afe1cf10ae64da1a", "placeholder": "​", "style": "IPY_MODEL_cb97fe53c8364943b3251e935a6b59f9", "value": "Map: 100%" } }, "a108eb483f0e4ed0ae36e77e2b269ce6": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "a11421346cb544c3ae79e49143b3ff98": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_b7d9cf67d7ee44ffb77a45fd4e6fe32f", "placeholder": "​", "style": "IPY_MODEL_01e6e5c1ca6b46e38b90c3437b2a338a", "value": "Map: 100%" } }, "a19ce4b328c34e1d9f84a9a70b5917d0": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "a336d465b4c146e68fb7f9e0414001e5": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_d98c35bbd1524d6bb5b3faec9f74de31", "max": 1, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_939163edb94b4620876de0deaf90d550", "value": 1 } }, "a3adefd3834347cdb48d9e3316a5ed48": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "a3cb87314cd145cb892e64a5936d5288": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_7ed12fe7019d4facb1c8b98238805561", "IPY_MODEL_110e9a99f25f4b9f9139b495a557975b", "IPY_MODEL_25cdfd281d264f49841120ad73571197" ], "layout": "IPY_MODEL_b10bb711d77540678c446c980abbefb0" } }, "a419e0561e0f4b3da3f0eb8cb657755f": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_db75caefb31b4f49876694c98de6a6ad", "max": 2054625552, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_d2106145680e4083a0d3efae7309cbb8", "value": 2054625552 } }, "a5f80d1357054b3794403ff0ea183bb1": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_ed09000d8a464e21bb0d345c9042ad60", "IPY_MODEL_ac1d67b8c8a24e619ac85998b6fbd44e", "IPY_MODEL_5ccff814bf444f0bb1622c1639072fd3" ], "layout": "IPY_MODEL_ac7464fbe2bd4241bcb283b8f8c2f38c" } }, "a6343a6d1db84aa180e2cd42376dad35": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "a6969e8ebd3d4f2aa1fb6d9153654a28": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "a6c5d26ad5e14dd2b3b701de1bfe2b7f": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_190841be433642759e1a669a3c1a456a", "max": 80, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_e28c2ec5beb14108bf9633eb1965d233", "value": 80 } }, "a6c8c00476ed49c7ac1d17165dbb19e0": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_b09db1f09d6e4f98b13a1496df56f634", "IPY_MODEL_00af5c6f40494636a6f3229e0a7cfe7c", "IPY_MODEL_0e7ae2b6132647bc9017f6ac2cc342f9" ], "layout": "IPY_MODEL_3a1db87d4cef4e41839e92e7080813c0" } }, "a6dbc6baa4b44ca0b042c6449959a7f0": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "a6f703306605483c9fe86cc203e73a5d": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "a737b9169ce442b7a607273640ac1562": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "a83dabfdb0324a9abc66b7bb47142fdc": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "a90d649010ca43aebc1534822d3aee6a": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "a9e1f270b5314d4ba6c0417313dbd226": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "aa058deba06246f1b0003d7b073c8b1c": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "aa7bce772af442928a74629464e2fc0e": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "ac1d67b8c8a24e619ac85998b6fbd44e": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_811977f4dc4a45ebaec21ecb2882a6f5", "max": 1, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_5f97644a4dbb4de9b2401617cd0d405e", "value": 0 } }, "ac471c36448e42e6a4278eb212464d78": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "ac7464fbe2bd4241bcb283b8f8c2f38c": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "ad2af2ba3b334823a563ce1dd4b2c65f": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_6016e224b904438cbe154f26372d8c38", "placeholder": "​", "style": "IPY_MODEL_13d6cac54c3849f1afee12e0ef48dddf", "value": "data/train-00000-of-00001.parquet: 100%" } }, "ae5960c8a5fb4c7c8a75c7bf9a4e6ebf": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_cee47b7f9a1d4f86a51afedae1cc6185", "placeholder": "​", "style": "IPY_MODEL_30ecc6450c0e4891b44c08f4e78db09c", "value": "Map (num_proc=6): 100%" } }, "aecf790586e4461ca62b06581201a4db": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "af1c80e5ed764e0dbe94a7901bfa5055": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_aa7bce772af442928a74629464e2fc0e", "placeholder": "​", "style": "IPY_MODEL_8fa83e655f654286a77f0d64c2017e40", "value": "Map: 100%" } }, "afbec639658a4db09b968424a52074f9": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_f0e4397588a847af90236075a3065ac7", "placeholder": "​", "style": "IPY_MODEL_83d5c8137daf43f08389eaa70861637f", "value": "added_tokens.json: 100%" } }, "afcb53065479412f8ab30274403dcd9a": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "afef069fc3054b6bac72e05c06a9b699": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "b09db1f09d6e4f98b13a1496df56f634": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_c5c6d5fe77ae4a118d531152e752a552", "placeholder": "​", "style": "IPY_MODEL_a737b9169ce442b7a607273640ac1562", "value": "  ...mpcnfz5qff/tokenizer.json: 100%" } }, "b0e7dc59392242baaad8d4ba599646e2": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": "20px" } }, "b10bb711d77540678c446c980abbefb0": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "b15fcea90a104c5a8fa21646638b0a12": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_bc6c6aee6b6d4cd3afe76dd00245f8db", "IPY_MODEL_49c2f2ae112f4133a434b6274ca9ffd0", "IPY_MODEL_871a4878c903463289a2283b5f649d00" ], "layout": "IPY_MODEL_8ea83d7a46d84e37a28890d5c61109cf" } }, "b1f7e2baa64e461e928854bde8ca37da": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "b2f24deee752408c9c11652cf60a84d3": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "b3ce39f1bb0741ffbda5960559007735": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "b3f3175c19c74344a406aff51a048139": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "b52c54c6617d4f7294f843f02ab70f02": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_0ddc82e2462d4ad4b4661e55654352b3", "placeholder": "​", "style": "IPY_MODEL_275b2d90c0da458abbf59c963afb2e7e", "value": " 1500/1500 [00:00<00:00, 55111.34 examples/s]" } }, "b68f12d836a24d57b2708b476bfc71ad": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "b7d9cf67d7ee44ffb77a45fd4e6fe32f": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "b8789c36105a4c6d91aa8f2f8aa2182d": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "b9374d73b2ac427e9c8d55949737bf4b": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "b957a5477fc54821a8112428690ca3f8": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "ba4a487089554097a60c839774eb6312": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_99c64e4279264453b7bf06e578ba7025", "IPY_MODEL_0db1cdbbb47a4d0aa8654678cda5e5c8", "IPY_MODEL_47487ef40fba4b01a29038c332fdbe6e" ], "layout": "IPY_MODEL_297df3af99124fe98b6699137b5f3cd8" } }, "bb36946281b04834aad5e987f54ef2c5": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "bb5dea14dc0c420fa06ffda49187f503": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_e1a49fe3dcfe4c518055364a3b9654b1", "placeholder": "​", "style": "IPY_MODEL_530347c79cab4606835a0b7302e35f5b", "value": " 1.67M/? [00:00<00:00, 9.34MB/s]" } }, "bc086dd51c684413bcb3e40183290786": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "bc2d4de1df5241e3949f4558b9322321": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_e441aedea1414eac9574830ee8425098", "IPY_MODEL_a6c5d26ad5e14dd2b3b701de1bfe2b7f", "IPY_MODEL_806a5a3781074d9d8201d0db61c04765" ], "layout": "IPY_MODEL_bcacc2d5bcb34e0ab2caeb2e5fddeeba" } }, "bc6c6aee6b6d4cd3afe76dd00245f8db": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_dd6994f094df444c9c62f84fd2da82af", "placeholder": "​", "style": "IPY_MODEL_2d642e51abf547849f6584d35b5d7a70", "value": "README.md: 100%" } }, "bcacc2d5bcb34e0ab2caeb2e5fddeeba": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "bd36a2a263244450b85a492f96d018fa": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_897116c49c5c4c9591c2c77d7538e851", "placeholder": "​", "style": "IPY_MODEL_4f7701101cc24c2f90049a6fc0919d80", "value": " 4.89k/? [00:00<00:00, 140kB/s]" } }, "bd9250796f574171b657eb6da8880200": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "bda8d508d0a24cdaab5782d2cc1335e8": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "bdde1deb5ae9491eae7b6152c81c059d": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_77770c5f10934573a6fbe934cfb9cb4d", "placeholder": "​", "style": "IPY_MODEL_a6dbc6baa4b44ca0b042c6449959a7f0", "value": "data/validation-00000-of-00001.parquet: 100%" } }, "bf421ed09e4d42c3b906c51f159eaa2c": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "bf5d69a2795144ffb2e2c5a115e1c5b4": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_776f37e27e864e3596640ad6708fe717", "max": 500, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_5f897a4a2d2d4134b182ca12ffedfd41", "value": 500 } }, "c05ce0271f8e4dc7a0315601532ca955": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_e1c8bb5ef082498b8fe0a66130e69035", "placeholder": "​", "style": "IPY_MODEL_481e292b38954268ace143e169dfca74", "value": " 1.92M/1.92M [00:00<00:00, 9.64MB/s]" } }, "c08137d749274ddfa7d16d00038bbdcc": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_72ec2fb877254e0b9bb0b8a636c25187", "placeholder": "​", "style": "IPY_MODEL_f3ee5b5442b447539b1d7a72a9df1b58", "value": "Generating validation split: 100%" } }, "c0bc942b2dec498480f6e19344c4d203": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "c14897b6216b47038f9b1b5bdb941467": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "c21a9c6799f94f3b9400ed220a0fc1e9": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "c28d17bc0e2446dc89081a1a638a2484": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_e6c1913352514eef9cbf15cee827606b", "placeholder": "​", "style": "IPY_MODEL_5dc28d883bd046b7a7cc329b869b329e", "value": "Filter (num_proc=6): 100%" } }, "c313a139e75c4953ab62b75752bcc5d7": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "c377f4bbadda4ca9a50769e7b7b83d1d": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "c5c6d5fe77ae4a118d531152e752a552": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "c6ac84d0c64b4259be243b913caf652c": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "c73de00f6d4f456e8fb28a765df6a1fd": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "c7e6eb783c8f465dba5ffe4912db0735": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_79520fc6e14b4fb7a20f4eca948dede0", "placeholder": "​", "style": "IPY_MODEL_290efeeadcc0488994d0bf7d32f4e57b", "value": " 150/150 [00:00<00:00, 95.55 examples/s]" } }, "c87be66de92644ca993361e6ca7a7cec": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "cb97fe53c8364943b3251e935a6b59f9": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "cc72718e8e344f99839589eec9388dc5": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_383bb49d4cd34c2685a36c0965e9730b", "placeholder": "​", "style": "IPY_MODEL_6e1e9431d2da44648b11d4422814f4de", "value": "tokenizer_config.json: " } }, "ccd9559fb88e4d6ab05f4d4f47a9e364": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_5d6c9aa373cb457b84bf0818e880374f", "placeholder": "​", "style": "IPY_MODEL_048621e84d3a417f803f7a3e944234a6", "value": "special_tokens_map.json: 100%" } }, "cd36d12e348f438e81d1def580ddc3bb": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_1c7903362174485aa575d018201c4352", "max": 150, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_c14897b6216b47038f9b1b5bdb941467", "value": 150 } }, "cdb67ffc2d694e33a6612115a5974d11": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_ae5960c8a5fb4c7c8a75c7bf9a4e6ebf", "IPY_MODEL_bf5d69a2795144ffb2e2c5a115e1c5b4", "IPY_MODEL_5d434b4b5a88449aaa35026f0f2fe772" ], "layout": "IPY_MODEL_6a2234cf25d847d586c0639407cb0422" } }, "ceb840afa0094d96a145df316807a345": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "cee47b7f9a1d4f86a51afedae1cc6185": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "cef92c4d93074e1e9f73c527f0e1b021": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "cff8893cc6d2490cbb1c903f22d85772": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_90cfd352cfce435a9fb4c2ca4506ef81", "max": 1500, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_91e66dab350841299c8785795c380366", "value": 1500 } }, "d08376eb6b62480cb85f4e0b62320210": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_5668a72966b841019572521c201ea4e2", "IPY_MODEL_1ad5f8440a414d3eb18484e567ec57e5", "IPY_MODEL_8946e4ccc6fa4cbc93fff996338aad43" ], "layout": "IPY_MODEL_636f00f102ee4601839ab20f63386777" } }, "d0f184b2c8934ac0830dfeb1963b083a": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_ee900b2750c14293af20f0a47ca57f6c", "max": 80, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_249df56441d74bf4ba35ca0463e8d443", "value": 80 } }, "d11291002423435f9ab639af145e999b": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "d2106145680e4083a0d3efae7309cbb8": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "d2babfe551ed49f9809a535092e078e4": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "d2d2f9d53852463982a293f44dda3572": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_cef92c4d93074e1e9f73c527f0e1b021", "max": 80, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_0f8fc328cf5a4d56b155a64238f1a3e5", "value": 80 } }, "d3e67e65c9b44eadac8364257b7b6a4d": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "d5a7f54aab804d7c998694863e366900": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "d67efe136abc47dcbd9f2f7aea2870b4": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "d82962ea0d704b99a06987a6d58bc36c": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "d8cd88776dd640b8a2790bd8222a32e5": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_5f810f46fc1d4b93a9362bab5e1d02cb", "placeholder": "​", "style": "IPY_MODEL_eab6a31889534b9886ea848e324f1a93", "value": " 261k/261k [00:00<00:00, 1.03MB/s]" } }, "d95d024f4dcb4bc5b0dfa92259ede3e5": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": "20px" } }, "d97b2639afd9447eb61a6983cebe605a": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "d98c35bbd1524d6bb5b3faec9f74de31": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": "20px" } }, "d9bd7bf387b44ed7bd859d415bc2986f": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "d9f6cfc6a3f449b49907ff71ff293141": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "db50c8f9fcd64b1391c751ee7697e23d": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "db75caefb31b4f49876694c98de6a6ad": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "dbbc84a88ec54339aa0b17acaa527221": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_362ca4826fc24755b7898c54334b5f7b", "placeholder": "​", "style": "IPY_MODEL_23ccb3a4752b4bc28c3f312f9537d6a4", "value": " 11.4MB / 11.4MB, 19.0MB/s  " } }, "dd6994f094df444c9c62f84fd2da82af": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "de8e98bcce6a4a32bb344467f5301c16": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "de9c5e0f171e470c983d459e836ea96d": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_c08137d749274ddfa7d16d00038bbdcc", "IPY_MODEL_3a24f03afa3143448425861758e13de2", "IPY_MODEL_8a4eb795873c46188f85230e6a948795" ], "layout": "IPY_MODEL_14a182021a734a6399c7fd5d9da8e9c7" } }, "df691f3fe6d84515aea9eba173c19208": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "e01e04ec36af435fa9af715377355e5a": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_6332e4cac11e4456a57f49757ad7a243", "max": 200, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_c21a9c6799f94f3b9400ed220a0fc1e9", "value": 200 } }, "e0943fee62a64d16803e1ce7a015c06b": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "e18fbe8e72964a569c24722e35b81cb2": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "e1a49fe3dcfe4c518055364a3b9654b1": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "e1c8bb5ef082498b8fe0a66130e69035": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "e28c2ec5beb14108bf9633eb1965d233": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "e2cdbf13de504156ae577dc40cbb48e5": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "e441aedea1414eac9574830ee8425098": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_81abc2746ae8418ba793c0e15783c665", "placeholder": "​", "style": "IPY_MODEL_19a0246152f9400a9bb4362fd5f563fe", "value": "Map: 100%" } }, "e4440093f346491da5d4af23c296c324": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_ee0c45ace98b42a3a5c7d39f997d749d", "placeholder": "​", "style": "IPY_MODEL_047421bbdbf042e3927d810afbb0b565", "value": " 80/80 [00:00<00:00, 45.69 examples/s]" } }, "e67201215c274e8684c1c088bb7edc37": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "e6c1913352514eef9cbf15cee827606b": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "e8069fbac7d04e4093e3f08fdd84b9ff": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "e86a2ac8f7d543b1ae3ecbc2f4e560f7": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_f16acd23373845d3894da4abf9500e0f", "max": 150, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_d2babfe551ed49f9809a535092e078e4", "value": 150 } }, "e91e918d37a14b28beb9e16f012458f5": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_689257af48194add88f3462e44a9c9a7", "placeholder": "​", "style": "IPY_MODEL_b3f3175c19c74344a406aff51a048139", "value": " 14.8MB / 14.8MB, 9.24MB/s  " } }, "eab6a31889534b9886ea848e324f1a93": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "eab8c43144bf40f1925820492473e9d3": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "eb3e7af58dc7441f9befff94cd837496": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_778e34c12b4347d387dc53596a598fe2", "max": 1, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_bda8d508d0a24cdaab5782d2cc1335e8", "value": 1 } }, "ecb17e182dd84febbdcded2879fa80b7": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "ed09000d8a464e21bb0d345c9042ad60": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_823885191d4c472e9f961c11a3c6ffc5", "placeholder": "​", "style": "IPY_MODEL_6eab9db0d1aa4b84b90fc3872e083dc6", "value": "New Data Upload               : " } }, "ed4d26c9971d41ba821bcbf8c876c1cb": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "ee0c45ace98b42a3a5c7d39f997d749d": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "ee43ac368f5a4aa0813035b3d07cc399": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "ee900b2750c14293af20f0a47ca57f6c": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "eef7a636fa3d45b0865133884b93eea9": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "efeab27804f448febcf5335f0be8302d": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "f02d91e96fe84c0781b1c6e17fd537ae": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "f0e4397588a847af90236075a3065ac7": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "f16acd23373845d3894da4abf9500e0f": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "f31c8cc62d4c401d8a865e6caad20c38": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_eef7a636fa3d45b0865133884b93eea9", "max": 613, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_9d9e8a585584449fbc2982735731b96e", "value": 613 } }, "f3ee5b5442b447539b1d7a72a9df1b58": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "f46385b2c5dd46ebae4f130e22bc2b51": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "f50bbeaadfe1453fb7880dc8d725fefb": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "f530e71385fb41fbac41b8ac8c4e6d8e": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_73366bb0f86c4689828558a6db8160c2", "placeholder": "​", "style": "IPY_MODEL_70c43ae789a94fa8b686164510c86176", "value": "Generating reserve split: 100%" } }, "f5fe5f5074154467a6d5101f06b2dfc5": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_bd9250796f574171b657eb6da8880200", "max": 1500, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_a6969e8ebd3d4f2aa1fb6d9153654a28", "value": 1500 } }, "f63a0c3bd30741e389921c5a0c0257b6": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "f7143a33b8ec4638934f319f04daa5fe": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "f74e56c5f86046d8812584b3f4b460ce": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "f803f04e1f0b4c8db5b2a571538790d3": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "f834d546d5634bcabf4776770c6d8871": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_efeab27804f448febcf5335f0be8302d", "placeholder": "​", "style": "IPY_MODEL_c6ac84d0c64b4259be243b913caf652c", "value": "Generating train split: 100%" } }, "f93c3a6553d1414ebc5ff9e5b18fb4dd": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "f9f7b1fc79dc4bee9b6a0a946ff39bb2": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_1056869d6f2048b38e79ab0bdddf0d55", "placeholder": "​", "style": "IPY_MODEL_1c846669e92d4d3a9cd91c408809ba69", "value": " 632/632 [00:00<00:00, 10.3kB/s]" } }, "fa9a37a523ec459e8d02007b55b1ba20": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_df691f3fe6d84515aea9eba173c19208", "max": 632, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_609b59d6e0544e39a92d47ef036baf47", "value": 632 } }, "facd2d2ea3fd48f9a1ac2cc13bef64b8": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "fbdf24206c1f4640be831670f4d29ed0": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_f530e71385fb41fbac41b8ac8c4e6d8e", "IPY_MODEL_e01e04ec36af435fa9af715377355e5a", "IPY_MODEL_4649e83451ae45fc9e47878075e04834" ], "layout": "IPY_MODEL_a9e1f270b5314d4ba6c0417313dbd226" } }, "fc8ba4f1606743dcabc2ee0dd482b704": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_0e00775c7821414fb82084db4c71aff9", "placeholder": "​", "style": "IPY_MODEL_e18fbe8e72964a569c24722e35b81cb2", "value": "Map: 100%" } }, "fcbdd1e084124303be96ca0a89a8e293": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_512998b463a04362a4d618f503ceb95c", "placeholder": "​", "style": "IPY_MODEL_2e7179f8d86740689b94aa8af55f403d", "value": "merges.txt: " } }, "fd41dbbd73c5487d9b0d5e3751385225": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_3f871a98b3214aecb047e164dc4a2a5d", "IPY_MODEL_a419e0561e0f4b3da3f0eb8cb657755f", "IPY_MODEL_87273b19125e42d0ad471db11f600a15" ], "layout": "IPY_MODEL_170a45be12e84118b1499c2d5a6c1b49" } }, "fdd57fafdc3747baa062dfce006addbf": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "fe237eb64d7b4a71bf13753010e77cbb": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "feebd174d6514ce69a24462b8cd314c4": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_3ad89276ef674026baca9d24d1296710", "IPY_MODEL_3d39bd5c62554dc98e37f26209681667", "IPY_MODEL_d8cd88776dd640b8a2790bd8222a32e5" ], "layout": "IPY_MODEL_2a30540f69414facb204ef8a7e6dea4a" } }, "ff0c2a46d55946459f52d2dd09e05674": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "ffbda3ae381149c58b0f4f4ca3aba694": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } } }, "version_major": 2, "version_minor": 0 } } }, "nbformat": 4, "nbformat_minor": 5 }