Home
last modified time | relevance | path

Searched refs:theta1_ (Results 1 – 5 of 5) sorted by relevance

/dports/devel/cltune/CLTune-2.7.0/src/ml_models/
H A Dneural_network.cc127 theta1_.resize((layer_sizes_[0]+1)*layer_sizes_[1]); in InitializeTheta()
141 for (auto &weight: theta1_) { weight = distribution1(generator); } in InitializeTheta()
184 auto value = theta1_[id1*(layer_sizes_[0]+1) + id0]; in Cost()
205 auto gradient1 = std::vector<T>(theta1_.size(), static_cast<T>(0)); in Gradient()
250 gradient1[index] += lambda * theta1_[index]; in Gradient()
269 theta1_[index] = theta1_[index] - alpha * gradient1[index]; in Gradient()
301 z1 += a0[id0] * theta1_[id1*(layer_sizes_[0]+1) + id0]; in FeedForward1()
/dports/finance/quantlib/QuantLib-1.20/ql/experimental/processes/
H A Dgemanroncoroniprocess.cpp48 theta1_(theta1), theta2_(theta2), theta3_(theta3), in GemanRoncoroniProcess()
62 return muPrime + theta1_*(mu-x); in drift()
72 return std::sqrt(sig2t/(2*theta1_)*(1.0-std::exp(-2*theta1_*dt))); in stdDeviation()
H A Dgemanroncoroniprocess.hpp74 const Real theta1_, theta2_, theta3_; member in QuantLib::GemanRoncoroniProcess
/dports/devel/cltune/CLTune-2.7.0/include/internal/ml_models/
H A Dneural_network.h96 std::vector<T> theta1_; variable
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/structured_light/src/
H A Dsinusoidalpattern.cpp686 Mat &theta1_ = *(Mat*) theta1.getObj(); in computeFapsPhaseMap() local
704 (1 - cos(theta1_.at<float>(i, j))) * b_.at<float>(i, j); in computeFapsPhaseMap()
706 float den = sin(theta1_.at<float>(i, j)) * b_.at<float>(i, j) - in computeFapsPhaseMap()