MyCaffe  1.12.2.41
Deep learning software for Windows C# programmers.
PositiveUnitballFiller.cs
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using MyCaffe.basecode;
6using MyCaffe.param;
7using MyCaffe.common;
8
9namespace MyCaffe.fillers
10{
16 public class PositiveUnitballFiller<T> : Filler<T>
17 {
25 : base(cuda, log, p)
26 {
27 }
28
29
40 public override void Fill(int nCount, long hMem, int nNumAxes = 1, int nNumOutputs = 1, int nNumChannels = 1, int nHeight = 1, int nWidth = 1)
41 {
42 m_log.CHECK(nCount > 0, "There is no data to fill!");
43 m_cuda.rng_uniform(nCount, 0, 1, hMem);
44
45 // We expect the filler to not be called very frequently, so we will
46 // just use a simple implementation.
47
48 T[] rgData = m_cuda.GetMemory(hMem);
49 int nDim = nCount / nNumOutputs;
50
51 m_log.CHECK_GT(nDim, 0, "The dimension must be greater than 0.");
52
53 for (int i = 0; i < nNumOutputs; i++)
54 {
55 double dfSum = 0;
56
57 for (int j = 0; j < nDim; j++)
58 {
59 int nIdx = i * nDim + j;
60 dfSum += (double)Convert.ChangeType(rgData[nIdx], typeof(double));
61 }
62
63 for (int j = 0; j < nDim; j++)
64 {
65 int nIdx = i * nDim + j;
66 double dfVal = (double)Convert.ChangeType(rgData[nIdx], typeof(double)) / dfSum;
67 rgData[nIdx] = (T)Convert.ChangeType(dfVal, typeof(T));
68 }
69 }
70
71 m_cuda.SetMemory(hMem, rgData);
72
73 m_log.CHECK_EQ(-1, m_param.sparse, "Sparsity not supported by this Filler.");
74 }
75 }
76}
The Log class provides general output in text form.
Definition: Log.cs:13
void CHECK(bool b, string str)
Test a flag for true.
Definition: Log.cs:227
void CHECK_EQ(double df1, double df2, string str)
Test whether one number is equal to another.
Definition: Log.cs:239
void CHECK_GT(double df1, double df2, string str)
Test whether one number is greater than another.
Definition: Log.cs:299
The CudaDnn object is the main interface to the Low-Level Cuda C++ DLL.
Definition: CudaDnn.cs:969
Abstract Filler class used to fill blobs with values.
Definition: Filler.cs:19
FillerParameter m_param
Specifies the filler parameters.
Definition: Filler.cs:31
CudaDnn< T > m_cuda
Specifies the CudaDnn instance used to communicate to the low-level Cuda Dnn DLL.
Definition: Filler.cs:23
Log m_log
Specifies the output log.
Definition: Filler.cs:27
Fills a Blob with values such that .
PositiveUnitballFiller(CudaDnn< T > cuda, Log log, FillerParameter p)
Constructor.
override void Fill(int nCount, long hMem, int nNumAxes=1, int nNumOutputs=1, int nNumChannels=1, int nHeight=1, int nWidth=1)
Fill the memory with random numbers from a postive unitball distribution.
Specifies the filler parameters used to create each Filler.
int sparse
Specifies the sparcity value to use with the 'guassian' filler.
The MyCaffe.basecode contains all generic types used throughout MyCaffe.
Definition: Annotation.cs:12
The MyCaffe.common namespace contains common MyCaffe classes.
Definition: BatchInput.cs:8
The MyCaffe.fillers namespace contains all fillers including the Filler class.
The MyCaffe.param namespace contains parameters used to create models.
The MyCaffe namespace contains the main body of MyCaffe code that closesly tracks the C++ Caffe open-...
Definition: Annotation.cs:12