HomeSort by relevance Sort by last modified time
    Searched refs:test_values (Results 1 - 25 of 119) sorted by null

1 2 3 4 5

  /external/tensorflow/tensorflow/python/keras/_impl/keras/
activations_test.py 51 test_values = np.random.random((2, 5))
53 result = f([test_values])[0]
54 expected = _ref_softmax(test_values[0])
65 test_values = np.random.random((2, 2, 3)) * 10
66 result = f([test_values])[0]
67 expected = _ref_softmax(test_values[0, 0])
93 test_values = np.random.random((2, 5))
94 result = f([test_values])[0]
95 expected = softplus(test_values)
105 test_values = np.random.random((2, 5)
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/DDM/
DDMTest.java 67 private CommandPacket makeCommand(int type, byte[] test_values) {
72 packet.setNextValueAsInt(test_values.length);
73 for (byte b : test_values) {
79 private CommandPacket makeCommand(byte[] test_values) {
80 return makeCommand(DDMDebuggee.DDM_TEST_TYPE, test_values);
94 byte[] test_values = new byte[128];
96 r.nextBytes(test_values);
97 CommandPacket packet = makeCommand(test_values);
100 byte[] expected = DDMDebuggee.calculateExpectedResult(test_values);
120 CommandPacket packet = makeCommand(test_values);
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/annotation/tests/java/lang/annotation/
RetentionPolicyTest.java 54 public void test_values() throws Exception { method in class:RetentionPolicyTest
ElementTypeTest.java 59 public void test_values() throws Exception { method in class:ElementTypeTest
  /libcore/luni/src/test/java/libcore/java/net/
OldAuthenticatorRequestorTypeTest.java 36 public void test_values () { method in class:OldAuthenticatorRequestorTypeTest
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/utilities/tuple/tuple.apply/
arg_type.pass.cpp 39 void test_values() function
170 test_values<std::tuple<int, int>>();
171 test_values<std::pair<int, int>>();
172 test_values<std::array<int, 2>>();
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_xpickle.py 137 test_values = [0.0, 7e-308, 6.626e-34, 0.1, 0.5,
139 test_proto0_values = test_values + [-x for x in test_values]
140 test_values = test_proto0_values + for_bin_protos + neg_for_bin_protos
148 for value in test_values:
test_cmath.py 59 self.test_values = open(test_file)
62 self.test_values.close()
239 # test_values in (0, 1)
240 test_values = [0.01, 0.1, 0.2, 0.5, 0.9, 0.99]
242 # test_values for functions defined on [-1., 1.]
243 unit_interval = test_values + [-x for x in test_values] + \
246 # test_values for log, log10, sqrt
247 positive = test_values + [1.] + [1./x for x in test_values]
    [all...]
  /external/python/cpython2/Lib/test/
test_xpickle.py 137 test_values = [0.0, 7e-308, 6.626e-34, 0.1, 0.5,
139 test_proto0_values = test_values + [-x for x in test_values]
140 test_values = test_proto0_values + for_bin_protos + neg_for_bin_protos
148 for value in test_values:
test_cmath.py 59 self.test_values = open(test_file)
62 self.test_values.close()
239 # test_values in (0, 1)
240 test_values = [0.01, 0.1, 0.2, 0.5, 0.9, 0.99]
242 # test_values for functions defined on [-1., 1.]
243 unit_interval = test_values + [-x for x in test_values] + \
246 # test_values for log, log10, sqrt
247 positive = test_values + [1.] + [1./x for x in test_values]
    [all...]
  /external/python/cpython3/Lib/test/
test_numeric_tower.py 91 test_values = [0.0, -0.0, 1.0, -1.0, 0.40625, -5136.5,
95 for value in test_values:
150 test_values = [
170 for i, first in enumerate(test_values):
171 for second in test_values[i+1:]:
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_xpickle.py 137 test_values = [0.0, 7e-308, 6.626e-34, 0.1, 0.5,
139 test_proto0_values = test_values + [-x for x in test_values]
140 test_values = test_proto0_values + for_bin_protos + neg_for_bin_protos
148 for value in test_values:
test_cmath.py 59 self.test_values = open(test_file)
62 self.test_values.close()
239 # test_values in (0, 1)
240 test_values = [0.01, 0.1, 0.2, 0.5, 0.9, 0.99]
242 # test_values for functions defined on [-1., 1.]
243 unit_interval = test_values + [-x for x in test_values] + \
246 # test_values for log, log10, sqrt
247 positive = test_values + [1.] + [1./x for x in test_values]
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_xpickle.py 137 test_values = [0.0, 7e-308, 6.626e-34, 0.1, 0.5,
139 test_proto0_values = test_values + [-x for x in test_values]
140 test_values = test_proto0_values + for_bin_protos + neg_for_bin_protos
148 for value in test_values:
test_cmath.py 59 self.test_values = open(test_file)
62 self.test_values.close()
239 # test_values in (0, 1)
240 test_values = [0.01, 0.1, 0.2, 0.5, 0.9, 0.99]
242 # test_values for functions defined on [-1., 1.]
243 unit_interval = test_values + [-x for x in test_values] + \
246 # test_values for log, log10, sqrt
247 positive = test_values + [1.] + [1./x for x in test_values]
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_xpickle.py 137 test_values = [0.0, 7e-308, 6.626e-34, 0.1, 0.5,
139 test_proto0_values = test_values + [-x for x in test_values]
140 test_values = test_proto0_values + for_bin_protos + neg_for_bin_protos
148 for value in test_values:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_xpickle.py 137 test_values = [0.0, 7e-308, 6.626e-34, 0.1, 0.5,
139 test_proto0_values = test_values + [-x for x in test_values]
140 test_values = test_proto0_values + for_bin_protos + neg_for_bin_protos
148 for value in test_values:
  /libcore/luni/src/test/java/libcore/java/lang/
OldThreadStateTest.java 46 public void test_values() { method in class:OldThreadStateTest
  /libcore/ojluni/src/test/java/time/tck/java/time/chrono/
TCKHijrahEra.java 98 public void test_values() { method in class:TCKHijrahEra
TCKIsoEra.java 97 public void test_values() { method in class:TCKIsoEra
TCKMinguoEra.java 102 public void test_values() { method in class:TCKMinguoEra
TCKThaiBuddhistEra.java 101 public void test_values() { method in class:TCKThaiBuddhistEra
TCKJapaneseEra.java 98 public void test_values() { method in class:TCKJapaneseEra
  /external/libmicrohttpd/src/testcurl/
test_urlparse.c 71 test_values (void *cls, function
111 &test_values,
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
Provider2Test.java 111 public void test_values() { method in class:Provider2Test

Completed in 597 milliseconds

1 2 3 4 5