Skip to content

Commit cc2e090

Browse files
authored
some minor refactoring (#4)
1 parent c5e14c2 commit cc2e090

File tree

3 files changed

+611
-1
lines changed

3 files changed

+611
-1
lines changed

Examples/Examples.csproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,8 @@
99
<ProjectReference Include="..\TorchSharp\TorchSharp.csproj" />
1010
</ItemGroup>
1111

12+
<ItemGroup>
13+
<Folder Include="Data\" />
14+
</ItemGroup>
15+
1216
</Project>

Examples/MNIST.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public class MNIST
1010
private readonly static int _epochs = 10;
1111
private readonly static long _trainBatchSize = 64;
1212
private readonly static long _testBatchSize = 1000;
13-
private readonly static string _dataLocation = @"E:/Source/Repos/LibTorchSharp/MNIST";
13+
private readonly static string _dataLocation = @"../../../Data";
1414

1515
private readonly static int _logInterval = 10;
1616

0 commit comments

Comments
 (0)