Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for addTarget (0.09 sec)

  1. cmd/test-utils_test.go

    	color.Output = io.Discard
    	// Disable Error logging in testing.
    	logger.DisableErrorLog = true
    
    	// Uncomment the following line to see trace logs during unit tests.
    	// logger.AddTarget(console.New())
    
    	// Set system resources to maximum.
    	setMaxResources(serverCtxt{})
    
    	// Initialize globalConsoleSys system
    	globalConsoleSys = NewConsoleLogger(context.Background(), io.Discard)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/loader.cc

      }
      for (const string& output_tensor_name : output_tensor_names) {
        callable_options.add_fetch(output_tensor_name);
      }
      for (const string& target_node_name : target_node_names) {
        callable_options.add_target(target_node_name);
      }
    
      Session::CallableHandle callable_handle;
      TF_RETURN_IF_ERROR(session->MakeCallable(callable_options, &callable_handle));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 04:36:00 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top