Browse Source

F# example project structure adjusted

tags/v0.9
degtiadr 6 years ago
parent
commit
917ff43e77
4 changed files with 6 additions and 6 deletions
  1. +5
    -5
      TensorFlow.NET.sln
  2. +0
    -0
      test/TensorFlowNET.Examples.FSharp/FunctionApproximation.fs
  3. +0
    -0
      test/TensorFlowNET.Examples.FSharp/Program.fs
  4. +1
    -1
      test/TensorFlowNET.Examples.FSharp/TensorFlowNET.Examples.FSharp.fsproj

+ 5
- 5
TensorFlow.NET.sln View File

@@ -15,7 +15,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Keras.Example", "test\Keras
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Keras.UnitTest", "test\KerasNET.Test\Keras.UnitTest.csproj", "{A5839A45-A117-4BEA-898B-DE1ED6E0D58F}"
EndProject
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "TensorFlowNET.Examples.FSharp", "TensorFlowNET.Examples.FSharp\TensorFlowNET.Examples.FSharp.fsproj", "{B3B14578-1BC4-41AE-9116-6A6B2CE5E182}"
Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "TensorFlowNET.Examples.FSharp", "test\TensorFlowNET.Examples.FSharp\TensorFlowNET.Examples.FSharp.fsproj", "{62BC3801-F0D3-44A9-A0AC-712F40C8F961}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -47,10 +47,10 @@ Global
{A5839A45-A117-4BEA-898B-DE1ED6E0D58F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A5839A45-A117-4BEA-898B-DE1ED6E0D58F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A5839A45-A117-4BEA-898B-DE1ED6E0D58F}.Release|Any CPU.Build.0 = Release|Any CPU
{B3B14578-1BC4-41AE-9116-6A6B2CE5E182}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B3B14578-1BC4-41AE-9116-6A6B2CE5E182}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B3B14578-1BC4-41AE-9116-6A6B2CE5E182}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B3B14578-1BC4-41AE-9116-6A6B2CE5E182}.Release|Any CPU.Build.0 = Release|Any CPU
{62BC3801-F0D3-44A9-A0AC-712F40C8F961}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{62BC3801-F0D3-44A9-A0AC-712F40C8F961}.Debug|Any CPU.Build.0 = Debug|Any CPU
{62BC3801-F0D3-44A9-A0AC-712F40C8F961}.Release|Any CPU.ActiveCfg = Release|Any CPU
{62BC3801-F0D3-44A9-A0AC-712F40C8F961}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE


TensorFlowNET.Examples.FSharp/FunctionApproximation.fs → test/TensorFlowNET.Examples.FSharp/FunctionApproximation.fs View File


TensorFlowNET.Examples.FSharp/Program.fs → test/TensorFlowNET.Examples.FSharp/Program.fs View File


TensorFlowNET.Examples.FSharp/TensorFlowNET.Examples.FSharp.fsproj → test/TensorFlowNET.Examples.FSharp/TensorFlowNET.Examples.FSharp.fsproj View File

@@ -11,7 +11,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\src\TensorFlowNET.Core\TensorFlowNET.Core.csproj" />
<ProjectReference Include="..\..\src\TensorFlowNET.Core\TensorFlowNET.Core.csproj" />
</ItemGroup>

</Project>

Loading…
Cancel
Save