Skip to content

Commit

Permalink
Merge pull request #109 from SmashingBumpkin/main
Browse files Browse the repository at this point in the history
Correct parsing errors on slide 10
  • Loading branch information
iacopomasi authored May 31, 2024
2 parents a9f3e01 + a19fbfb commit 6206c1b
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1967,8 +1967,8 @@
"source": [
"# Precision, Recall, F-Measure\n",
"\n",
"$$ \\text{precision} = \\frac{tp}{tp + fp}$$<br/><br/>\n",
"$$ \\text{recall} = \\frac{tp}{tp + fn} $$ <br/><br/>\n",
"$$ \\text{precision} = \\frac{tp}{tp + fp}$$\n",
"$$ \\text{recall} = \\frac{tp}{tp + fn} $$\n",
"$$F_\\beta = (1 + \\beta^2) \\frac{\\text{precision} \\times \\text{recall}}{\\beta^2 \\text{precision} + \\text{recall}} $$"
]
},
Expand All @@ -1982,8 +1982,8 @@
"source": [
"# True Positive Rate, False Positive Rate\n",
"\n",
"$$ \\text{TPR} = \\frac{tp}{P_{gt}}$$<br/><br/>\n",
"$$ \\text{FPR} = \\frac{fp}{N_{gt}} $$ <br/><br/>"
"$$ \\text{TPR} = \\frac{tp}{P_{gt}}$$\n",
"$$ \\text{FPR} = \\frac{fp}{N_{gt}} $$"
]
},
{
Expand Down

0 comments on commit 6206c1b

Please sign in to comment.