Skip to content

Commit 32cfd49

Browse files
remove culture info
1 parent 7a4372e commit 32cfd49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Microsoft.ML.AutoML/Utils/SweepableParamAttributes.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ public SweepableFloatParam(float min, float max, float stepSize = -1, int numSte
145145

146146
public override void SetUsingValueText(string valueText)
147147
{
148-
RawValue = float.Parse(valueText, CultureInfo.InvariantCulture);
148+
RawValue = float.Parse(valueText);
149149
}
150150

151151
public override SweepableParam Clone() =>

0 commit comments

Comments
 (0)