Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
IDS PSE
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Daniel Yang
IDS PSE
Commits
649975f0
Commit
649975f0
authored
2 weeks ago
by
Daniel Yang
Browse files
Options
Downloads
Patches
Plain Diff
refactored code
parent
6f14d717
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
code/machine_learning_models/utilities.py
+4
-3
4 additions, 3 deletions
code/machine_learning_models/utilities.py
with
4 additions
and
3 deletions
code/machine_learning_models/utilities.py
+
4
−
3
View file @
649975f0
...
...
@@ -12,7 +12,7 @@ show_plots = False
# Plots
def
heat_map
(
df
,
model_name
=
None
):
def
heat_map
(
df
:
pd
.
DataFrame
,
model_name
=
None
):
"""
Generates a heatmap of the correlation matrix for numerical features in the DataFrame.
...
...
@@ -39,7 +39,7 @@ def plot_counts(model_name=None):
if
show_plots
:
plt
.
show
()
def
plot_xy
(
df
,
x
,
y
,
model_name
=
None
):
def
plot_xy
(
df
:
pd
.
DataFrame
,
x
,
y
,
model_name
=
None
):
"""
Creates a scatter plot for two numerical columns.
...
...
@@ -113,8 +113,9 @@ def plot_precision_recall_curve(precision, recall, model_name=None):
A good curve is mostly at the top and right.
"""
prc_auc
=
auc
(
recall
,
precision
)
plt
.
figure
(
figsize
=
(
8
,
6
))
plt
.
plot
(
recall
,
precision
,
marker
=
'
.
'
,
l
abel
=
"
Precision
-
Recall Curve
"
)
plt
.
plot
(
recall
,
precision
,
color
=
'
darkorange
'
,
marker
=
'
.
'
,
l
w
=
2
,
label
=
f
"
Precision
Recall Curve
(area =
{
prc_auc
:
.
2
f
}
)
"
)
plt
.
xlabel
(
"
Recall
"
)
plt
.
ylabel
(
"
Precision
"
)
plt
.
title
(
"
Precision-Recall Curve
"
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment