Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for BRAIN (0.35 sec)

  1. docs/tr/docs/features.md

    * Kullandığın geliştirme araçları ile iyi çalışır **<abbr title="Integrated Development Environment, kod editörüne benzer">IDE</abbr>/<abbr title="Code errorlarınızı inceleyen program">linter</abbr>/brain**:
        * Pydantic'in veri yapıları aslında sadece senin tanımladığın classlar; Bu yüzden doğrulanmış dataların ile otomatik tamamlama, linting ve mypy'ı kullanarak sorunsuz bir şekilde çalışabilirsin
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 11.1K bytes
    - Viewed (0)
  2. tensorflow/BUILD

    # TODO(b/173549186): Move Google-internal TF code out of learning/brain
    package_group(
        name = "internal",
        packages = [
            "//devtools/python/indexer/...",
            "//learning/brain/keras/...",
            "//learning/brain/mlir/...",
            "//learning/brain/tfrt/...",
            "//learning/lib/ami/simple_ml/...",
            "//learning/pathways/...",
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Apr 09 18:15:11 GMT 2024
    - 53.4K bytes
    - Viewed (6)
  3. docs/zh/docs/features.md

    * **更简单**:
        * 没有新的模式定义 micro-language 需要学习。
        * 如果你知道 Python types,你就知道如何使用 Pydantic。
    * 和你 **<abbr title="集成开发环境,和代码编辑器类似">IDE</abbr>/<abbr title="一个检查代码错误的程序">linter</abbr>/brain** 适配:
        * 因为 pydantic 数据结构仅仅是你定义的类的实例;自动补全,linting,mypy 以及你的直觉应该可以和你验证的数据一起正常工作。
    * 验证**复杂结构**:
        * 使用分层的 Pydantic 模型, Python `typing`的 `List` 和 `Dict` 等等。
        * 验证器使我们能够简单清楚的将复杂的数据模式定义、检查并记录为 JSON Schema。
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 9K bytes
    - Viewed (0)
  4. tensorflow/c/eager/BUILD

        ],
    )
    
    tf_cuda_library(
        name = "c_api_test_util",
        testonly = 1,
        srcs = ["c_api_test_util.cc"],
        hdrs = ["c_api_test_util.h"],
        visibility = [
            "//learning/brain:__subpackages__",
            "//tensorflow:__subpackages__",
        ],
        deps = [
            ":c_api",
            ":c_api_experimental",
            ":c_api_internal",
            "//tensorflow/c:c_test_util",
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Apr 11 23:52:39 GMT 2024
    - 33.3K bytes
    - Viewed (0)
  5. tensorflow/c/c_api.cc

    #include "tensorflow/core/platform/types.h"
    #include "tensorflow/core/public/session.h"
    #include "tensorflow/core/public/version.h"
    
    // The implementation below is at the top level instead of the
    // brain namespace because we are defining 'extern "C"' functions.
    using tensorflow::AttrValueMap;
    using tensorflow::DataType;
    using tensorflow::ExtendSessionGraphHelper;
    using tensorflow::FullTypeDef;
    using tensorflow::Graph;
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 102.3K bytes
    - Viewed (0)
Back to top