MyCaffe  1.12.2.41
Deep learning software for Windows C# programmers.
BilinearFiller.cs
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using MyCaffe.basecode;
6using MyCaffe.param;
7using MyCaffe.common;
8
10{
50 public class BilinearFiller<T> : Filler<T>
51 {
59 : base(cuda, log, p)
60 {
61 }
62
73 public override void Fill(int nCount, long hMem, int nNumAxes = 1, int nNumOutputs = 1, int nNumChannels = 1, int nHeight = 1, int nWidth = 1)
74 {
75 m_log.CHECK_EQ(nNumAxes, 4, "Blob must be 4 dim.");
76 m_log.CHECK_EQ(nWidth, nHeight, "Filter must be square.");
77
78 T[] rgData = m_cuda.GetMemory(hMem);
79 int nF = (int)Math.Ceiling(nWidth / 2.0);
80 double dfC = (nWidth - 1) / (2.0 * nF);
81
82 for (int i = 0; i < nCount; i++)
83 {
84 double dfX = i % nWidth;
85 double dfY = (i / nWidth) % nHeight;
86 double dfVal = (1 - Math.Abs(dfX / nF - dfC)) * (1 - Math.Abs(dfY / nF - dfC));
87
88 rgData[i] = (T)Convert.ChangeType(dfVal, typeof(T));
89 }
90
91 m_cuda.SetMemory(hMem, rgData);
92
93 m_log.CHECK_EQ(-1, m_param.sparse, "Sparsity not supported by this Filler.");
94 }
95 }
96}
The Log class provides general output in text form.
Definition: Log.cs:13
void CHECK_EQ(double df1, double df2, string str)
Test whether one number is equal to another.
Definition: Log.cs:239
The CudaDnn object is the main interface to the Low-Level Cuda C++ DLL.
Definition: CudaDnn.cs:969
Fills a Blob with coefficients for bilinear interpolation.
override void Fill(int nCount, long hMem, int nNumAxes=1, int nNumOutputs=1, int nNumChannels=1, int nHeight=1, int nWidth=1)
Fill a memory with bilinear values.
BilinearFiller(CudaDnn< T > cuda, Log log, FillerParameter p)
Constructor.
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
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