Browse Source

Updated quickstart notebook to use llama_recipes package

Matthias Reso 1 year ago
parent
commit
8077a08d78
1 changed files with 2 additions and 5 deletions
  1. 2 5
      examples/quickstart.ipynb

+ 2 - 5
examples/quickstart.ipynb

@@ -130,11 +130,8 @@
     }
    ],
    "source": [
-    "from pathlib import Path\n",
-    "import os\n",
-    "import sys\n",
-    "from utils.dataset_utils import get_preprocessed_dataset\n",
-    "from configs.datasets import samsum_dataset\n",
+    "from llama_recipes.utils.dataset_utils import get_preprocessed_dataset\n",
+    "from llama_recipes.configs.datasets import samsum_dataset\n",
     "\n",
     "train_dataset = get_preprocessed_dataset(tokenizer, samsum_dataset, 'train')"
    ]