Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for transpositions (0.17 sec)

  1. src/main/resources/fess_config.properties

    query.boost.fuzzy.title.expansions=10
    query.boost.fuzzy.title.prefix_length=0
    query.boost.fuzzy.title.transpositions=true
    query.boost.fuzzy.content=0.005
    query.boost.fuzzy.content.fuzziness=AUTO
    query.boost.fuzzy.content.expansions=10
    query.boost.fuzzy.content.prefix_length=0
    query.boost.fuzzy.content.transpositions=true
    
    query.prefix.expansions=50
    query.prefix.slop=0
    query.fuzzy.prefix_length=0
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/einsum.cc

      std::vector<int64_t> output(input.size());
      for (int64_t i = 0; i < input.size(); ++i) {
        output[permutation[i]] = input[i];
      }
      return output;
    }
    
    // Computes the transpositions required to convert dnums to one supported by
    // tf.BatchMatmulV2 and returns the new set of dimension numbers with them.
    // Transposed LHS shape will be B0,...,Bn,L0,...,Ln,C0,...,Cn and,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /**
         * Get the value for the key 'query.boost.fuzzy.title.transpositions'. <br>
         * The value is, e.g. true <br>
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getQueryBoostFuzzyTitleTranspositions();
    
        /**
         * Is the property for the key 'query.boost.fuzzy.title.transpositions' true? <br>
         * The value is, e.g. true <br>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 459.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/passes/fold_constant_transpose.cc

      for (auto [i, dimension] : llvm::reverse(llvm::zip_equal(indices, shape))) {
        contiguous_offset += base_offset * i;
        base_offset *= dimension;
      }
    
      return contiguous_offset;
    }
    
    // Performs transposition of a tensor represented as a contiguous element array.
    // Assumes row-major order. The shape of the input tensor and the desired
    // permutation is registered during construction, and calling `TransposeValues`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. src/crypto/internal/mlkem768/mlkem768.go

    // ML-KEM (formerly known as Kyber).
    //
    // Only the recommended ML-KEM-768 parameter set is provided.
    //
    // The version currently implemented is the one specified by [NIST FIPS 203 ipd],
    // with the unintentional transposition of the matrix A reverted to match the
    // behavior of [Kyber version 3.0]. Future versions of this package might
    // introduce backwards incompatible changes to implement changes to FIPS 203.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  6. RELEASE.md

        Direct batched convolution Pooling: maximum, minimum, average Normalization:
        LRN, batch normalization Activation: rectified linear unit (ReLU) Data
        manipulation: multi-dimensional transposition (conversion), split, concat,
        sum and scale.
    
    *   TensorForest Estimator now supports SavedModel export for serving.
    
    *   Support client-provided ClusterSpec's and propagate them to all workers to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top