Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Hegazy (0.21 sec)

  1. ci/official/utilities/code_check_full.bats

    #
    # Although buildifier checks for formatting as well, "bazel build nobuild"
    # checks for cross-file issues like bad includes or missing BUILD definitions.
    #
    # We can't test on the windows toolchains because they're using a legacy
    # toolchain format (or something) that specifies the toolchain directly instead
    # of as a "repository". They can't be valid on Linux because Linux can't do
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Mar 06 21:54:13 GMT 2024
    - 13.2K bytes
    - Viewed (0)
  2. .bazelrc

    # TODO(mihaimaruseac): Document this option or remove if no longer needed
    build --define=grpc_no_ares=true
    
    # See https://github.com/bazelbuild/bazel/issues/7362 for information on what
    # --incompatible_remove_legacy_whole_archive flag does.
    # This flag is set to true in Bazel 1.0 and newer versions. We tried to migrate
    # Tensorflow to the default, however test coverage wasn't enough to catch the
    # errors.
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Apr 23 01:21:54 GMT 2024
    - 53.4K bytes
    - Viewed (2)
  3. tensorflow/api_template_v1.__init__.py

    _current_module.layers = _KerasLazyLoader(
        globals(),
        submodule="__internal__.legacy.layers",
        name="layers",
        mode="v1")
    if _tf_uses_legacy_keras:
      _module_dir = _module_util.get_parent_dir_for_name(
          "tf_keras.api._v1.keras.__internal__.legacy.layers")
    else:
      _module_dir = _module_util.get_parent_dir_for_name(
          "keras.api._v1.keras.__internal__.legacy.layers")
    _current_module.__path__ = [_module_dir] + _current_module.__path__
    Python
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Jan 23 02:14:00 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  4. tensorflow/c/eager/immediate_execution_context.h

          Status* status) = 0;
    
      // Create an operation to perform op execution
      ImmediateExecutionOperation* CreateOperation() override = 0;
    
      // Returns whether the runtime is backed by TFRT or the legacy TF Eager
      // Runtime. This is necessary to decouple runtime-dependent
      // code that is layered on top of the runtime.
      virtual bool UsesTFRT() = 0;
    
      // List attributes of available devices
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Jul 06 08:34:00 GMT 2023
    - 12.3K bytes
    - Viewed (0)
  5. RELEASE.md

            checkpoint, please change your optimizer to
            `tf.keras.optimizers.legacy.XXX` (e.g.
            `tf.keras.optimizers.legacy.Adam`).
        *   **TF1 compatibility.** The new optimizer does not support TF1 any more,
            so please use the legacy optimizer `tf.keras.optimizer.legacy.XXX`.
            We highly recommend to migrate your workflow to TF2 for stable
            support and new features.
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Apr 03 20:27:38 GMT 2024
    - 727.4K bytes
    - Viewed (8)
  6. tensorflow/BUILD

    #     define_values = {
    #         "tf_no_prod_deps": "1",
    #         "GOOGLE_CUDA_COMPILER": "clang",
    #     },
    # )
    # copybara:uncomment_end
    
    config_setting(
        name = "lite_protos_legacy",
        define_values = {"TENSORFLOW_PROTOS": "lite"},
        visibility = ["//visibility:public"],
    )
    
    config_setting(
        name = "full_protos",
        define_values = {"TENSORFLOW_PROTOS": "full"},
    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)
  7. tensorflow/api_template.__init__.py

    # Lazy-load Keras v2/3.
    _tf_uses_legacy_keras = (
        _os.environ.get("TF_USE_LEGACY_KERAS", None) in ("true", "True", "1"))
    setattr(_current_module, "keras", _KerasLazyLoader(globals()))
    _module_dir = _module_util.get_parent_dir_for_name("keras._tf_keras.keras")
    _current_module.__path__ = [_module_dir] + _current_module.__path__
    if _tf_uses_legacy_keras:
    Python
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Mar 05 06:27:59 GMT 2024
    - 6.7K bytes
    - Viewed (3)
  8. ci/official/containers/linux_arm64/devel.usertools/code_check_full.bats

    #
    # Although buildifier checks for formatting as well, "bazel build nobuild"
    # checks for cross-file issues like bad includes or missing BUILD definitions.
    #
    # We can't test on the windows toolchains because they're using a legacy
    # toolchain format (or something) that specifies the toolchain directly instead
    # of as a "repository". They can't be valid on Linux because Linux can't do
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Sep 18 14:52:45 GMT 2023
    - 12.7K bytes
    - Viewed (0)
  9. tensorflow/c/c_api.h

    // - `inputs` and `outputs` cannot have reference types. Reference types are
    //   not exposed through C API and are being replaced with Resources. We support
    //   reference types inside function's body to support legacy code. Do not
    //   use them in new code.
    // - Every node in the function's body must have all of its inputs (including
    //   control inputs). In other words, for every node in the body, each input
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Oct 26 21:08:15 GMT 2023
    - 82.3K bytes
    - Viewed (3)
Back to top