HomeSort by relevance Sort by last modified time
    Searched refs:change_points (Results 1 - 6 of 6) sorted by null

  /external/chromium-trace/catapult/dashboard/dashboard/
find_change_points_exp.py 47 change_points = find_change_points_func(series, **config)
49 return _RemoveKnownAnomalies(test, change_points)
59 def _RemoveKnownAnomalies(test, change_points):
65 change_points: A list of find_change_points.ChangePoint objects. It is
73 change_points = [c for c in change_points
76 if change_points:
79 test.last_alerted_revision = change_points[-1].x_value
81 return change_points
debug_alert.py 64 change_points = SimulateAlertProcessing(chart_series, **config_dict)
65 anomaly_indexes = [c.x_value for c in change_points]
67 anomaly_segments = _AnomalySegmentSeries(change_points)
82 'anomalies': json.dumps([c.AsDict() for c in change_points]),
151 change_points = find_change_points.FindChangePoints(series, **config_dict)
152 change_points = [c for c in change_points if c.x_value > highest_x]
153 if change_points:
154 highest_x = max(c.x_value for c in change_points)
155 all_change_points.extend(change_points)
    [all...]
find_change_points_exp_test.py 50 change_points = [find_change_points.MakeChangePoint(series, i)
52 filtered = find_change_points_exp._RemoveKnownAnomalies(test, change_points)
54 self.assertEqual(change_points[2:], filtered)
find_anomalies.py 60 change_points = FindChangePointsForTest(rows, config)
61 change_points = _FilterAnomaliesFoundInRef(change_points, test_key, len(rows))
63 anomalies = [_MakeAnomalyEntity(c, test, rows) for c in change_points]
124 def _FilterAnomaliesFoundInRef(change_points, test_key, num_rows):
136 change_points: ChangePoint objects returned by FindChangePoints.
142 A copy of |change_points| possibly with some entries filtered out.
143 Any entries in |change_points| whose end revision matches that of
149 return change_points[:]
155 return change_points[:
    [all...]
bench_find_anomalies.py 158 change_points = find_change_points_func(test, data_series[0:i])
159 change_points = [c for c in change_points if _IsRegression(c, test)]
160 all_change_points.extend(change_points)
508 change_points = debug_alert.SimulateAlertProcessing(
513 for change_point in change_points if _IsRegression(change_point, test)]
auto_triage.py 211 change_points = find_anomalies.FindChangePointsForTest(rows, config)
214 for change in change_points:

Completed in 185 milliseconds