Skip to content

Commit

Permalink
Perform linting
Browse files Browse the repository at this point in the history
  • Loading branch information
memgonzales committed Dec 2, 2024
1 parent 3e8a825 commit f7800d9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion experiments/6.2. Plotting - PR Curve - Weighted.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -770,7 +770,9 @@
" ax.text(x + 0.1, y, i * 10, fontsize=7)\n",
" elif SIMILARITY == 60:\n",
" if idx not in [2]:\n",
" for i, (x, y) in enumerate(zip(results_recall[idx], results_precision[idx])):\n",
" for i, (x, y) in enumerate(\n",
" zip(results_recall[idx], results_precision[idx])\n",
" ):\n",
" ax.text(x + 0.1, y, i * 10, fontsize=7)\n",
" else:\n",
" for i, (x, y) in enumerate(zip(results_recall[idx], results_precision[idx])):\n",
Expand Down

0 comments on commit f7800d9

Please sign in to comment.