-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Port Time Series #977
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Port Time Series #977
Changes from all commits
Commits
Show all changes
48 commits
Select commit
Hold shift + click to select a range
e6d264b
time series.
codemzs 90f9cbe
Merge branch 'master' of https://github.com/dotnet/machinelearning in…
codemzs 393b1e0
fixes.
codemzs b4e34a5
more tests and PR feedback.
codemzs bf3e1f7
cleanup.
codemzs 14dc307
Merge branch 'master' of https://github.com/dotnet/machinelearning in…
codemzs da4d0ed
fix linux/macOS test failures.
codemzs 13af732
Merge branch 'master' of https://github.com/dotnet/machinelearning in…
codemzs f9d4ad8
PR feedback.
codemzs 948cc04
build break.
codemzs acadfa2
Add MKL proxy.
codemzs 21177c6
Merge branch 'master' of https://github.com/dotnet/machinelearning in…
codemzs ba44da2
Add MKL proxy.
codemzs 474de5a
fix tests.
codemzs 6bc60cb
Merge branch 'master' of https://github.com/dotnet/machinelearning in…
codemzs 52edb05
linux build break.
codemzs acf92d4
Merge branch 'master' of https://github.com/dotnet/machinelearning in…
codemzs be0a01b
fix tests.
codemzs efc5e60
Merge branch 'master' of https://github.com/dotnet/machinelearning in…
codemzs ee33ed0
Package time series into its own nuget and address PR comments.
codemzs 8ce7436
Merge branch 'master' of https://github.com/dotnet/machinelearning in…
codemzs 649406b
PR feedback.
codemzs 6f056d2
PR feedback.
codemzs 82588fe
PR feedback.
codemzs 994c6f6
remove mkl binaries from Time Series nuget.
codemzs 2e66689
remove mkl binaries from HAL and Time Series nugets.
codemzs 1dbd82b
Merge branch 'master' of https://github.com/dotnet/machinelearning in…
codemzs 5002d18
add rpath to mkllib and use that in mklproxy and symsgd native code t…
codemzs 32b36cd
misc.
codemzs 5dd59a2
change mkl lib id to contain rpath before linking happens with native…
codemzs a7b7a84
More tests.
codemzs 1c19bdb
Path combine.
codemzs 28ee009
Path combine.
codemzs d46e155
port over time series from TFS repo.
codemzs 61d5cb2
PR feedback.
codemzs e62ba6a
PR feedback.
codemzs 023ed8f
Merge branch 'master' of https://github.com/dotnet/machinelearning in…
codemzs c5ac54d
misc.
codemzs bb73184
cleanup.
codemzs be7ccff
Merge branch 'master' of https://github.com/dotnet/machinelearning in…
codemzs 4c08db4
clean up and enable a test.
codemzs 69a1006
Merge branch 'master' of https://github.com/dotnet/machinelearning in…
codemzs 9cefcdd
PR feedback.
codemzs 386e697
PR feedback.
codemzs b50543a
PR feedback.
codemzs 61ba084
PR feedback.
codemzs 81cae6f
PR feedback.
codemzs b30cbd2
PR feedback.
codemzs File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
pkg/Microsoft.ML.Mkl.Redist/Microsoft.ML.Mkl.Redist.nupkgproj
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| <Project Sdk="Microsoft.NET.Sdk" DefaultTargets="Pack"> | ||
|
|
||
| <PropertyGroup> | ||
| <Authors>Intel</Authors> | ||
codemzs marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| <TargetFramework>netstandard2.0</TargetFramework> | ||
| <PackageDescription>$(MSBuildProjectName) contains the MKL library redistributed as a NuGet package.</PackageDescription> | ||
| <PackageTags>$(PackageTags) MLNET MKL</PackageTags> | ||
| </PropertyGroup> | ||
|
|
||
| <ItemGroup> | ||
| <Content Include="..\common\CommonPackage.props" Pack="true" PackagePath="build\netstandard2.0\$(MSBuildProjectName).props" /> | ||
| <Content Include="$(PackagesDir)\mlnetmkldeps\$(MlNetMklDepsPackageVersion)\LICENSE.txt" Pack="true" PackagePath=".\NOTICE.txt" /> | ||
| </ItemGroup> | ||
| </Project> | ||
13 changes: 13 additions & 0 deletions
13
pkg/Microsoft.ML.TimeSeries/Microsoft.ML.TimeSeries.nupkgproj
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| <Project Sdk="Microsoft.NET.Sdk" DefaultTargets="Pack"> | ||
|
|
||
| <PropertyGroup> | ||
| <TargetFramework>netstandard2.0</TargetFramework> | ||
| <PackageDescription>Microsoft.ML.TimeSeries contains ML.NET Time Series prediction algorithms. Uses Intel Mkl.</PackageDescription> | ||
| </PropertyGroup> | ||
|
|
||
| <ItemGroup> | ||
| <ProjectReference Include="../Microsoft.ML/Microsoft.ML.nupkgproj" /> | ||
| <ProjectReference Include="../Microsoft.ML.Mkl.Redist/Microsoft.ML.Mkl.Redist.nupkgproj" /> | ||
| </ItemGroup> | ||
codemzs marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| </Project> | ||
5 changes: 5 additions & 0 deletions
5
pkg/Microsoft.ML.TimeSeries/Microsoft.ML.TimeSeries.symbols.nupkgproj
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| <Project DefaultTargets="Pack"> | ||
|
|
||
| <Import Project="Microsoft.ML.TimeSeries.nupkgproj" /> | ||
|
|
||
| </Project> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.