Skip to content

Commit 6eb704d

Browse files
authored
Fix syntax error in ROC graph plotting
1 parent c43641a commit 6eb704d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

paper.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ classifier = OneVsRestClassifier(
244244
y_score = classifier.fit(X_train, y_train).predict_proba(X_test)
245245

246246
# Plot ROC graphs
247-
return metric_graph(
247+
metric_graph(
248248
y_test, y_score, "roc", class_names_list=iris.target_names
249249
)
250250
```

0 commit comments

Comments
 (0)