Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
scikit-learn
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Ian Johnson
scikit-learn
Commits
63c94aaf
Commit
63c94aaf
authored
13 years ago
by
Robert Layton
Browse files
Options
Downloads
Patches
Plain Diff
Fixed merge conflict
parent
0c47a521
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
scikits/learn/metrics/__init__.py
+0
-20
0 additions, 20 deletions
scikits/learn/metrics/__init__.py
with
0 additions
and
20 deletions
scikits/learn/metrics/__init__.py
+
0
−
20
View file @
63c94aaf
<<<<<<<
HEAD
"""
Metrics module with score functions, performance metrics and
pairwise metrics or distances computation
"""
from
.metrics
import
confusion_matrix
,
roc_curve
,
auc
,
precision_score
,
\
recall_score
,
fbeta_score
,
f1_score
,
zero_one_score
,
\
precision_recall_fscore_support
,
classification_report
,
\
precision_recall_curve
,
explained_variance_score
,
r2_score
,
\
zero_one
,
mean_square_error
,
hinge_loss
from
.cluster
import
homogeneity_completeness_v_measure
from
.cluster
import
homogeneity_score
from
.cluster
import
completeness_score
from
.cluster
import
v_measure_score
from
.
import
pairwise
from
.pairwise
import
euclidean_distances
,
pairwise_distances
|||||||
merged
common
ancestors
"""
Metrics module with score functions, performance metrics and
pairwise metrics or distances computation
...
...
@@ -32,8 +14,6 @@ from .cluster import homogeneity_score
from
.cluster
import
completeness_score
from
.cluster
import
v_measure_score
from
.pairwise
import
euclidean_distances
,
pairwise_distances
=======
import
warnings
warnings
.
warn
(
'
scikits.learn is deprecated, please use sklearn
'
)
from
sklearn.metrics
import
*
>>>>>>>
master
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