Skip to content

Commit 29b426d

Browse files
committed
Update notebook to use non-LFS airline dataset from repo root
1 parent 6cd7218 commit 29b426d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

starter_notebook.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
"execution_count": null,
6565
"metadata": {},
6666
"outputs": [],
67-
"source": "# Load the JSONL data\n# Download the demo dataset (Git LFS file):\n# Option 1: Use curl to follow redirects\n# !curl -L https://media.githubusercontent.com/media/lisabdunlap/StringSight/main/data/taubench/airline_data_demo.jsonl -o airline_data_demo.jsonl\n\n# Option 2: Clone the repo with git lfs\n# !git clone https://github.com/lisabdunlap/StringSight.git\n# Then use: data_path = \"StringSight/data/taubench/airline_data_demo.jsonl\"\n\ndata_path = \"airline_data_demo.jsonl\" # or use your own dataset path\ndf = pd.read_json(data_path, lines=True)\n\nprint(f\"Loaded {len(df)} conversations\")\nprint(f\"\\nColumns: {df.columns.tolist()}\")\ndf.head()"
67+
"source": "# Load the JSONL data\n# Download the demo dataset:\n# !wget https://raw.githubusercontent.com/lisabdunlap/StringSight/main/airline_data_demo.jsonl\n\ndata_path = \"airline_data_demo.jsonl\" # or use your own dataset path\ndf = pd.read_json(data_path, lines=True)\n\nprint(f\"Loaded {len(df)} conversations\")\nprint(f\"\\nColumns: {df.columns.tolist()}\")\ndf.head()"
6868
},
6969
{
7070
"cell_type": "markdown",

0 commit comments

Comments
 (0)