You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What did you do?
Create a .NET Core console project that references the latest version of Microsoft.ML.TensorFlow.
What happened?
I don't get a reference to the Microsoft.ML.TensorFlow.dll. I only get a reference to DnnAnalyzer.dll
What did you expect?
I expected to get a reference to Microsoft.ML.TensorFlow.dll so I could call methods in it.
Notes
The reason this happens is because we are including the DnnAnalyzer.dll in the lib\netcoreapp2.0 directory of the Microsoft.ML.TensorFlow nuget package:
NuGet only picks assets from 1 of these folders. And since my app is .NET Core, it only picks the assemblies from the lib\netcoreapp2.0 directory.
We shouldn't be putting DnnAnalyzer in the lib folder at the least. Perhaps we should consider a better place for tooling to get this info. Does ML.NET have any other command-line tools? Have we considered a CLI extension?
We have the Maml.exe command line tool, which currently doesn't ship publicly. We've discussed making it a "global tool", but haven't executed on that plan.
@TomFinley - I think you may have been mistaken. This isn’t the test break that just occurred. This is a problem with the assets in our NuGet packages. Specifically in the TensorFlow package.
System information
Issue
What did you do?
Create a .NET Core console project that references the latest version of
Microsoft.ML.TensorFlow
.What happened?

I don't get a reference to the
Microsoft.ML.TensorFlow.dll
. I only get a reference toDnnAnalyzer.dll
What did you expect?
I expected to get a reference to
Microsoft.ML.TensorFlow.dll
so I could call methods in it.Notes
The reason this happens is because we are including the
DnnAnalyzer.dll
in thelib\netcoreapp2.0
directory of theMicrosoft.ML.TensorFlow
nuget package:NuGet only picks assets from 1 of these folders. And since my app is .NET Core, it only picks the assemblies from the
lib\netcoreapp2.0
directory./cc @ericstj @yaeldekel @abgoswam
The text was updated successfully, but these errors were encountered: