You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

TestHelper.cs 360 B

5 years ago
5 years ago
5 years ago
12345678910111213
  1. using System.IO;
  2. namespace TensorFlowNET.UnitTest
  3. {
  4. public class TestHelper
  5. {
  6. public static string GetFullPathFromDataDir(string fileName)
  7. {
  8. var dir = Path.Combine(Directory.GetCurrentDirectory(), "..", "..", "..", "..", "..", "data");
  9. return Path.GetFullPath(Path.Combine(dir, fileName));
  10. }
  11. }
  12. }