Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 631 for initializers (0.23 sec)

  1. tensorflow/api_template.__init__.py

    _optimizers = _KerasLazyLoader(
        globals(), submodule="optimizers", name="optimizers")
    _initializers = _KerasLazyLoader(
        globals(), submodule="initializers", name="initializers")
    setattr(_current_module, "losses", _losses)
    setattr(_current_module, "metrics", _metrics)
    setattr(_current_module, "optimizers", _optimizers)
    setattr(_current_module, "initializers", _initializers)
    
    
    Python
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Mar 05 06:27:59 GMT 2024
    - 6.7K bytes
    - Viewed (3)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirClassInitializerSymbol.kt

            KtPsiBasedSymbolPointer.createForSymbolFromSource<KtClassInitializerSymbol>(this)?.let { return it }
            TODO("Figure out how to create such a pointer. Should we give an index to class initializers?")
        }
    
        override val symbolKind: KtSymbolKind get() = withValidityAssertion { KtSymbolKind.CLASS_MEMBER }
    
        override val typeParameters: List<KtTypeParameterSymbol> get() = withValidityAssertion { emptyList() }
    Plain Text
    - Registered: Fri Mar 22 08:18:09 GMT 2024
    - Last Modified: Fri Feb 03 14:29:54 GMT 2023
    - 2.2K bytes
    - Viewed (0)
  3. .idea/dictionaries/valentin.xml

    <component name="ProjectDictionaryState">
      <dictionary name="valentin">
        <words>
          <w>decapitalize</w>
          <w>delegator</w>
          <w>elipsis</w>
          <w>funs</w>
          <w>immediates</w>
          <w>initializers</w>
          <w>inserter</w>
          <w>negatable</w>
          <w>pparent</w>
          <w>precheck</w>
          <w>prioritizer</w>
          <w>processings</w>
          <w>rbrace</w>
          <w>rbracket</w>
          <w>renderers</w>
    XML
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Tue Sep 13 14:46:16 GMT 2016
    - 605 bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionInfoProvider.kt

                // Destructuring declarations use their initializer.
                is KtDestructuringDeclaration ->
                    parent.initializer == child
    
                // Backing field declarations use their initializer.
                is KtBackingField ->
                    parent.initializer == child
    
                // Property accessors can use their bodies if not blocks.
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Mon Feb 12 20:38:23 GMT 2024
    - 17.6K bytes
    - Viewed (0)
  5. tensorflow/c/eager/parallel_device/BUILD

    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        licenses = ["notice"],
    )
    
    # Currently pybind extension shared objects must use only C API headers since
    # the C API has static initializers duplicated in the Python bindings. So we
    # need a second rule that omits .cc files, in
    # tensorflow/python:_pywrap_parallel_device.
    filegroup(
        name = "lib_headers",
        srcs = ["parallel_device_lib.h"],
    )
    
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 01 20:19:06 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.8.md

    * Use of the alpha initializers feature now requires enabling the `Initializers` feature gate. This feature gate is automatically enabled if the `Initializers` admission plugin is enabled.([#51436](https://github.com/kubernetes/kubernetes/pull/51436))
    
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Tue Feb 20 15:45:02 GMT 2024
    - 312.2K bytes
    - Viewed (1)
  7. CHANGELOG/CHANGELOG-1.9.md

    * Action required: validation rule on metadata.initializers.pending[x].name is tightened. The initializer name needs to contain at least three segments separated by dots. If you create objects with pending initializers, (i.e., not relying on apiserver adding pending initializers according to initializerconfiguration), you need to update the initializer name in existing objects and in configuration files to comply to the new validation rule. ([#512...
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Tue Nov 16 10:46:27 GMT 2021
    - 313.7K bytes
    - Viewed (0)
  8. RELEASE.md

    *   `tf.all_variables`, `tf.VARIABLES` and `tf.initialize_all_variables` renamed
        to `tf.global_variables`, `tf.GLOBAL_VARIABLES` and
        `tf.global_variables_initializer` respectively.
    *   `tf.zeros_initializer()` and `tf.ones_initializer()` now return a callable
        that must be called with initializer arguments, in your code replace
        `tf.zeros_initializer` with `tf.zeros_initializer()`
    
    ## Bug Fixes and Other Changes
    
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
  9. CHANGELOG/CHANGELOG-1.14.md

    * Scale max-inflight limits together with master VM sizes. ([#73268](https://github.com/kubernete...
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Mon Jun 14 22:06:39 GMT 2021
    - 271.5K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.7.md

    * [alpha] Adding admissionregistration API group which enables dynamic registration of initializers and external admission webhooks. ([#46294](https://github.com/kubernetes/kubernetes/pull/46294), [@caesarxuchao](https://github.com/caesarxuchao))
    
    
    ### **Application Deployment**
    #### StatefulSet
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Thu May 05 13:44:43 GMT 2022
    - 308.7K bytes
    - Viewed (1)
Back to top