MyCaffe  1.12.2.41
Deep learning software for Windows C# programmers.
CiFar10DataParameters.cs
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6
7namespace MyCaffe.data
8{
13 {
14 string m_strDataBatchFile1;
15 string m_strDataBatchFile2;
16 string m_strDataBatchFile3;
17 string m_strDataBatchFile4;
18 string m_strDataBatchFile5;
19 string m_strTestBatchFile;
20
30 public CiFar10DataParameters(string strDataBatchFile1, string strDataBatchFile2, string strDataBatchFile3, string strDataBatchFile4, string strDataBatchFile5, string strTestBatchFile)
31 {
32 m_strDataBatchFile1 = strDataBatchFile1;
33 m_strDataBatchFile2 = strDataBatchFile2;
34 m_strDataBatchFile3 = strDataBatchFile3;
35 m_strDataBatchFile4 = strDataBatchFile4;
36 m_strDataBatchFile5 = strDataBatchFile5;
37 m_strTestBatchFile = strTestBatchFile;
38 }
39
43 public string DataBatchFile1
44 {
45 get { return m_strDataBatchFile1; }
46 }
47
51 public string DataBatchFile2
52 {
53 get { return m_strDataBatchFile2; }
54 }
55
59 public string DataBatchFile3
60 {
61 get { return m_strDataBatchFile3; }
62 }
63
67 public string DataBatchFile4
68 {
69 get { return m_strDataBatchFile4; }
70 }
71
75 public string DataBatchFile5
76 {
77 get { return m_strDataBatchFile5; }
78 }
79
83 public string TestBatchFile
84 {
85 get { return m_strTestBatchFile; }
86 }
87 }
88}
Contains the dataset parameters used to create the CIFAR-10 dataset.
string DataBatchFile2
Specifies the second training dataset file 'data_batch_2.bin'
CiFar10DataParameters(string strDataBatchFile1, string strDataBatchFile2, string strDataBatchFile3, string strDataBatchFile4, string strDataBatchFile5, string strTestBatchFile)
The constructor.
string TestBatchFile
Specifies the testing dataset file 'test_batch.bin'
string DataBatchFile3
Specifies the third training dataset file 'data_batch_3.bin'
string DataBatchFile1
Specifies the first training dataset file 'data_batch_1.bin'
string DataBatchFile4
Specifies the fourth training dataset file 'data_batch_4.bin'
string DataBatchFile5
Specifies the fifth training dataset file 'data_batch_5.bin'
The MyCaffe.data namespace contains dataset creators used to create common testing datasets such as M...
Definition: BinaryFile.cs:16