-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMachLinRectif.cpp
136 lines (115 loc) · 3.93 KB
/
MachLinRectif.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
/*
* This file is part of the continuous space language and translation model toolkit
* for statistical machine translation and large vocabulary speech recognition.
*
* Copyright 2015, Holger Schwenk, LIUM, University of Le Mans, France
*
* The CSLM toolkit is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License version 3 as
* published by the Free Software Foundation
*
* This library is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this library; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*
*
*/
using namespace std;
#include <iostream>
#include <math.h>
#include "Tools.h"
#include "MachLinRectif.h"
#include "Blas.h"
#ifdef BLAS_CUDA
#include "Gpu.cuh"
#endif
MachLinRectif::MachLinRectif(const int p_idim, const int p_odim, const int p_bsize, const ulong p_nbfw, const ulong p_nbbw, const int shareid, const bool xdata)
: MachLin(p_idim, p_odim, p_bsize, p_nbfw, p_nbbw, shareid, xdata)
{
debug0("** constructor MachLinRectif\n");
}
MachLinRectif::MachLinRectif(const MachLinRectif &m)
: MachLin(m)
{
debug0("** copy constructor MachLinRectif\n");
}
MachLinRectif::~MachLinRectif()
{
debug1("** destructor MachLinRectif %lx\n",(luint) this);
}
//-----------------------------------------------
// Tools
//-----------------------------------------------
void MachLinRectif::Info(bool detailed, char *txt)
{
if (detailed) {
cout << "Information on linear rectifier machine" << endl;
MachLin::Info(detailed,txt);
}
else {
if (drop_out>0)
printf("%sMachLinRectif %d-%d, bs=%d, drop-out=%4.2f, passes=%lu/%lu", txt, idim, odim, bsize, drop_out, nb_forw, nb_backw);
else
printf("%sMachLinRectif %d-%d, bs=%d, passes=%lu/%lu", txt, idim, odim, bsize, nb_forw, nb_backw);
if (lr_coeff != 1.0) printf(", lrate-coeff=%.2f", lr_coeff);
#ifdef BLAS_CUDA
printf(", on GPU %d", Gpu::GetCudaDevice(Gpu::GetDevice(gpu_conf)));
#endif
tm.disp(", ");
tmh.disp(" + recif: ");
printf("\n");
debug5("%s data: %p -> %p, grad %p <- %p\n", txt, (void*)data_in, (void*)data_out, (void*)grad_in, (void*)grad_out);
}
}
//-----------------------------------------------
// Training
//-----------------------------------------------
void MachLinRectif::Forw(int eff_bsize, bool in_train)
{
debug2("*** MachLinRectif Forw %p -> %p\n",(void*)data_in,(void*)data_out);
if (eff_bsize<=0) eff_bsize=bsize;
MachLin::Forw(eff_bsize,in_train);
tmh.start();
// apply linear rectifier on output
#ifdef BLAS_CUDA
Gpu::LinRectifForw(odim*eff_bsize, data_out);
#else
REAL *ptr=data_out;
for (int i=0; i<odim*eff_bsize; i++, ptr++) {
if (*ptr<0) *ptr=0;
}
#endif
// perform drop-out
MachLin::ForwDropout(eff_bsize,in_train);
tmh.stop();
}
void MachLinRectif::Backw(const float lrate, const float wdecay, int eff_bsize)
{
debug2("*** MachLinRectif Backw %p <- %p\n",(void*)grad_in,(void*)grad_out);
// derivate tanh activation function
// multiply grad_hidden by derivatives of hidden layer activities (tanh)
// grad_out = grad_out .* f'(data_out)
// = grad_out .* ( 1 - data_out^2 )
if (eff_bsize<=0) eff_bsize=bsize;
if (!grad_out)
Error("MachLinRectif::Backw(): output gradient is not set");
tmh.start();
#ifdef BLAS_CUDA
Gpu::SetConfig(gpu_conf);
Gpu::LinRectifBackw(odim*eff_bsize, data_out, grad_out);
#else
REAL *dptr=data_out;
REAL *gptr=grad_out;
for (int i=0; i<odim*eff_bsize; i++) {
if (*dptr++<0) *gptr++=0; // multiply by 0
else gptr++; // multiply by 1
}
#endif
tmh.stop();
MachLin::Backw(lrate, wdecay, eff_bsize);
}