Skip to content

Commit 3019f8c

Browse files
committed
changes from PR comments
1 parent 2d1208c commit 3019f8c

File tree

3 files changed

+20
-7
lines changed

3 files changed

+20
-7
lines changed

Directory.Build.props

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json;
2020
https://dotnet.myget.org/F/dotnet-core/api/v3/index.json;
2121
https://dotnet.myget.org/F/roslyn-analyzers/api/v3/index.json;
22-
https://pkgs.dev.azure.com/dnceng/public/_packaging/MachineLearning/nuget/v3/index.json;
2322
</RestoreSources>
2423
</PropertyGroup>
2524

pkg/Microsoft.ML.Featurizers/Microsoft.ML.Featurizers.nupkgproj

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,11 @@
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
5-
<PackageDescription>Additional ML.NET featurizers for AutoML</PackageDescription>
5+
<PackageDescription>Additional ML.NET featurizers</PackageDescription>
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Microsoft.ML" Version="1.4.0-preview3*" />
10-
<PackageReference Include="Microsoft.ML.DataView" Version="1.4.0-preview3*" />
9+
<ProjectReference Include="../Microsoft.ML/Microsoft.ML.nupkgproj" />
1110

1211
<PackageReference Include="Microsoft.MLFeaturizers" Version="0.3.5" />
1312
</ItemGroup>

src/Microsoft.ML.Featurizers/Common.cs

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,24 @@ internal enum FitResult : byte
1919
// Not all these types are currently supported. This is so the ordering will allign with the native code.
2020
internal enum TypeId : uint
2121
{
22-
String = 1, SByte, Short, Int, Long, Byte, UShort,
23-
UInt, ULong, Float16, Float32, Double, Complex64,
24-
Complex128, BFloat16, Bool, Timepoint, Duration,
22+
String = 1,
23+
SByte,
24+
Short,
25+
Int,
26+
Long,
27+
Byte,
28+
UShort,
29+
UInt,
30+
ULong,
31+
Float16,
32+
Float32,
33+
Double,
34+
Complex64,
35+
Complex128,
36+
BFloat16,
37+
Bool,
38+
Timepoint,
39+
Duration,
2540

2641
LastStaticValue,
2742
Tensor = 0x1001 | LastStaticValue + 1,

0 commit comments

Comments
 (0)