代码搜索:BackProp
找到约 426 项符合「BackProp」的源代码
代码结果 426
www.eeworm.com/read/292430/3953214
java backprop.java
/*
Copyright 2006, 2007 Brian Greer
This file is part of the Java NN Trainer.
Java NN Trainer is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public
www.eeworm.com/read/408539/2248833
cpp backprop.cpp
/*
******************************************************************
* backprop.cpp
******************************************************************
*/
#include "StdAfx.h"
#include
#
www.eeworm.com/read/408539/2248834
h backprop.h
/*
******************************************************************
* backprop.h
******************************************************************
*/
#ifndef _BACKPROP_H_
#define _BACKPROP_H_
www.eeworm.com/read/408539/2248875
cpp backprop.cpp
/*
******************************************************************
* backprop.cpp
******************************************************************
*/
#include "StdAfx.h"
#include
www.eeworm.com/read/408539/2248885
h backprop.h
/*
******************************************************************
* backprop.h
******************************************************************
*/
#ifndef _BACKPROP_H_
#define _BACKPROP_H
www.eeworm.com/read/401674/2336937
java backprop.java
package com.digiburo.backprop1;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java
www.eeworm.com/read/394665/2455061
cpp backprop.cpp
/*
******************************************************************
* backprop.cpp
******************************************************************
*/
#include "StdAfx.h"
#include
#
www.eeworm.com/read/394665/2455062
h backprop.h
/*
******************************************************************
* backprop.h
******************************************************************
*/
#ifndef _BACKPROP_H_
#define _BACKPROP_H_
www.eeworm.com/read/194709/8187655
h backprop.h
#ifndef _BACKPROP_
#define _BACKPROP_
#define EPOCHS 3000
#define SAVE_WGTS_FREQ 50
#define DISPLAY_FREQ 10
#define NN_n_inp 3
#define DEFAULT_HIDDENS 4
#define NN_n_out 1
#defin
www.eeworm.com/read/194709/8187657
c backprop.c
/************************************
Code for implementing the backpropagation algorithm for training
a fully-connected MLP neural network with 1 layer of hidden units.
Loosely translated fr