Searched refs:eval_type (Results 1 – 10 of 10) sorted by relevance
/third_party/boost/boost/math/distributions/ |
D | non_central_chi_squared.hpp | 699 typedef typename policies::evaluation<RealType, Policy>::type eval_type; in find_degrees_of_freedom() typedef 706 eval_type result = detail::find_degrees_of_freedom( in find_degrees_of_freedom() 707 static_cast<eval_type>(lam), in find_degrees_of_freedom() 708 static_cast<eval_type>(x), in find_degrees_of_freedom() 709 static_cast<eval_type>(p), in find_degrees_of_freedom() 710 static_cast<eval_type>(1-p), in find_degrees_of_freedom() 720 typedef typename policies::evaluation<RealType, Policy>::type eval_type; in find_degrees_of_freedom() typedef 727 eval_type result = detail::find_degrees_of_freedom( in find_degrees_of_freedom() 728 static_cast<eval_type>(c.dist), in find_degrees_of_freedom() 729 static_cast<eval_type>(c.param1), in find_degrees_of_freedom() [all …]
|
/third_party/mindspore/tests/ut/python/metrics/ |
D | test_metric_factory.py | 27 metric = get_metric_fn('accuracy', eval_type='classification') 37 metric = get_metric_fn('acc', eval_type='classification') 47 metric = get_metric_fn('precision', eval_type='classification')
|
/third_party/boost/boost/math/special_functions/detail/ |
D | erf_inv.hpp | 441 typedef typename policies::evaluation<result_type, Policy>::type eval_type; in erfc_inv() typedef 449 detail::erf_inv_initializer<eval_type, forwarding_policy>::force_instantiate(); in erfc_inv() 455 …detail::erf_inv_imp(static_cast<eval_type>(p), static_cast<eval_type>(q), forwarding_policy(), sta… in erfc_inv() 506 typedef typename policies::evaluation<result_type, Policy>::type eval_type; in erf_inv() typedef 517 typedef typename policies::evaluation<result_type, Policy>::type eval_type; in erf_inv() typedef 519 detail::erf_inv_initializer<eval_type, forwarding_policy>::force_instantiate(); in erf_inv() 524 …detail::erf_inv_imp(static_cast<eval_type>(p), static_cast<eval_type>(q), forwarding_policy(), sta… in erf_inv()
|
/third_party/mindspore/mindspore/nn/metrics/ |
D | metric.py | 242 def __init__(self, eval_type): argument 244 if eval_type not in _eval_types: 245 raise TypeError('Type must be in {}, but got {}'.format(_eval_types, eval_type)) 246 self._type = eval_type
|
D | accuracy.py | 50 def __init__(self, eval_type='classification'): argument 51 super(Accuracy, self).__init__(eval_type)
|
D | precision.py | 57 def __init__(self, eval_type='classification'): argument 58 super(Precision, self).__init__(eval_type)
|
D | recall.py | 56 def __init__(self, eval_type='classification'): argument 57 super(Recall, self).__init__(eval_type)
|
/third_party/boost/libs/yap/test/ |
D | comma.cpp | 115 using eval_type = decltype(evaluate(int_void_expr)); in test_main() typedef 117 (std::is_same<void, eval_type>)); in test_main()
|
/third_party/quickjs/ |
D | quickjs.c | 19960 int eval_type; /* only valid if is_eval = TRUE */ member 21773 if (fd->is_eval && fd->eval_type == JS_EVAL_TYPE_GLOBAL) { in find_lexical_decl() 22037 (fd->eval_type == JS_EVAL_TYPE_GLOBAL || in define_var() 22038 fd->eval_type == JS_EVAL_TYPE_MODULE) && in define_var() 22079 fd->eval_type == JS_EVAL_TYPE_MODULE) { in define_var() 30641 if (s->eval_type != JS_EVAL_TYPE_GLOBAL) in instantiate_hoisted_definitions() 30805 if (s->eval_type == JS_EVAL_TYPE_DIRECT && in resolve_variables() 32965 if (fd->is_eval && fd->eval_type == JS_EVAL_TYPE_MODULE && in js_parse_function_decl2() 32988 (fd->eval_type == JS_EVAL_TYPE_GLOBAL || in js_parse_function_decl2() 32989 fd->eval_type == JS_EVAL_TYPE_MODULE) && in js_parse_function_decl2() [all …]
|
/third_party/python/Parser/ |
D | parser.c | 78 #define eval_type 1002 macro
|