對接API火幣/幣安/OK現(xiàn)貨合約量化跟單系統(tǒng)開發(fā)(開發(fā)案例)/詳細(xì)策略/方案項(xiàng)目/源碼版
什么是量化交易?
量化交易就是以數(shù)學(xué)公式和統(tǒng)計(jì)數(shù)據(jù)等為基礎(chǔ)來建立數(shù)學(xué)模型,通過數(shù)學(xué)模型來進(jìn)行交易。Quantitative trading relies on highly developed computer and internet technologies
人工智能(Artificial Intelligence,簡稱AI)是指計(jì)算機(jī)系統(tǒng)在完成類似人類智力所需的任務(wù)時(shí)所表現(xiàn)出來的能力。It is a complex technology that continuously adjusts and improves its own algorithm by inputting a large amount of data into the algorithm for learning,thereby continuously optimizing its performance.
class PFLD::Impl{
public:
Impl(){
device_=0;
precision_=0;
power_=0;
memory_=0;
initialized_=false;
}
~Impl(){
landmarker_->releaseModel();
landmarker_->releaseSession(session_);
}
int LoadModel(const char*root_path);
int ExtractKeypoints(const cv::Mat&img_face,std::vector<cv::Point2f>*keypoints);
std::shared_ptr<MNN::Interpreter>landmarker_;
const int inputSize_=96;
int device_;
int precision_;
int power_;
int memory_;
MNN::Session*session_=nullptr;
MNN::Tensor*input_tensor_=nullptr;
bool initialized_;
};