We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5e14c2 commit cc2e090Copy full SHA for cc2e090
Examples/Examples.csproj
@@ -9,4 +9,8 @@
9
<ProjectReference Include="..\TorchSharp\TorchSharp.csproj" />
10
</ItemGroup>
11
12
+ <ItemGroup>
13
+ <Folder Include="Data\" />
14
+ </ItemGroup>
15
+
16
</Project>
Examples/MNIST.cs
@@ -10,7 +10,7 @@ public class MNIST
private readonly static int _epochs = 10;
private readonly static long _trainBatchSize = 64;
private readonly static long _testBatchSize = 1000;
- private readonly static string _dataLocation = @"E:/Source/Repos/LibTorchSharp/MNIST";
+ private readonly static string _dataLocation = @"../../../Data";
private readonly static int _logInterval = 10;
0 commit comments