From 65b6e1cc2c5845e6ed04f66423749d926208f86c Mon Sep 17 00:00:00 2001 From: Sarvesh Date: Tue, 9 Jun 2026 16:00:00 +0530 Subject: [PATCH] Import hf_hub_download and Path in checkpoint download cell --- demo.ipynb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/demo.ipynb b/demo.ipynb index 04d7d59..36f9100 100644 --- a/demo.ipynb +++ b/demo.ipynb @@ -348,6 +348,9 @@ "metadata": {}, "outputs": [], "source": [ + "from pathlib import Path\n", + "from huggingface_hub import hf_hub_download\n", + "\n", "print(\"Downloading 2.2B Video2LoRA Checkpoint from Hugging Face...\")\n", "\n", "checkpoint_dir = Path(\"checkpoints/Video2LoRA-SmolVLM-ckpts\")\n",