We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6210c38 commit fa75f4fCopy full SHA for fa75f4f
src/Microsoft.ML.AutoML/Sweepers/Parameters.cs
@@ -4,6 +4,7 @@
4
5
using System;
6
using System.Collections.Generic;
7
+using System.Globalization;
8
using Microsoft.ML.Internal.Utilities;
9
10
namespace Microsoft.ML.AutoML
@@ -128,7 +129,7 @@ public FloatParameterValue(string name, float value)
128
129
Runtime.Contracts.Assert(!float.IsNaN(value));
130
_name = name;
131
_value = value;
- _valueText = _value.ToString("R");
132
+ _valueText = _value.ToString("R", CultureInfo.InvariantCulture);
133
}
134
135
public bool Equals(IParameterValue other)
0 commit comments