mirror of
https://github.com/HuwCampbell/grenade.git
synced 2024-11-22 15:33:10 +03:00
10 lines
248 B
C
10 lines
248 B
C
#include <stdio.h>
|
|
#include <stdint.h>
|
|
|
|
void descend_cpu(int len, double rate, double momentum, double regulariser,
|
|
const double* weights,
|
|
const double* gradient,
|
|
const double* last,
|
|
double* outputWeights, double* outputMomentum);
|
|
|