Skip to content
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

ML.Net and Tensorflow integration demo. #3

Open
wants to merge 19 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 5 commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions src/Microsoft.ML.Transforms/Microsoft.ML.Transforms.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@
<DefineConstants>CORECLR</DefineConstants>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>CS8002;1591</NoWarn>
Copy link

@ericstj ericstj Aug 10, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Interesting that it isn't strong named. That will cause issues on desktop. We could ask for it to be strong named, or build our own copy.

Also this can be

<NoWarn>$(NoWarn);CS8002</NoWarn>

And placed in the main PropertyGroup @ line 7. #Resolved

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

FYI this is fixed with my changes #4


In reply to: 209299533 [](ancestors = 209299533)

<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>

<ItemGroup>
<None Remove="Text\StopWords\Arabic.txt" />
<None Remove="Text\StopWords\Czech.txt" />
Expand Down Expand Up @@ -44,6 +49,10 @@
<EmbeddedResource Include="Text\StopWords\Swedish.txt" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="TensorFlowSharp" Version="1.9.0" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Microsoft.ML.Api\Microsoft.ML.Api.csproj" />
<ProjectReference Include="..\Microsoft.ML.Core\Microsoft.ML.Core.csproj" />
Expand Down
Loading