Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 134 for modelSet (0.38 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-gradient-def.pbtxt

    # RUN: tf-mlir-translate -graphdef-to-mlir -tf-enable-shape-inference-on-import=false %s -o - | FileCheck %s
    
    # In GraphDef custom gradient functions are modeled using GradientDef which
    # links the function and its gradient. In MLIR a TF ops gradient function is
    # added to its list of function attributes.
    
    # CHECK: func private @foo0(
    # CHECK:   tf.gradient = @foo_grad
    
    node {
      name: "Const"
      op: "Const"
      attr {
        key: "dtype"
        value {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 11 19:14:04 UTC 2020
    - 4.3K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/AbstractIdeLifecycleIntegrationTest.groovy

            run lifeCycleTaskName, cleanTaskName
    
            then:
            assertGenerationTasksRunBeforeCleanTasks()
        }
    
        @ToBeFixedForConfigurationCache
        def "clean tasks always run before generation tasks when modeled as a dependency"() {
            given:
            buildFile << """
                allprojects {
                    tasks.${lifeCycleTaskName}.dependsOn tasks.${cleanTaskName}
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  3. docs/de/docs/tutorial/body-fields.md

    # Body – Felder
    
    So wie Sie zusätzliche Validation und Metadaten in Parametern der **Pfadoperation-Funktion** mittels `Query`, `Path` und `Body` deklarieren, können Sie auch innerhalb von Pydantic-Modellen zusätzliche Validation und Metadaten deklarieren, mittels Pydantics `Field`.
    
    ## `Field` importieren
    
    Importieren Sie es zuerst:
    
    === "Python 3.10+"
    
        ```Python hl_lines="4"
        {!> ../../../docs_src/body_fields/tutorial001_an_py310.py!}
        ```
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 29 17:36:19 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. docs/fr/docs/advanced/additional-status-codes.md

    ```
    
    !!! warning "Attention"
        Lorsque vous renvoyez une `Response` directement, comme dans l'exemple ci-dessus, elle sera renvoyée directement.
    
        Elle ne sera pas sérialisée avec un modèle.
    
        Assurez-vous qu'il contient les données souhaitées et que les valeurs soient dans un format JSON valides (si vous utilisez une `JSONResponse`).
    
    !!! note "Détails techniques"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. docs/de/docs/advanced/response-directly.md

    !!! tip "Tipp"
        `JSONResponse` selbst ist eine Unterklasse von `Response`.
    
    Und wenn Sie eine `Response` zurückgeben, wird **FastAPI** diese direkt weiterleiten.
    
    Es wird keine Datenkonvertierung mit Pydantic-Modellen durchführen, es wird den Inhalt nicht in irgendeinen Typ konvertieren, usw.
    
    Dadurch haben Sie viel Flexibilität. Sie können jeden Datentyp zurückgeben, jede Datendeklaration oder -validierung überschreiben, usw.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:19:36 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecatedFeatureUsage.java

             * but the usage happens during runtime and may be associated to a logical entity (e.g. task, plugin).
             *
             * The association between a usage and entity is not modelled by the usage,
             * but can be inferred from the operation stream (for deprecations, for which operation progress events are emitted).
             *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. docs/fr/docs/index.md

        * les types Python (`str`, `int`, `float`, `bool`, `list`, etc).
        * les objets `datetime`.
        * les objets `UUID`.
        * les modèles de base de données.
        * ... et beaucoup plus.
    * La documentation API interactive automatique, avec 2 interfaces utilisateur au choix :
        * Swagger UI.
        * ReDoc.
    
    ---
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 22K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/resources/decomposition_lib.mlir

    // result to the ops in the TF dialect.
    //
    // All the tfr.func functions are supposed to be translated from the Python
    // function with tf.composite annotation.
    // All the external tfr.func functions modeles the op signature defined by
    // OpDefs.
    
    tfr.func @tf__my_add_n(%values: !tfr.tensor_list,
                           %n: i64 {tfr.name="N"}) -> !tfr.tensor {
      %index = arith.constant 0 : index
      %cst = arith.constant 1 : i64
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 13 16:33:28 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/maven/MavenDependencyDescriptor.java

         */
        @Nullable
        public IvyArtifactName getDependencyArtifact() {
            return dependencyArtifact;
        }
    
        /**
         * When a Maven dependency declares a classifier or type attribute, this is modelled as a 'dependency artifact'.
         * This means that instead of resolving the default artifacts for the target dependency, we'll use the one defined
         * for the dependency.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/cpp/internal/DefaultCppTestExecutable.java

        @Override
        public Property<RunTestExecutable> getRunTask() {
            return runTask;
        }
    
        @Override
        public FileCollection getCompileIncludePath() {
            // TODO: This should be modeled differently, perhaps as a dependency on the implementation configuration
            return super.getCompileIncludePath().plus(getProjectLayout().files(new Callable<FileCollection>() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.3K bytes
    - Viewed (0)
Back to top