代码搜索:Naive
找到约 375 项符合「Naive」的源代码
代码结果 375
www.eeworm.com/read/136903/13354639
exe naive.exe
www.eeworm.com/read/187486/8636239
cpp naive_synthesis.cpp
// naive_synthesis.cpp: implementation of the naive_synthesis class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "naive_synthesis.h"
www.eeworm.com/read/187486/8636299
h naive_synthesis.h
// naive_synthesis.h: interface for the naive_synthesis class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_NAIVE_SYNTHESIS_H__6796EAAF_B58E_4B2E_9E7
www.eeworm.com/read/457731/7318632
m naive_bayes.m
%
% naive_bayes.m
%
% created by Sunghwan Yoo
%
%
% Goal: predict label Y given X
%
% Naive Bayes
% ===========
%
% Learning:
% Compute prior probabilities p(Y=1), and p(Y=0)
% For
www.eeworm.com/read/479782/1330069
c naive_synthesis.c
/***************************************************************************
**************************************************************************
Spherical Harmonic Transfor
www.eeworm.com/read/479782/1330096
h naive_synthesis.h
/***************************************************************************
**************************************************************************
Spherical Harmonic Transfor
www.eeworm.com/read/266529/11220988
cpp gergovia_naive.cpp
// Problem Wine trading in Gergovia
// Algorithm greedy
// Runtime O(n^2)
// Author Adrian Kuegel
// Date 2006.06.18
#include
#include
#include
u
www.eeworm.com/read/266529/11220998
cpp construct_naive.cpp
// Problem Construct the maze
// Algorithm backtracking / breadth first search
// Runtime O(n^5) (n is number of grid squares)
// Author Adrian Kuegel
// Date 2006.06.16
#include
www.eeworm.com/read/266529/11221024
cpp automatic_naive.cpp
#include
#include
#include
#include
#include
using namespace std;
#define MAXN 10000
#define MAXQ 1000
string dict[MAXN];
void asser
www.eeworm.com/read/191902/8417206
m naive_string_matching.m
function sh = Naive_String_Matching(text, x)
% Naive string matching: Find the location of the string x in text 'text'
%
% Inputs:
% text - Text vector
% x - Search string
%
% Output: