Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 118 for modelSet (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.cc

      // attribute determines if the op can be duplicated.
      if (auto is_stateless = op->getAttrOfType<BoolAttr>("is_stateless"))
        return is_stateless.getValue();
    
      // Assume ops can be duplicated if modelled.
      return op->isRegistered();
    }
    
    // TF dialect fallback for MemoryEffectOpInterface. The filtering for returning
    // the interface is done in the return below and here it is empty as it is only
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionPropertyIntegrationTest.groovy

            run("merge")
    
            then:
            result.assertTasksNotSkipped(":createDirs", ":merge")
            file("output/merged.txt").text == 'new-dir1,new-dir1'
        }
    
        def "can wire a set of output files modelled using a project level property as input to a task"() {
            buildFile """
                class FileOutputTask extends DefaultTask {
                    @InputFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/sharing_build_logic_between_subprojects.adoc

    === Convention plugins versus cross-configuration
    
    The two most common uses of cross-configuration can be better modeled using convention plugins:
    
    1. Applying plugins or other configurations to subprojects of a certain type. +
    Often, the cross-configuration logic is `if subproject is of type X, then configure Y`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 12:58:46 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. docs/de/docs/tutorial/first-steps.md

    {!../../../docs_src/first_steps/tutorial001.py!}
    ```
    
    Sie können ein `dict`, eine `list`, einzelne Werte wie `str`, `int`, usw. zurückgeben.
    
    Sie können auch Pydantic-Modelle zurückgeben (dazu später mehr).
    
    Es gibt viele andere Objekte und Modelle, die automatisch zu JSON konvertiert werden (einschließlich ORMs usw.). Versuchen Sie, Ihre Lieblingsobjekte zu verwenden. Es ist sehr wahrscheinlich, dass sie bereits unterstützt werden.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jan 13 12:16:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. docs/fr/docs/tutorial/path-params.md

    !!! tip "Astuce"
        Pour ceux qui se demandent, "AlexNet", "ResNet", et "LeNet" sont juste des noms de <abbr title="Techniquement, des architectures de modèles">modèles</abbr> de Machine Learning.
    
    ### Déclarer un paramètre de chemin
    
    Créez ensuite un *paramètre de chemin* avec une annotation de type désignant l'énumération créée précédemment (`ModelName`) :
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights_test.cc

    using mlir::lite::BufferType;
    using mlir::lite::CustomOpMap;
    using mlir::lite::QuantizeWeights;
    constexpr bool kUseUpdatedHybridSchemeDefault = true;
    
    std::unique_ptr<ModelT> CreateMutableModelFromFile(const Model* input_model) {
      auto copied_model = std::make_unique<ModelT>();
      input_model->UnPackTo(copied_model.get(), nullptr);
      return copied_model;
    }
    
    std::unique_ptr<FlatBufferModel> ReadTestModel() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/MessageBuilder.java

            return style(style).a(message).resetStyle();
        }
    
        MessageBuilder style(String style);
    
        MessageBuilder resetStyle();
    
        //
        // message building methods modelled after Ansi methods
        //
    
        @Nonnull
        @Override
        MessageBuilder append(CharSequence cs);
    
        @Nonnull
        @Override
        MessageBuilder append(CharSequence cs, int start, int end);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 08 10:37:09 UTC 2024
    - 7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ResolutionResultGraphBuilder.java

        // TODO: Dependency locking failures should be attached to the resolution result just like
        // dependency verification failures are. Dependency locking failures are not unresolved dependencies
        // and should not be modeled as one.
        public void addDependencyLockingFailures(long rootId, Set<UnresolvedDependency> extraFailures) {
            DefaultResolvedComponentResult root = components.get(rootId);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. docs/de/docs/how-to/separate-openapi-schemas.md

    Sehen wir uns an, wie das funktioniert und wie Sie es bei Bedarf ändern können.
    
    ## Pydantic-Modelle für Eingabe und Ausgabe
    
    Nehmen wir an, Sie haben ein Pydantic-Modell mit Defaultwerten wie dieses:
    
    === "Python 3.10+"
    
        ```Python hl_lines="7"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:18:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  10. docs/de/docs/tutorial/body-multiple-params.md

        {!> ../../../docs_src/body_multiple_params/tutorial002.py!}
        ```
    
    In diesem Fall wird **FastAPI** bemerken, dass es mehr als einen Body-Parameter in der Funktion gibt (zwei Parameter, die Pydantic-Modelle sind).
    
    Es wird deshalb die Parameternamen als Schlüssel (Feldnamen) im Body verwenden, und erwartet einen Body wie folgt:
    
    ```JSON
    {
        "item": {
            "name": "Foo",
            "description": "The pretender",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 29 17:32:43 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top