forked from mdabros/SharpLearning
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTransform.cs
More file actions
23 lines (21 loc) · 690 Bytes
/
Copy pathTransform.cs
File metadata and controls
23 lines (21 loc) · 690 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
namespace SharpLearning.Optimization
{
/// <summary>
/// Enum for specifying predefined parameter samplers
/// </summary>
public enum Transform
{
/// <summary>
/// Linear scale. For ranges with a small difference in numerical scale, like min: 64 and max: 256.
/// </summary>
Linear,
/// <summary>
/// Logarithmic scale. For ranges with a large difference in numerical scale, like min: 0.0001 and max: 1.0.
/// </summary>
Log10,
/// <summary>
/// ExponentialAverage scale. For ranges close to one, like min: 0.9 and max: 0.999.
/// </summary>
ExponentialAverage
}
}