Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for create_model (0.17 sec)

  1. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    			load_node	: function (obj, s_call, e_call) { this.__callback({ "obj" : obj }); },
    			_is_loaded	: function (obj) { return true; },
    
    			// Basic operations: create
    			create_node	: function (obj, position, js, callback, is_loaded) {
    				obj = this._get_node(obj);
    				position = typeof position === "undefined" ? "last" : position;
    				var d = $("<li />"),
    					s = this._get_settings().core,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	}
    	return
    }
    
    func CreateFile(name *uint16, access uint32, mode uint32, sa *SecurityAttributes, createmode uint32, attrs uint32, templatefile Handle) (handle Handle, err error) {
    	r0, _, e1 := syscall.Syscall9(procCreateFileW.Addr(), 7, uintptr(unsafe.Pointer(name)), uintptr(access), uintptr(mode), uintptr(unsafe.Pointer(sa)), uintptr(createmode), uintptr(attrs), uintptr(templatefile), 0, 0)
    	handle = Handle(r0)
    	if handle == InvalidHandle {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/schema/schema_generated.h

      return tflite::CreateModel(
          _fbb,
          version,
          operator_codes__,
          subgraphs__,
          description__,
          buffers__,
          metadata_buffer__,
          metadata__,
          signature_defs__);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        // index in the subgraph list.
        ++subgraph_index;
      }
      auto signature_defs = CreateSignatureDefs(signature_defs_vec);
    
      auto model = tflite::CreateModel(builder_, TFLITE_SCHEMA_VERSION,
                                       builder_.CreateVector(opcodes_),
                                       builder_.CreateVector(subgraphs_),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
Back to top