Skip to content

Commit

Permalink
attempt to fix ipynb rendering issue
Browse files Browse the repository at this point in the history
  • Loading branch information
subramen committed Nov 13, 2024
1 parent 60f7f45 commit 4bca48c
Showing 1 changed file with 3 additions and 18 deletions.
21 changes: 3 additions & 18 deletions recipes/use_cases/github_triage/walkthrough.ipynb
Original file line number Diff line number Diff line change
@@ -1,15 +1,5 @@
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"%load_ext autoreload\n",
"%autoreload 2"
]
},
{
"cell_type": "markdown",
"metadata": {},
Expand All @@ -29,13 +19,13 @@
]
},
{
"cell_type": "code",
"execution_count": null,
"cell_type": "markdown",
"metadata": {},
"outputs": [],
"source": [
"!git clone https://github.com/meta-llama/llama-recipes\n",
"\n",
"%cd recipes/use_cases/github_triage\n",
"\n",
"!pip install -r requirements.txt"
]
},
Expand Down Expand Up @@ -355,7 +345,6 @@
}
],
"source": [
"\n",
"print(f\"Additional metadata generated by LLM: {set(annotated_issues.columns).difference(set(issues_df.columns))}\\n\\n\")\n",
"print(f\"[Showing 5 out of {annotated_issues.shape[0]} rows]\\n\")\n",
"print(annotated_issues.head())\n"
Expand Down Expand Up @@ -413,8 +402,6 @@
}
],
"source": [
"\n",
"\n",
"# Generate high-level analysis\n",
"challenges, overview = generate_executive_reports(annotated_issues, theme_counts, repo_name, start_date, end_date)\n",
"# Validate and save generated data\n",
Expand Down Expand Up @@ -586,8 +573,6 @@
}
],
"source": [
"\n",
"\n",
"# Create graphs and charts\n",
"plot_folder = out_folder + \"/plots\"\n",
"os.makedirs(plot_folder, exist_ok=True)\n",
Expand Down

0 comments on commit 4bca48c

Please sign in to comment.