MyCaffe  1.12.2.41
Deep learning software for Windows C# programmers.
ProgressArgs.cs
1// Copyright (c) 2018-2020 SignalPop LLC, and contributors. All rights reserved.
2// License: Apache 2.0
3// License: https://github.com/MyCaffe/MyCaffe/blob/master/LICENSE
4// Original Source: https://github.com/MyCaffe/MyCaffe/blob/master/MyCaffe.data/ProgressArgs.cs
5using System;
6using System.Collections.Generic;
7using System.Linq;
8using System.Text;
9using System.Threading.Tasks;
10
11namespace MyCaffe.data
12{
16 public class ProgressArgs : EventArgs
17 {
18 ProgressInfo m_pi;
19
25 {
26 m_pi = pi;
27 }
28
33 {
34 get { return m_pi; }
35 }
36 }
37}
Defines the arguments sent to the OnProgress and OnError events.
Definition: ProgressArgs.cs:17
ProgressInfo Progress
Returns the progress information.
Definition: ProgressArgs.cs:33
ProgressArgs(ProgressInfo pi)
The constructor.
Definition: ProgressArgs.cs:24
The ProgressInfo is used when reporting the overall progress of creating a dataset.
Definition: ProgressInfo.cs:17
The MyCaffe.data namespace contains dataset creators used to create common testing datasets such as M...
Definition: BinaryFile.cs:16