代码搜索:Layer
找到约 10,000 项符合「Layer」的源代码
代码结果 10,000
www.eeworm.com/read/165315/10068124
gif layer.gif
www.eeworm.com/read/165315/10068136
java layer.java
import java.util.*;
class Layer
{
Vector neurons;
int size;
// for the pocket algorithm
double p1,p2,p3;
int Rp;
int Rw;
static ArrayList points;
//static double threshol
www.eeworm.com/read/359993/10112609
java layer.java
package structure;
/**
* 网络中的一个层(隐层或输出层)
* 一层中有几个神经元就有几个输出
* */
public class Layer {
public int num; //一层中神经元的个数,也即输出的个数
public Neuron neurons[];
public doubl
www.eeworm.com/read/359993/10112651
class layer.class
www.eeworm.com/read/164373/10112654
frm layer.frm
VERSION 5.00
Begin VB.Form Layer
Caption = "图层属性"
ClientHeight = 3705
ClientLeft = 60
ClientTop = 510
ClientWidth = 5400
LinkTopic =
www.eeworm.com/read/359992/10112667
java layer.java
package structure;
/**
* 网络中的一个层(隐层或输出层)
* 一层中有几个神经元就有几个输出
* */
public class Layer {
public int num; //一层中神经元的个数,也即输出的个数
public Neuron neurons[];
public doubl
www.eeworm.com/read/359992/10112694
class layer.class
www.eeworm.com/read/163251/10168622
cpp layer.cpp
/*
nn-utility (Provides neural networking utilities for c++ programmers)
Copyright (C) 2003 Panayiotis Thomakos
This library is free software; you can redistribute it and/or
modify
www.eeworm.com/read/358612/10183846
java layer.java
package ann;
public class Layer implements java.io.Serializable,Cloneable{
public int N_NODES;
public Node nodes[];
public Layer() {
}
public Layer(int n)
{
N_NODES=n;
www.eeworm.com/read/356270/10233277