Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1628)

Unified Diff: appengine/findit/crash/predator.py

Issue 2649503002: [Predator] Switch from scorer-based classifier to loglinear classifier. (Closed)
Patch Set: Fix nits. Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « appengine/findit/crash/occurrence.py ('k') | appengine/findit/crash/project_classifier.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/findit/crash/predator.py
diff --git a/appengine/findit/crash/predator.py b/appengine/findit/crash/predator.py
index 37693594fe0c7634f1df1be198a0f8c28867223f..e671b28551f2ee1ecda5632a6546f88a331d2959 100644
--- a/appengine/findit/crash/predator.py
+++ b/appengine/findit/crash/predator.py
@@ -20,12 +20,12 @@ class Predator(object): # pragma: no cover
assert suspected_cls is not None
suspected_project = (
- self.project_classifier.ClassifySuspects(suspected_cls) or
+ self.project_classifier.ClassifySuspects(suspected_cls) or
self.project_classifier.ClassifyCallStack(
report.stacktrace.crash_stack))
suspected_components = (
- self.component_classifier.ClassifySuspects(suspected_cls) or
+ self.component_classifier.ClassifySuspects(suspected_cls) or
self.component_classifier.ClassifyCallStack(
report.stacktrace.crash_stack))
« no previous file with comments | « appengine/findit/crash/occurrence.py ('k') | appengine/findit/crash/project_classifier.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698