代码搜索:Labeled
找到约 414 项符合「Labeled」的源代码
代码结果 414
www.eeworm.com/read/103308/6220026
sh label.sh
#!/bin/bash
cd $1
ss cp $2 -y$3,$4
ss Label -y$3,$4 -L"$5" -C"Labeled by Anthill"
www.eeworm.com/read/378680/9218419
txt version history.txt
ResOrg 1.6.2.2 (under development)
Modified #imports for DTE and MSO to import smart pointer interfaces as well as raw ones. Also included lint directives so PC-Lint can identify the .tlh and .tli
www.eeworm.com/read/126967/14391336
m imageedge.m
function Proc = ImageEdge(labeled,xLength,yLength,gX,gY,addX,addY,objectID)
% **********************************************************************************
% *
% * ImageEdge(labeled,xLength,yL
www.eeworm.com/read/384830/8839783
java labeledwhile.java
//: control/LabeledWhile.java
// While loops with "labeled break" and "labeled continue."
import static net.mindview.util.Print.*;
public class LabeledWhile {
public static void main(String[]
www.eeworm.com/read/180383/9310620
cpp distinctrepresentatives.cpp
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
www.eeworm.com/read/373369/9460230
java labeledwhile.java
//: control/LabeledWhile.java
// While loops with "labeled break" and "labeled continue."
import static net.mindview.util.Print.*;
public class LabeledWhile {
public static void main(String[]
www.eeworm.com/read/373028/9477619
java distinctrepresentatives.java
import java.io.*;
import java.util.*;
class Vertex {
public int idNum, capacity, edgeFlow;
public boolean forward; // direction;
public Vertex twin; // edge in opposite directio
www.eeworm.com/read/175317/9552377
m ml_test.m
function [f,labels,error]=ml_test(classifier,X,Y)
% ML_TEST Uses a classifier to classify data in X
% ----------------------------------------------------------------------------%
%
% Usage:
% [f,la
www.eeworm.com/read/175317/9552403
m laprlsc.m
function [alpha,b]=laprlsc(K,Y,L,lambda1,lambda2)
n=size(K,1); % total examples
l=sum(abs(Y)); % labeled examples
u=n - l; % unlabeled examples
I=eye(n);
J=diag(abs(Y));