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 425 B

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