Home
last modified time | relevance | path

Searched full:logit (Results 1 – 25 of 175) sorted by relevance

1234567

/aosp_15_r20/external/curl/tests/
H A Dtestcurl.pl209 sub logit($) { subroutine
225 logit "$text";
230 logit "removing the $build dir";
235 logit "removing the $buildlogname file";
238 logit "ENDING HERE"; # last line logged!
333 logit "STARTING HERE"; # first line logged, for scripts to trigger on
334 logit 'TRANSFER CONTROL ==== 1120 CHAR LINE' . $str1066os . 'LINE_END';
335 logit "NAME = $name";
336 logit "EMAIL = $email";
337 logit "DESC = $desc";
[all …]
/aosp_15_r20/external/apache-commons-math/src/main/java/org/apache/commons/math3/analysis/function/
H A DLogit.java32 * <a href="http://en.wikipedia.org/wiki/Logit">
33 * Logit</a> function.
38 public class Logit implements UnivariateDifferentiableFunction, DifferentiableUnivariateFunction { class
45 * Usual logit function, where the lower bound is 0 and the higher
48 public Logit() { in Logit() method in Logit
53 * Logit function.
58 public Logit(double lo, in Logit() method in Logit
80 * the logit function, ordered as follows:
88 * Computes the value of the logit at {@code x}.
101 return Logit.value(x, param[0], param[1]); in value()
[all …]
/aosp_15_r20/external/pytorch/torch/distributions/
H A Dbinomial.py132 # (case logit < 0) = k * logit - n * log1p(e^logit)
133 # (case logit > 0) = k * logit - n * (log(p) - log(1 - p)) + n * log(p)
134 # = k * logit - n * logit - n * log1p(e^-logit)
135 # (merge two cases) = k * logit - n * max(logit, 0) - n * log1p(e^-|logit|)
/aosp_15_r20/external/tflite-support/tensorflow_lite_support/java/src/java/org/tensorflow/lite/task/text/qa/
H A DQaAnswer.java34 public QaAnswer(String text, int start, int end, float logit) { in QaAnswer() argument
35 this(text, new Pos(start, end, logit)); in QaAnswer()
40 * based on logit.
45 public float logit; field in QaAnswer.Pos
47 public Pos(int start, int end, float logit) { in Pos() argument
50 this.logit = logit; in Pos()
55 return Float.compare(other.logit, this.logit); in compareTo()
/aosp_15_r20/external/strace/tests-m32/
H A Dfork-f.c42 #define logit(arg) logit_(prefix arg) macro
49 return logit("exec"); in main()
51 logit("start"); in main()
70 if (logit("child") || execve(args[0], args, args + 1)) in main()
76 logit("parent"); in main()
84 logit("finish"); in main()
H A Dvfork-f.c43 #define logit(arg) logit_(prefix arg) macro
52 return logit("exec"); in main()
55 logit("start"); in main()
79 if (logit("child") || execve(args[0], args, args + 1)) in main()
88 logit("parent"); in main()
96 logit("finish"); in main()
/aosp_15_r20/external/strace/tests/
H A Dfork-f.c42 #define logit(arg) logit_(prefix arg) macro
49 return logit("exec"); in main()
51 logit("start"); in main()
70 if (logit("child") || execve(args[0], args, args + 1)) in main()
76 logit("parent"); in main()
84 logit("finish"); in main()
H A Dvfork-f.c43 #define logit(arg) logit_(prefix arg) macro
52 return logit("exec"); in main()
55 logit("start"); in main()
79 if (logit("child") || execve(args[0], args, args + 1)) in main()
88 logit("parent"); in main()
96 logit("finish"); in main()
/aosp_15_r20/external/strace/tests-mx32/
H A Dfork-f.c42 #define logit(arg) logit_(prefix arg) macro
49 return logit("exec"); in main()
51 logit("start"); in main()
70 if (logit("child") || execve(args[0], args, args + 1)) in main()
76 logit("parent"); in main()
84 logit("finish"); in main()
H A Dvfork-f.c43 #define logit(arg) logit_(prefix arg) macro
52 return logit("exec"); in main()
55 logit("start"); in main()
79 if (logit("child") || execve(args[0], args, args + 1)) in main()
88 logit("parent"); in main()
96 logit("finish"); in main()
/aosp_15_r20/external/tensorflow/tensorflow/core/util/ctc/
H A Dctc_beam_search.h231 const T logit = input(j); in GetTopK() local
232 if (logit > (*top_k_logits)[K - 1]) { in GetTopK()
234 while (k > 0 && logit > (*top_k_logits)[k - 1]) { in GetTopK()
239 (*top_k_logits)[k] = logit; in GetTopK()
243 // Return max value which is in 0th index or blank character logit in GetTopK()
266 // Get normalization term of softmax: log(sum(exp(logit[j]-max_coeff))). in Step()
341 const T logit = top_k ? top_k_logits[ind] : raw_input(ind); in Step() local
346 if (logit < label_selection_input_min) { in Step()
359 c.newp.label = logit - norm_offset + in Step()
/aosp_15_r20/external/tensorflow/tensorflow/lite/kernels/ctc/
H A Dctc_beam_search.h226 const float logit = input(j); in GetTopK() local
227 if (logit > (*top_k_logits)[K - 1]) { in GetTopK()
229 while (k > 0 && logit > (*top_k_logits)[k - 1]) { in GetTopK()
234 (*top_k_logits)[k] = logit; in GetTopK()
238 // Return max value which is in 0th index or blank character logit in GetTopK()
261 // Get normalization term of softmax: log(sum(exp(logit[j]-max_coeff))). in Step()
336 const float logit = top_k ? top_k_logits[ind] : raw_input(ind); in Step() local
341 if (logit < label_selection_input_min) { in Step()
354 c.newp.label = logit - norm_offset + in Step()
/aosp_15_r20/external/tflite-support/tensorflow_lite_support/cc/task/text/qa/
H A Dquestion_answerer.h33 // struct to represent the logit and offset of the answer related to context.
36 : start(arg_start), end(arg_end), logit(arg_logit) {} in Pos()
38 float logit; member
39 bool operator<(const Pos& rhs) const { return rhs.logit < logit; }
/aosp_15_r20/external/tflite-support/tensorflow_lite_support/examples/task/text/desktop/
H A DREADME.md44 logit: 1.84847, start_index: 39, end_index: 40
46 logit: 1.2921, start_index: 34, end_index: 40
48 logit: -0.0959535, start_index: 36, end_index: 40
50 logit: -0.498558, start_index: 28, end_index: 40
52 logit: -0.774266, start_index: 37, end_index: 40
/aosp_15_r20/external/tensorflow/tensorflow/lite/g3doc/inference_with_metadata/task_library/
H A Dbert_question_answerer.md143 logit: 1.84847, start_index: 39, end_index: 40
145 logit: 1.2921, start_index: 34, end_index: 40
147 logit: -0.0959535, start_index: 36, end_index: 40
149 logit: -0.498558, start_index: 28, end_index: 40
151 logit: -0.774266, start_index: 37, end_index: 40
/aosp_15_r20/external/executorch/kernels/test/
H A Dop_logit_test.cpp30 // Common testing for logit operator
38 // Destination for the logit operator. in test_integer_logit_out()
47 // Common testing for logit operator
55 // Destination for the logit operator. in test_integer_logit_out_eps_set()
89 // Destination for the logit operator. in test_integer_logit_out()
/aosp_15_r20/external/tflite-support/tensorflow_lite_support/cc/task/
H A DREADME.md38 std::cout << absl::StrFormat("Text: %s logit=%f start=%d end=%d", item.text,
39 item.pos.logit, item.pos.start, item.pos.end)
43 // Text: 10 July 1856 logit=16.8527 start=17 end=19
51 in the answer, and `item.pos.logit` is the sum of span logits to represent the
/aosp_15_r20/external/pytorch/torch/_refs/special/
H A D__init__.py36 "logit",
129 @register_decomposition(aten.logit)
135 def logit(self: TensorLikeType, eps: Optional[float] = None) -> TensorLikeType: function
/aosp_15_r20/external/executorch/examples/qualcomm/oss_scripts/llama2/runner/
H A Drunner.h133 InfoAttrs logit; member
142 &logit,
164 DEFINE_IOMEMMGR_ACCESSOR(logit);
/aosp_15_r20/external/pytorch/torch/csrc/jit/runtime/static/
H A Dte_wrapper.cpp19 // they are vectorized by twice this constant. An exception is logit, since it
159 auto wrap = lookupNNCCache(aten::logit); in createLogit()
179 updateNNCCache(aten::logit, wrap); in createLogit()
/aosp_15_r20/external/tensorflow/tensorflow/lite/kernels/
H A Drandom_ops.cc124 // Compute the maximum logit. in GenerateMultinomialNumbers()
135 // subtract the maximum logit. Though you can subtract any value without in GenerateMultinomialNumbers()
136 // changing the output, we use the maximum logit for convenience. in GenerateMultinomialNumbers()
/aosp_15_r20/external/executorch/kernels/portable/cpu/
H A Dop_logit.cpp38 ET_SWITCH_REAL_TYPES_AND(Bool, in_type, ctx, "logit.out", CTYPE_IN, [&] { in logit_out()
39 ET_SWITCH_FLOAT_TYPES(out_type, ctx, "logit.out", CTYPE_OUT, [&] { in logit_out()
/aosp_15_r20/external/tensorflow/tensorflow/python/training/
H A Dsaver_test.py2210 # Runs to logit.
2469 logit = nn_ops.relu(
2471 nn_ops.softmax(logit, name="prediction")
2473 labels=label, logits=logit, name="cost")
2542 logit = nn_ops.relu(
2544 nn_ops.softmax(logit, name="prediction")
2546 labels=label, logits=logit, name="cost")
2574 logit = nn_ops.relu(math_ops.matmul(image, weights) + bias)
2575 nn_ops.softmax(logit, name="prediction")
2577 logits=logit)
[all …]
/aosp_15_r20/external/executorch/examples/models/llama3_2_vision/runner/
H A Dgeneration.py67 # Only need the last logit.
88 # Only need the last logit.
/aosp_15_r20/external/tflite-support/tensorflow_lite_support/ios/task/text/qa/Sources/
H A DTFLBertQuestionAnswerer.h19 * Struct to represent the logit and offset of the answer related to context.
24 float logit; member

1234567