Home
last modified time | relevance | path

Searched refs:model_weights (Results 1 – 6 of 6) sorted by relevance

/dports/security/vaultwarden/vaultwarden-1.23.1/cargo-crates/brotli-3.3.2/src/enc/
H A Dweights.rs9 model_weights: [i32;2], field
21 model_weights:[1;2], in new()
30 normalize_weights(&mut self.model_weights);
33 self.model_weights,
38 self.model_weights,
41 self.model_weights = [w0new, w1new];
42 self.normalized_weight = compute_normalized_weight(self.model_weights);
53 fn compute_normalized_weight(model_weights: [i32;2]) -> Prob { in compute_normalized_weight()
54 let total = i64::from(model_weights[0]) + i64::from(model_weights[1]);
62 …((((model_weights[0] >> shift) as u16)<< 8) / total_8bit as u16/*fixme??*/) << (BLEND_FIXED_POINT_…
/dports/security/suricata/suricata-6.0.4/rust/vendor/brotli/src/enc/
H A Dweights.rs9 model_weights: [i32;2], field
21 model_weights:[1;2], in new()
30 normalize_weights(&mut self.model_weights);
33 self.model_weights,
38 self.model_weights,
41 self.model_weights = [w0new, w1new];
42 self.normalized_weight = compute_normalized_weight(self.model_weights);
53 fn compute_normalized_weight(model_weights: [i32;2]) -> Prob { in compute_normalized_weight()
54 let total = i64::from(model_weights[0]) + i64::from(model_weights[1]);
62 …((((model_weights[0] >> shift) as u16)<< 8) / total_8bit as u16/*fixme??*/) << (BLEND_FIXED_POINT_…
/dports/www/xh/xh-0.14.1/cargo-crates/brotli-3.3.2/src/enc/
H A Dweights.rs9 model_weights: [i32;2], field
21 model_weights:[1;2], in new()
30 normalize_weights(&mut self.model_weights);
33 self.model_weights,
38 self.model_weights,
41 self.model_weights = [w0new, w1new];
42 self.normalized_weight = compute_normalized_weight(self.model_weights);
53 fn compute_normalized_weight(model_weights: [i32;2]) -> Prob { in compute_normalized_weight()
54 let total = i64::from(model_weights[0]) + i64::from(model_weights[1]);
62 …((((model_weights[0] >> shift) as u16)<< 8) / total_8bit as u16/*fixme??*/) << (BLEND_FIXED_POINT_…
/dports/multimedia/libopenshot/libopenshot-0.2.7/examples/
H A DExample_opencv.cpp292 string model_weights = jsonFormat("model_weights", modelWeights); in objectDetectionJson() local
300 + model_weights + "," + classes_file + "}"; in objectDetectionJson()
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/dnn_objdetect/
H A DREADME.md55 cv::dnn::net = cv::dnn::readNetFromCaffe(model_defn, model_weights);
/dports/devel/spark/spark-2.1.1/python/pyspark/mllib/
H A Dtests.py1539 model_weights = []
1542 lambda x: model_weights.append(slr.latestModel().weights[0]))
1547 self.assertEqual(len(model_weights), len(batches))
1553 w = array(model_weights)