代码搜索:Classify
找到约 2,639 项符合「Classify」的源代码
代码结果 2,639
www.eeworm.com/read/152629/5672790
java baggingclassifier.java
/* Copyright (C) 2002 Univ. of Massachusetts Amherst, Computer Science Dept.
This file is part of "MALLET" (MAchine Learning for LanguagE Toolkit).
http://www.cs.umass.edu/~mccallum/mallet
Th
www.eeworm.com/read/128293/5992063
java facilitator.java
/**
* Created by IntelliJ IDEA.
* User: Administrator
* Date: Jul 19, 2003
* Time: 1:46:24 PM
* To change this template use Options | File Templates.
*/
package Kernel;
import java.uti
www.eeworm.com/read/116971/6112115
java collectionclassifier2.java
// Working collection classifier - Page 130
import java.util.*;
public class CollectionClassifier2 {
public static String classify(Collection c) {
return (c instanceof Set ? "Set"
www.eeworm.com/read/116971/6112117
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/158370/11622986
cpp 7ix.cpp
// classify.cpp Output classifications for rat features
// ASSUMPTION: 25 lines of input, 4 measurements per line;
// consisting of age, weight, feedings, and activity
#include
cons
www.eeworm.com/read/347853/11631080
pro ch05ex13.pro
/*
Turbo Prolog 2.0 Chapter 5, Example Program 15
Copyright (c) 1986, 88 by Borland International, Inc
*/
predicates
classify(integer, symbol)
clauses
classify(0, zero
www.eeworm.com/read/347853/11631504
pro ch05ex15.pro
/*
Turbo Prolog 2.0 Chapter 5, Example Program 15
Copyright (c) 1986, 88 by Borland International, Inc
*/
predicates
classify(integer, symbol)
clauses
classify(0, zero
www.eeworm.com/read/252978/12252010
java classifier.java
package learner;
public interface Classifier {
public double test(Datastructure[] testdata);
public int classify(double data);
public double[] crossvalidate(int folds);
public double
www.eeworm.com/read/148707/12436894
cpp 7ix.cpp
// classify.cpp Output classifications for rat features
// ASSUMPTION: 25 lines of input, 4 measurements per line;
// consisting of age, weight, feedings, and activity
#include
cons
www.eeworm.com/read/120429/14803774
java collectionclassifier2.java
// Working collection classifier - Page 130
import java.util.*;
public class CollectionClassifier2 {
public static String classify(Collection c) {
return (c instanceof Set ? "Set"