Home
last modified time | relevance | path

Searched refs:observed (Results 1 – 25 of 144) sorted by relevance

123456

/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/inference/
DChiSquareTestImpl.java66 public double chiSquare(double[] expected, long[] observed) in chiSquare() argument
72 if (expected.length != observed.length) { in chiSquare()
74 LocalizedFormats.DIMENSIONS_MISMATCH_SIMPLE, expected.length, observed.length); in chiSquare()
77 checkNonNegative(observed); in chiSquare()
80 for (int i = 0; i < observed.length; i++) { in chiSquare()
82 sumObserved += observed[i]; in chiSquare()
91 for (int i = 0; i < observed.length; i++) { in chiSquare()
93 final double dev = observed[i] - ratio * expected[i]; in chiSquare()
96 final double dev = observed[i] - expected[i]; in chiSquare()
115 public double chiSquareTest(double[] expected, long[] observed) in chiSquareTest() argument
[all …]
DTestUtils.java226 public static double t(double mu, double[] observed) in t() argument
228 return tTest.t(mu, observed); in t()
326 public static double chiSquare(double[] expected, long[] observed) in chiSquare() argument
328 return chiSquareTest.chiSquare(expected, observed); in chiSquare()
342 public static boolean chiSquareTest(double[] expected, long[] observed, in chiSquareTest() argument
345 return chiSquareTest.chiSquareTest(expected, observed, alpha); in chiSquareTest()
351 public static double chiSquareTest(double[] expected, long[] observed) in chiSquareTest() argument
353 return chiSquareTest.chiSquareTest(expected, observed); in chiSquareTest()
DChiSquareTest.java54 double chiSquare(double[] expected, long[] observed) in chiSquare() argument
86 double chiSquareTest(double[] expected, long[] observed) in chiSquareTest() argument
121 boolean chiSquareTest(double[] expected, long[] observed, double alpha) in chiSquareTest() argument
DTTestImpl.java188 public double t(double mu, double[] observed) in t() argument
190 checkSampleData(observed); in t()
191 return t(StatUtils.mean(observed), mu, StatUtils.variance(observed), in t()
192 observed.length); in t()
DTTest.java157 double t(double mu, double[] observed) in t() argument
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/fitting/
DCurveFitter.java92 public void addObservedPoint(WeightedObservedPoint observed) { in addObservedPoint() argument
93 observations.add(observed); in addObservedPoint()
171 for (WeightedObservedPoint observed : observations) { in jacobian()
172 jacobian[i++] = f.gradient(observed.getX(), point); in jacobian()
187 for (WeightedObservedPoint observed : observations) { in value()
188 values[i++] = f.value(observed.getX(), point); in value()
/external/tensorflow/tensorflow/contrib/timeseries/examples/
Dpredict_test.py35 (times, observed, all_times, mean, upper_limit, lower_limit
41 self.assertAllEqual([500], observed.shape)
48 (times, observed, all_times, mean,
50 self.assertAllEqual(times.shape, observed.shape)
Dknown_anomaly_test.py29 (times, observed, all_times, mean, upper_limit, lower_limit,
38 self.assertAllEqual(times.shape, observed.shape)
41 (times, observed, all_times, mean, upper_limit, lower_limit,
48 self.assertAllEqual([200], observed.shape)
Dpredict.py91 observed = evaluation["observed"][0, :, 0]
99 return times, observed, all_times, mean, upper_limit, lower_limit
102 def make_plot(name, training_times, observed, all_times, mean, argument
106 pyplot.plot(training_times, observed, "b", label="training series")
Dknown_anomaly.py128 observed = evaluation["observed"][0, :, 0]
144 return (times, observed, all_times, mean, upper_limit, lower_limit,
148 def make_plot(name, training_times, observed, all_times, mean, argument
152 pyplot.plot(training_times, observed, "b", label="training series")
Dlstm.py234 observed = evaluation["observed"][0, :, :]
276 return times, observed, all_times, predicted_mean
/external/libchrome/base/files/
Dfile_path_unittest.cc147 FilePath observed = input.DirName(); in TEST_F() local
148 EXPECT_EQ(FilePath::StringType(cases[i].expected), observed.value()) << in TEST_F()
234 FilePath observed = input.BaseName(); in TEST_F() local
235 EXPECT_EQ(FilePath::StringType(cases[i].expected), observed.value()) << in TEST_F()
391 FilePath observed = input.StripTrailingSeparators(); in TEST_F() local
392 EXPECT_EQ(FilePath::StringType(cases[i].expected), observed.value()) << in TEST_F()
459 bool observed = input.IsAbsolute(); in TEST_F() local
460 EXPECT_EQ(cases[i].expected, observed) << in TEST_F()
508 FilePath::StringType observed; in TEST_F() local
510 observed.append(FILE_PATH_LITERAL("|"), 1); in TEST_F()
[all …]
/external/guava/guava-tests/test/com/google/common/util/concurrent/
DStripedTest.java171 Set<Object> observed = Sets.newIdentityHashSet(); // for the sake of weakly referenced locks. in assertBasicInvariants() local
177 observed.add(object); in assertBasicInvariants()
179 assertTrue("All stripes observed", observed.size() == striped.size()); in assertBasicInvariants()
183 assertTrue(observed.contains(striped.get(new Object()))); in assertBasicInvariants()
/external/grpc-grpc-java/context/src/test/java/io/grpc/
DContextTest.java82 private Context observed; field in ContextTest
86 observed = Context.current();
274 private final AtomicReference<Context> observed; in notifyListenersOnCancel() field in ContextTest.SetContextCancellationListener
276 public SetContextCancellationListener(AtomicReference<Context> observed) { in notifyListenersOnCancel() argument
277 this.observed = observed; in notifyListenersOnCancel()
282 observed.set(context); in notifyListenersOnCancel()
459 assertSame(base, observed); in testWrapRunnable()
463 assertSame(current, observed); in testWrapRunnable()
499 assertSame(base, observed); in testWrapCallable()
503 assertSame(current, observed); in testWrapCallable()
[all …]
/external/okhttp/okhttp-hpacktests/src/test/java/com/squareup/okhttp/internal/spdy/
DHpackDecodeTestBase.java85 String message, List<Header> expected, List<Header> observed) { in assertSetEquals() argument
86 assertEquals(message, new LinkedHashSet<>(expected), new LinkedHashSet<>(observed)); in assertSetEquals()
/external/python/cpython3/Lib/test/
Dtest_shlex.py246 observed = []
255 observed.append((t, tt))
256 self.assertEqual(observed, expected)
/external/icu/icu4c/source/data/translit/
Des_FONIPA_zh.txt40 # it was <u> plus <ai>. This is not borne out by the observed data, which
79 bwin } $not_vowel → 布因 ; # Nonstandard, but fits observed data.
180 gwan } [$] → 古安 ; # Nonstandard, but fits observed data.
296 mwin } $not_vowel → 穆因 ; # Nonstandard, but fits observed data.
427 # entirely from the observed data. They apply mostly to native toponyms
/external/nos/test/system-test-harness/src/
Dfaceauth_tests.cc288 const fa_result_t observed = in IsProfileLocked() local
291 MakeResult(session_id, FACEAUTH_SUCCESS, 0, observed.output.data.second); in IsProfileLocked()
292 EXPECT_RESULT_EQ(expected, observed); in IsProfileLocked()
293 return observed.output.data.second; in IsProfileLocked()
/external/autotest/client/site_tests/network_DhcpFQDN/
Dcontrol12 accepted. It was observed that this caused a crash in dhcpcd in some
/external/tensorflow/tensorflow/python/framework/
Dop_def_library.py485 observed = ", ".join(observed_types)
489 (input_name, op_type_name, observed))
540 observed = ops.internal_convert_to_tensor(
547 (input_name, op_type_name, observed))
/external/cros/system_api/dbus/power_manager/
Dpolicy.proto110 // activity is observed for |idle_ms|.
136 // observed while the screen is dimmed or soon after it is turned off.
145 // has been observed. After activity is seen, the inactivity timeout
/external/autotest/client/tests/tsc/src/
DREADME10 report the observed difference in TSC values between each pair of CPUs.
/external/autotest/client/site_tests/video_VideoDecodeAccelerator/
Dcontrol.vp9_229 # The FPS expectations here are lower than observed in most runs to keep
Dcontrol.vp929 # The FPS expectations here are lower than observed in most runs to keep
Dcontrol.h26430 # The FPS expectations here are lower than observed in most runs to keep

123456