代码搜索:Layer
找到约 10,000 项符合「Layer」的源代码
代码结果 10,000
www.eeworm.com/read/380483/9145540
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/379766/9178324
css layer.css
/* 字条样式*/
.Style0{background:url(../images/style0.gif) no-repeat;position:absolute;cursor:move;width:240px;height:190px;text-align:left;}
.Style1{background:url(../images/style1.gif) no-repeat;posit
www.eeworm.com/read/176401/9500039
gif layer.gif
www.eeworm.com/read/176401/9500052
jpg layer.jpg
www.eeworm.com/read/170529/9801356
ico layer.ico
www.eeworm.com/read/365220/9872693
class layer.class
www.eeworm.com/read/166821/9996370
cpp layer.cpp
#include "StdAfx.h"
#include ".\layer.h"
Layer::~Layer(void)
{
}
Layer::Layer(CString strLbl,int size)
{
name = strLbl;
CString label;
this->size = size;
neurons.RemoveAll();
fo
www.eeworm.com/read/166821/9996381
h layer.h
#pragma once
#include "Neuron.h"
static const int LEN = 100;
struct Samples
{
double samples[LEN];
int nLenght;
};
class Layer
{
public:
~Layer(void);
CList neurons;
int s
www.eeworm.com/read/165315/10068099