Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 134 for modelSet (0.32 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. 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)
  8. 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)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseJdt.java

     *       whenMerged { jdt
     *         //you can tinker with the {@link Jdt} here
     *       }
     *
     *       //withProperties allows addition of properties not currently
     *       //modeled by Gradle
     *       withProperties { properties -&gt;
     *           //you can tinker with the {@link java.util.Properties} here
     *       }
     *     }
     *   }
     * }
     * </pre>
     */
    public abstract class EclipseJdt {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  10. docs/fr/docs/advanced/response-directly.md

    # Renvoyer directement une réponse
    
    Lorsque vous créez une *opération de chemins* **FastAPI**, vous pouvez normalement retourner n'importe quelle donnée : un `dict`, une `list`, un modèle Pydantic, un modèle de base de données, etc.
    
    Par défaut, **FastAPI** convertirait automatiquement cette valeur de retour en JSON en utilisant le `jsonable_encoder` expliqué dans [JSON Compatible Encoder](../tutorial/encoder.md){.internal-link target=_blank}.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top