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.

config.cs 393 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. using System.Text;
  5. namespace TensorFlowNET.Examples.ImageProcessing.YOLO
  6. {
  7. public class Config
  8. {
  9. string _root;
  10. public string CLASSES;
  11. public Config(string root)
  12. {
  13. _root = root;
  14. CLASSES = Path.Combine(_root, "data", "classes", "coco.names");
  15. }
  16. }
  17. }