Home
last modified time | relevance | path

Searched refs:Prediction (Results 1 – 25 of 2507) sorted by relevance

12345678910>>...101

/dports/deskutils/presage/presage-0.9.1/test/lib/core/
H A DcombinerTest.h40 Prediction combine(const std::vector<Prediction>&) { in combine() argument
44 Prediction filter(const Prediction& prediction) const { in filter()
61 Prediction* prediction1;
62 Prediction* prediction2;
63 Prediction* prediction3;
64 Prediction* prediction4;
65 Prediction* prediction5;
66 Prediction* expected_prediction1;
67 Prediction* expected_prediction2;
68 Prediction* expected_prediction3;
[all …]
H A DpredictionTest.cpp38 empty_prediction = new Prediction(); in setUp()
40 prediction1 = new Prediction(); in setUp()
43 prediction2 = new Prediction(); in setUp()
46 prediction3 = new Prediction(); in setUp()
49 prediction23 = new Prediction(); in setUp()
53 prediction13 = new Prediction(); in setUp()
57 prediction12 = new Prediction(); in setUp()
61 prediction123 = new Prediction(); in setUp()
86 Prediction* prediction = new Prediction(); in testAssignmentOperator()
117 Prediction* pred = new Prediction(); in testGetSize()
[all …]
H A DpredictionTest.h47 Prediction* empty_prediction;
48 Prediction* prediction1;
49 Prediction* prediction2;
50 Prediction* prediction3;
51 Prediction* prediction23;
52 Prediction* prediction13;
53 Prediction* prediction12;
54 Prediction* prediction123;
H A DmeritocracyCombinerTest.h44 Prediction* p1;
45 Prediction* p2;
46 Prediction* p3;
48 Prediction* p12; // expected combination of p1 and p2
49 Prediction* p23; // expected combination of p2 and p3
50 Prediction* p13; // expected combination of p1 and p3
52 Prediction* p123; // expected combination of p1, p2, and p3
H A DcombinerTest.cpp40 prediction1 = new Prediction(); in setUp()
45 expected_prediction1 = new Prediction(); in setUp()
49 prediction2 = new Prediction(); in setUp()
55 expected_prediction2 = new Prediction(); in setUp()
58 prediction3 = new Prediction(); in setUp()
65 expected_prediction3 = new Prediction(); in setUp()
69 prediction4 = new Prediction(); in setUp()
76 expected_prediction4 = new Prediction(); in setUp()
80 prediction5 = new Prediction(); in setUp()
90 expected_prediction5 = new Prediction(); in setUp()
H A DselectorTest.cpp61 Prediction* ip; in init()
62 Prediction* op; in init()
65 ip = new Prediction; in init()
66 op = new Prediction; in init()
102 op = new Prediction; in init()
142 Prediction* ip; in init()
143 Prediction* op; in init()
223 Prediction* ip; in init()
224 Prediction* op; in init()
304 Prediction* ip; in init()
[all …]
/dports/textproc/soothsayer/soothsayer-0.6.3/test/lib/core/
H A DcombinerTest.h39 Prediction combine(const std::vector<Prediction>&) { in combine() argument
43 Prediction filter(const Prediction& prediction) const { in filter()
60 Prediction* prediction1;
61 Prediction* prediction2;
62 Prediction* prediction3;
63 Prediction* prediction4;
64 Prediction* prediction5;
65 Prediction* expected_prediction1;
66 Prediction* expected_prediction2;
67 Prediction* expected_prediction3;
[all …]
H A DpredictionTest.cpp37 empty_prediction = new Prediction(); in setUp()
39 prediction1 = new Prediction(); in setUp()
42 prediction2 = new Prediction(); in setUp()
45 prediction3 = new Prediction(); in setUp()
48 prediction23 = new Prediction(); in setUp()
52 prediction13 = new Prediction(); in setUp()
56 prediction12 = new Prediction(); in setUp()
60 prediction123 = new Prediction(); in setUp()
85 Prediction* prediction = new Prediction(); in testAssignmentOperator()
116 Prediction* pred = new Prediction(); in testGetSize()
[all …]
H A DpredictionTest.h46 Prediction* empty_prediction;
47 Prediction* prediction1;
48 Prediction* prediction2;
49 Prediction* prediction3;
50 Prediction* prediction23;
51 Prediction* prediction13;
52 Prediction* prediction12;
53 Prediction* prediction123;
H A DmeritocracyCombinerTest.h43 Prediction* p1;
44 Prediction* p2;
45 Prediction* p3;
47 Prediction* p12; // expected combination of p1 and p2
48 Prediction* p23; // expected combination of p2 and p3
49 Prediction* p13; // expected combination of p1 and p3
51 Prediction* p123; // expected combination of p1, p2, and p3
H A DcombinerTest.cpp39 prediction1 = new Prediction(); in setUp()
44 expected_prediction1 = new Prediction(); in setUp()
48 prediction2 = new Prediction(); in setUp()
54 expected_prediction2 = new Prediction(); in setUp()
57 prediction3 = new Prediction(); in setUp()
64 expected_prediction3 = new Prediction(); in setUp()
68 prediction4 = new Prediction(); in setUp()
75 expected_prediction4 = new Prediction(); in setUp()
79 prediction5 = new Prediction(); in setUp()
89 expected_prediction5 = new Prediction(); in setUp()
/dports/graphics/gifski/gifski-1.5.0/cargo-crates/ffmpeg-next-4.4.0/src/codec/encoder/
H A Dprediction.rs5 pub enum Prediction { enum
11 impl From<c_int> for Prediction { implementation
12 fn from(value: c_int) -> Prediction { in from() argument
14 FF_PRED_LEFT => Prediction::Left, in from()
15 FF_PRED_PLANE => Prediction::Plane, in from()
16 FF_PRED_MEDIAN => Prediction::Median, in from()
18 _ => Prediction::Left, in from()
23 impl From<Prediction> for c_int {
24 fn from(value: Prediction) -> c_int { in from()
26 Prediction::Left => FF_PRED_LEFT, in from()
[all …]
/dports/deskutils/presage/presage-0.9.1/src/lib/core/
H A Dprediction.cpp28 Prediction::Prediction() in Prediction() function in Prediction
31 Prediction::~Prediction() in ~Prediction()
34 const Prediction &Prediction::operator=( const Prediction &right ) in operator =()
45 bool Prediction::operator== (const Prediction& right) const in operator ==()
68 size_t Prediction::size() const in size()
73 Suggestion Prediction::getSuggestion(int i) const in getSuggestion()
80 Suggestion Prediction::getSuggestion(std::string token) const in getSuggestion()
90 void Prediction::addSuggestion(Suggestion s) in addSuggestion()
106 std::string Prediction::toString() const in toString()
116 std::ostream &operator<<( std::ostream &output, const Prediction &p ) in operator <<()
H A Dprediction.h47 class Prediction {
48 friend std::ostream &operator<<( std::ostream &, const Prediction & );
51 Prediction();
52 ~Prediction();
54 const Prediction &operator=( const Prediction & );
58 bool operator== (const Prediction&) const;
/dports/deskutils/presage/presage-0.9.1/test/lib/predictors/
H A DnewSmoothedNgramPredictorTest.cpp92 Prediction actual = predictor->predict(SIZE, 0); in testOnlineLearning()
99 Prediction actual = predictor->predict(SIZE, 0); in testOnlineLearning()
106 Prediction actual = predictor->predict(SIZE, 0); in testOnlineLearning()
115 Prediction actual = predictor->predict(SIZE, 0); in testOnlineLearning()
121 Prediction actual = predictor->predict(SIZE, 0); in testOnlineLearning()
130 Prediction actual = predictor->predict(SIZE, 0); in testOnlineLearning()
140 Prediction actual = predictor->predict(SIZE, 0); in testOnlineLearning()
158 Prediction actual = predictor->predict(SIZE, 0); in testOfflineLearning()
165 Prediction actual = predictor->predict(SIZE, 0); in testOfflineLearning()
172 Prediction actual = predictor->predict(SIZE, 0); in testOfflineLearning()
[all …]
H A DdejavuPredictorTest.cpp88 Prediction expected; in testPredict()
95 Prediction expected; in testPredict()
102 Prediction expected; in testPredict()
113 Prediction expected; in testPredict()
120 Prediction expected; in testPredict()
127 Prediction expected; in testPredict()
139 Prediction expected; in testPredict()
146 Prediction expected; in testPredict()
153 Prediction expected; in testPredict()
169 Prediction expected; in testPredict()
[all …]
/dports/textproc/soothsayer/soothsayer-0.6.3/src/lib/core/
H A Dprediction.cpp27 Prediction::Prediction() in Prediction() function in Prediction
30 Prediction::~Prediction() in ~Prediction()
33 const Prediction &Prediction::operator=( const Prediction &right ) in operator =()
44 bool Prediction::operator== (const Prediction& right) const in operator ==()
67 int Prediction::size() const in size()
72 Suggestion Prediction::getSuggestion(int i) const in getSuggestion()
79 void Prediction::addSuggestion(Suggestion s) in addSuggestion()
95 std::string Prediction::toString() const in toString()
105 std::ostream &operator<<( std::ostream &output, const Prediction &p ) in operator <<()
H A Dprediction.h46 class Prediction {
47 friend std::ostream &operator<<( std::ostream &, const Prediction & );
50 Prediction();
51 ~Prediction();
53 const Prediction &operator=( const Prediction & );
57 bool operator== (const Prediction&) const;
/dports/devel/aws-sdk-cpp/aws-sdk-cpp-1.9.129/aws-cpp-sdk-machinelearning/include/aws/machinelearning/model/
H A DPrediction.h42 class AWS_MACHINELEARNING_API Prediction
45 Prediction();
46 Prediction(Aws::Utils::Json::JsonView jsonValue);
47 Prediction& operator=(Aws::Utils::Json::JsonView jsonValue);
85 …inline Prediction& WithPredictedLabel(const Aws::String& value) { SetPredictedLabel(value); return… in WithPredictedLabel()
91 …inline Prediction& WithPredictedLabel(Aws::String&& value) { SetPredictedLabel(std::move(value)); … in WithPredictedLabel()
97 …inline Prediction& WithPredictedLabel(const char* value) { SetPredictedLabel(value); return *this;} in WithPredictedLabel()
118 inline Prediction& WithPredictedValue(double value) { SetPredictedValue(value); return *this;} in WithPredictedValue()
134 …inline Prediction& WithPredictedScores(const Aws::Map<Aws::String, double>& value) { SetPredictedS… in WithPredictedScores()
162 …inline Prediction& WithDetails(const Aws::Map<DetailsAttributes, Aws::String>& value) { SetDetails… in WithDetails()
[all …]
/dports/biology/bamutil/bamUtil-1.0.15/src/
H A DPrediction.cpp32 Prediction::Prediction(HashErrorModel *phasherrormodel){ in Prediction() function in Prediction
34 Prediction(); in Prediction()
37 Prediction::Prediction(){ in Prediction() function in Prediction
41 Prediction::~Prediction(){ in ~Prediction()
44 int Prediction::fitModel(bool writeModelFlag, std::string& filename) in fitModel()
64 void Prediction::setErrorModel(HashErrorModel *phasherrormodel) in setErrorModel()
69 std::vector<double> Prediction::getModel() in getModel()
79 int Prediction::writeLogRegdata(std::string& filename){ in writeLogRegdata()
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/navigation_predictor/
H A Dnavigation_predictor_keyed_service.cc24 const NavigationPredictorKeyedService::Prediction& prediction) { in WritePredictionToConsoleLog()
54 NavigationPredictorKeyedService::Prediction::Prediction( in Prediction() function in NavigationPredictorKeyedService::Prediction
78 NavigationPredictorKeyedService::Prediction::Prediction( in Prediction() function in NavigationPredictorKeyedService::Prediction
79 const NavigationPredictorKeyedService::Prediction& other) in Prediction()
99 NavigationPredictorKeyedService::Prediction&
100 NavigationPredictorKeyedService::Prediction::operator=( in operator =()
101 const NavigationPredictorKeyedService::Prediction& other) { in operator =()
131 NavigationPredictorKeyedService::Prediction::~Prediction() = default;
153 NavigationPredictorKeyedService::Prediction::web_contents() const { in web_contents()
192 last_prediction_ = Prediction(web_contents, document_url, in OnPredictionUpdated()
[all …]
H A Dnavigation_predictor_keyed_service.h41 class Prediction {
43 Prediction(content::WebContents* web_contents,
49 Prediction(const Prediction& other);
50 Prediction& operator=(const Prediction& other);
51 ~Prediction();
102 const base::Optional<Prediction> prediction) = 0;
145 base::Optional<Prediction> last_prediction_;
/dports/devel/gitlist/gitlist/vendor/phpspec/prophecy/src/Prophecy/Prophecy/
H A DMethodProphecy.php17 use Prophecy\Prediction; alias
218 * @param callable|Prediction\PredictionInterface $prediction
230 if (!$prediction instanceof Prediction\PredictionInterface) {
252 return $this->should(new Prediction\CallPrediction);
264 return $this->should(new Prediction\NoCallsPrediction);
284 * @param callable|Prediction\PredictionInterface $prediction
296 if (!$prediction instanceof Prediction\PredictionInterface) {
333 return $this->shouldHave(new Prediction\CallPrediction);
345 return $this->shouldHave(new Prediction\NoCallsPrediction);
400 * @return null|Prediction\PredictionInterface
[all …]
/dports/biology/viennarna/ViennaRNA-2.4.18/RNA-Tutorial/Data/genefinding/rnaz/herpes/x/
H A Drnaz.out17 Prediction: RNA
49 Prediction: RNA
79 Prediction: RNA
108 Prediction: RNA
137 Prediction: RNA
166 Prediction: RNA
195 Prediction: RNA
224 Prediction: RNA
253 Prediction: RNA
282 Prediction: RNA
[all …]
/dports/biology/viennarna/ViennaRNA-2.4.18/RNA-Tutorial/Data/rnaz/herpes/x/
H A Drnaz.out17 Prediction: RNA
49 Prediction: RNA
79 Prediction: RNA
108 Prediction: RNA
137 Prediction: RNA
166 Prediction: RNA
195 Prediction: RNA
224 Prediction: RNA
253 Prediction: RNA
282 Prediction: RNA
[all …]

12345678910>>...101