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

  /external/chromium-trace/catapult/dashboard/dashboard/
find_change_points_test.py 7 from dashboard import find_change_points namespace
19 find_change_points.ChangePoint(
33 actual = find_change_points.FindChangePoints(
45 self.assertEqual([], find_change_points.FindChangePoints([]))
49 self.assertEqual(3, find_change_points._FindSplit([3, 2, 3, 5, 6, 5]))
53 self.assertEqual(2, find_change_points._FindSplit([2, 2, 4, 4, 6, 6]))
54 self.assertEqual(1, find_change_points._FindSplit([4, 4, 4, 4, 4, 4]))
62 return find_change_points._PassesThresholds(
113 self.assertEqual([0, 0, 1], find_change_points._ZeroMedian([1, 1, 2]))
114 self.assertEqual([-0.5, 0.5], find_change_points._ZeroMedian([45, 46])
    [all...]
find_change_points_exp.py 7 from dashboard import find_change_points namespace
12 test, series, find_change_points_func=find_change_points.FindChangePoints,
27 find_change_points.FindChangePoints.
65 change_points: A list of find_change_points.ChangePoint objects. It is
find_change_points_exp_test.py 7 from dashboard import find_change_points namespace
50 change_points = [find_change_points.MakeChangePoint(series, i)
find_anomalies_test.py 11 from dashboard import find_change_points namespace
44 """Makes a sample find_change_points.ChangePoint for use in these tests."""
47 return find_change_points.ChangePoint(
118 find_anomalies.find_change_points, 'FindChangePoints',
193 find_anomalies.find_change_points, 'FindChangePoints',
219 find_anomalies.find_change_points, 'FindChangePoints',
240 find_anomalies.find_change_points, 'FindChangePoints',
debug_alert.py 12 from dashboard import find_change_points namespace
140 A list of find_change_points.ChangePoint objects, one for each alert found.
151 change_points = find_change_points.FindChangePoints(series, **config_dict)
163 change_points: A list of find_change_points.ChangePoint objects.
find_anomalies.py 17 from dashboard import find_change_points namespace
187 change_point: A find_change_points.ChangePoint object to check.
188 ref_change_points: List of find_change_points.ChangePoint objects
229 change_point: A find_change_points.ChangePoint object.
266 A list of find_change_points.ChangePoint objects.
269 return find_change_points.FindChangePoints(data_series, **config_dict)
bench_find_anomalies.py 8 the current find_change_points (base) by running simulations and comparing the
14 2. Add an implementation of find_change_points that takes
16 find_change_points.ChangePoint entities.
35 find_change_points algorithm did not find.
50 from dashboard import find_change_points namespace
87 # 250 rows takes about 5 minutes to run find_change_points per task queue task.
211 change_point = find_change_points.ChangePoint(*change_point_as_list)
316 """Runs the experimental find_change_points on each TestBench entity.
380 Requires an implementation of find_change_points added to
479 'min_segment_size', find_change_points.MIN_SEGMENT_SIZE
    [all...]

Completed in 92 milliseconds