Exemplo n.º 1
0
 public ExampleConfig InitConfig()
 => Config = new ExampleConfig
 {
     Name             = "YOLOv3",
     Enabled          = false,
     IsImportingGraph = true
 };
Exemplo n.º 2
0
 public ExampleConfig InitConfig()
 => Config = new ExampleConfig
 {
     Name     = "GAN MNIST",
     Enabled  = true,
     Priority = 50
 };
 public ExampleConfig InitConfig()
 => Config = new ExampleConfig
 {
     Name             = "CIFAR10 ResNet (Keras Functional)",
     Enabled          = false,
     IsImportingGraph = false
 };
		//Example of ServiceStack's built-in Funq IOC constructor injection
		public GetFibonacciNumbersService(ExampleConfig config)
		{
			this.config = config;
		}
Exemplo n.º 5
0
 public ExampleConfig InitConfig()
 => Config = new ExampleConfig
 {
     Name    = "YOLOv3 (Eager)",
     Enabled = true
 };
 public ExampleConfig InitConfig()
 => Config = new ExampleConfig
 {
     Name    = "YOLOv4 (Keras)",
     Enabled = false
 };