代码搜索:Classify
找到约 2,639 项符合「Classify」的源代码
代码结果 2,639
www.eeworm.com/read/120429/14803776
java collectionclassifier.java
// Broken - incorrect use of overloading! - Page 128
import java.util.*;
public class CollectionClassifier {
public static String classify(Set s) {
return "Set";
}
publ
www.eeworm.com/read/167185/5462143
makefile
# This material contains proprietary software of Entropic Speech, Inc.
# Any reproduction, distribution, or publication without the the prior
# written permission of Entropic Speech, Inc. is
www.eeworm.com/read/167185/5462147
,makefile
# This material contains proprietary software of Entropic Speech, Inc.
# Any reproduction, distribution, or publication without the the prior
# written permission of Entropic Speech, Inc. is
www.eeworm.com/read/167185/5463776
makefile
#
# This material contains proprietary software of Entropic Speech, Inc.
# Any reproduction, distribution, or publication without the prior
# written permission of Entropic Speech, Inc. is s
www.eeworm.com/read/475585/6773684
dsp tessdll.dsp
# Microsoft Developer Studio Project File - Name="tessdll" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) D
www.eeworm.com/read/475585/6773686
dsp tesseract.dsp
# Microsoft Developer Studio Project File - Name="tesseract" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86)
www.eeworm.com/read/475585/6773746
in makefile.in
# Makefile.in generated automatically by automake 1.4-p6 from Makefile.am
# Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Softwar
www.eeworm.com/read/475585/6773853
in makefile.in
# Makefile.in generated automatically by automake 1.4-p6 from Makefile.am
# Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Softwar
www.eeworm.com/read/471381/6892027
m adaboostclassify.m
function [Y]=AdaBoostClassify(H,alpha,X)
% AdaBoost classify
T=size(alpha,2);
Thresh=sum(alpha)/2;
Yres=0;
for t=1:T
%find weak classifier decision
Label=WeakClassify(X,H{t},'ROC');
www.eeworm.com/read/249774/12475343
java test.java
// file: main.java
// This file illustrates the high level C++ interface
// created by SWIG. The java class gets mapped onto the c++ class
// and behaves as if it is a java class.
import TinySVM;