Skip to content

Commit da973ba

Browse files
authored
Add Microsoft.ML as a dependency of Microsoft.ML.MatrixFactorization and rename Nuget Microsoft.ML.MatrixFactorization to Microsoft.ML.Recommender (dotnet#2081)
* Add Microsoft.ML as a dependency of Microsoft.ML.MatrixFactorization * Rename Microsoft.ML.MatrixFactorization Nuget to Microsoft.ML.Recommender
1 parent c8755a2 commit da973ba

File tree

7 files changed

+12
-10
lines changed

7 files changed

+12
-10
lines changed

docs/release-notes/0.8/release-0.8.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,8 @@ Below are some of the highlights from this release.
8686
* Example usage can be found
8787
[here](https://github.com/dotnet/machinelearning/blob/71d58fa83f77abb630d815e5cf8aa9dd3390aa65/test/Microsoft.ML.Tests/TrainerEstimators/MatrixFactorizationTests.cs#L335).
8888
You'll need to add the Microsoft.ML.MatrixFactorization NuGet to your
89-
project.
89+
project. After ML.NET 0.9, please switch to Microsoft.ML.Recommender
90+
Nuget.
9091

9192
* Enabled saving and loading data as a binary file (IDataView/IDV)
9293
([#1678](https://github.com/dotnet/machinelearning/pull/1678))
@@ -123,4 +124,4 @@ Shoutout to [jwood803](https://github.com/jwood803),
123124
[rantri](https://github.com/rantri), [Caraul](https://github.com/Caraul),
124125
[van-tienhoang](https://github.com/van-tienhoang),
125126
[Thomas-S-B](https://github.com/Thomas-S-B), and the ML.NET team for their
126-
contributions as part of this release!
127+
contributions as part of this release!

pkg/Microsoft.ML.MatrixFactorization/Microsoft.ML.MatrixFactorization.symbols.nupkgproj

-5
This file was deleted.

pkg/Microsoft.ML.MatrixFactorization/Microsoft.ML.MatrixFactorization.nupkgproj pkg/Microsoft.ML.Recommender/Microsoft.ML.Recommender.nupkgproj

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9+
<ProjectReference Include="../Microsoft.ML/Microsoft.ML.nupkgproj" />
910
<Content Include="..\common\CommonPackage.props" Pack="true" PackagePath="build\netstandard2.0\$(MSBuildProjectName).props" />
1011
<Content Include="$(SourceDir)Native\MatrixFactorizationNative\libmf\COPYRIGHT" Pack="true" PackagePath=".\" />
1112
</ItemGroup>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<Project DefaultTargets="Pack">
2+
3+
<Import Project="Microsoft.ML.Recommender.nupkgproj" />
4+
5+
</Project>

pkg/Microsoft.ML.StaticPipe/Microsoft.ML.StaticPipe.nupkgproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<ItemGroup>
99
<ProjectReference Include="../Microsoft.ML/Microsoft.ML.nupkgproj" />
1010
<ProjectReference Include="../Microsoft.ML.ImageAnalytics/Microsoft.ML.ImageAnalytics.nupkgproj" />
11-
<ProjectReference Include="../Microsoft.ML.MatrixFactorization/Microsoft.ML.MatrixFactorization.nupkgproj" />
11+
<ProjectReference Include="../Microsoft.ML.Recommender/Microsoft.ML.Recommender.nupkgproj" />
1212
</ItemGroup>
1313

1414
</Project>

src/Microsoft.ML.Recommender/Microsoft.ML.Recommender.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
5-
<IncludeInPackage>Microsoft.ML.MatrixFactorization</IncludeInPackage>
5+
<IncludeInPackage>Microsoft.ML.Recommender</IncludeInPackage>
66
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
77
</PropertyGroup>
88

src/Native/build.proj

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
<NativePackageAsset Include="$(NativeAssetsBuiltPath)\$(NativeLibPrefix)MklProxyNative$(NativeLibExtension)"
9797
RelativePath="Microsoft.ML.Mkl.Redist\runtimes\$(PackageRid)\native" />
9898
<NativePackageAsset Include="$(NativeAssetsBuiltPath)\$(NativeLibPrefix)MatrixFactorizationNative$(NativeLibExtension)"
99-
RelativePath="Microsoft.ML.MatrixFactorization\runtimes\$(PackageRid)\native" />
99+
RelativePath="Microsoft.ML.Recommender\runtimes\$(PackageRid)\native" />
100100
</ItemGroup>
101101

102102
<ItemGroup>

0 commit comments

Comments
 (0)