Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 134 for modelSet (0.13 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model_ops.td

        dicts/lists with tensors as leaves (composite tensors here mostly behave as
        just dicts holding other tensors).
        The arity of the Python-level function is modeled as an outer list.
        Additionally, any variables or constants used by the function are implicitly
        appended to the argument list of the underlying func in a way that is
        transparent to the caller.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/incubating/build-organization/publishing-convention-plugins/README.adoc

    We want to apply a set of code quality checking rules to both types of projects and configure some aspects specific to each type.
    
    
    == Organizing build logic
    
    The use case can be modelled by layering three separate plugins:
    
    ====
    [.multi-language-sample]
    =====
    .Build logic layout
    [source, kotlin]
    ----
    ├── convention-plugins
    │   ├── build.gradle.kts
    │   ├── settings.gradle.kts
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/build-organization/publishing-convention-plugins/README.adoc

    We want to apply a set of code quality checking rules to both types of projects and configure some aspects specific to each type.
    
    
    == Organizing build logic
    
    The use case can be modelled by layering three separate plugins:
    
    ====
    [.multi-language-sample]
    =====
    .Build logic layout
    [source, kotlin]
    ----
    ├── convention-plugins
    │   ├── build.gradle.kts
    │   ├── settings.gradle.kts
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/featurelifecycle/LoggingDeprecatedFeatureHandler.java

                    InternalProblemSpec problemSpec = builder
                        // usage.getKind() could be be part of the problem ID, however it provides hints on the problem provenance which should be modeled differently, maybe as location data.
                        .id(getDefaultDeprecationIdDisplayName(usage), usage.getProblemIdDisplayName(), GradleCoreProblemGroup.deprecation())
                        .contextualLabel(usage.getSummary())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  5. docs/de/docs/tutorial/path-params.md

    !!! tip "Tipp"
        Falls Sie sich fragen, was „AlexNet“, „ResNet“ und „LeNet“ ist, das sind Namen von <abbr title="Genau genommen, Deep-Learning-Modellarchitekturen">Modellen</abbr> für maschinelles Lernen.
    
    ### Deklarieren Sie einen *Pfad-Parameter*
    
    Dann erstellen Sie einen *Pfad-Parameter*, der als Typ die gerade erstellte Enum-Klasse hat (`ModelName`):
    
    ```Python hl_lines="16"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:28:59 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. src/go/types/expr.go

    	check.singleValue(x)
    }
    
    // exclude reports an error if x.mode is in modeset and sets x.mode to invalid.
    // The modeset may contain any of 1<<novalue, 1<<builtin, 1<<typexpr.
    func (check *Checker) exclude(x *operand, modeset uint) {
    	if modeset&(1<<x.mode) != 0 {
    		var msg string
    		var code Code
    		switch x.mode {
    		case novalue:
    			if modeset&(1<<typexpr) != 0 {
    				msg = "%s used as value"
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  7. docs/de/docs/features.md

    * Validierung von **komplexen Strukturen**:
        * Benutzung von hierarchischen Pydantic-Modellen, Python-`typing`s `List` und `Dict`, etc.
        * Die Validierer erlauben es, komplexe Datenschemen klar und einfach zu definieren, überprüft und dokumentiert als JSON Schema.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 19:43:43 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. docs/fr/docs/tutorial/first-steps.md

    Vous pouvez aussi retourner des models **Pydantic** (qui seront détaillés plus tard).
    
    Il y a de nombreux autres objets et modèles qui seront automatiquement convertis en JSON. Essayez d'utiliser vos favoris, il est fort probable qu'ils soient déjà supportés.
    
    ## Récapitulatif
    
    * Importez `FastAPI`.
    * Créez une instance d'`app`.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Sep 27 20:52:31 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testcarchive/carchive_test.go

    	const (
    		magic = "!<arch>\n"
    		fmag  = "`\n"
    
    		namelen = 16
    		datelen = 12
    		uidlen  = 6
    		gidlen  = 6
    		modelen = 8
    		sizelen = 10
    		fmaglen = 2
    		hdrlen  = namelen + datelen + uidlen + gidlen + modelen + sizelen + fmaglen
    	)
    
    	type arhdr struct {
    		name string
    		date string
    		uid  string
    		gid  string
    		mode string
    		size string
    		fmag string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  10. cmd/sftp-server-driver.go

    			minio.PutObjectOptions{DisableContentSha256: true},
    		)
    		return err
    	}
    
    	return NotImplemented{}
    }
    
    type listerAt []os.FileInfo
    
    // Modeled after strings.Reader's ReadAt() implementation
    func (f listerAt) ListAt(ls []os.FileInfo, offset int64) (int, error) {
    	var n int
    	if offset >= int64(len(f)) {
    		return 0, io.EOF
    	}
    	n = copy(ls, f[offset:])
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top