Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 708 for medan (0.08 sec)

  1. src/main/resources/fess_indices/fess/no/stopwords.txt

    eitt
    elles
    honom
    hjå
    ho
    hoe
    henne
    hennar
    hennes
    hoss
    hossen
    ikkje
    ingi
    inkje
    korleis
    korso
    kva
    kvar
    kvarhelst
    kven
    kvi
    kvifor
    me
    medan
    mi
    mine
    mykje
    no
    nokon
    noka
    nokor
    noko
    nokre
    si
    sia
    sidan
    so
    somt
    somme
    um
    upp
    vere
    vore
    verte
    vort
    varte
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 994 bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/_aws/fess.json

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Mar 23 12:38:28 UTC 2021
    - 117.3K bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/_cloud/fess.json

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 27 09:26:16 UTC 2021
    - 117.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/aot/benchmark.cc

      snprintf(buf, kBufSize, "Mean with %2.0f%% trimmed:", trim_ratio * 100);
      std::string label_trimmed(buf);
      snprintf(buf, kBufSize, "Mean of %2.0f%% best:", best_ratio * 100);
      std::string label_best(buf);
      std::vector<std::pair<std::string, double>> groups = {
          {"Best:", sorted_us.front()},
          {"Worst:", sorted_us.back()},
          {"Median:", sorted_us[count_us / 2]},
          {"Mean:", sum_us / count_us},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 12 19:45:29 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  5. pkg/test/loadbalancersim/timeseries/data.go

    )
    
    type Data []float64
    
    func (d Data) Min() float64 {
    	return d.sorted().min()
    }
    
    func (d Data) Max() float64 {
    	return d.sorted().max()
    }
    
    func (d Data) Median() float64 {
    	return d.Quantile(0.5)
    }
    
    func (d Data) Mean() float64 {
    	total := float64(0)
    	for _, v := range d {
    		total += v
    	}
    	return total / float64(len(d))
    }
    
    func (d Data) Quantile(phi float64) float64 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 03 18:19:25 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/BaselineVersion.groovy

            return myTime && myTime.median < otherTime.median && differenceSignificantCheck.test(myTime, otherTime)
        }
    
        boolean significantlySlowerThan(MeasuredOperationList other, double minConfidence = MINIMUM_CONFIDENCE) {
            def myTime = results.totalTime
            def otherTime = other.totalTime
            myTime && myTime.median > otherTime.median && differenceIsSignificant(myTime, otherTime, minConfidence)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/tests/unfuse_mhlo_batch_norm.mlir

      // CHECK-DAG: %[[EPS:.+]] = mhlo.constant dense<1.000000e+00> : tensor<256xf32>
      // CHECK-DAG: %[[MEAN:.+]] = "tf.Mean"(%arg0, %[[CST_AXIS]]) <{keep_dims = false}> : (tensor<3x4x256x6xf32>, tensor<3xi32>) -> tensor<256xf32>
      // CHECK-DAG: %[[MEAN_BCAST:.+]] = "mhlo.dynamic_broadcast_in_dim"(%[[MEAN]], %[[X_SHAPE]]) <{broadcast_dimensions = dense<2> : tensor<1xi64>}> : (tensor<256xf32>, tensor<4xindex>) -> tensor<3x4x256x6xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/math/Stats.java

            mean += (value - mean) / (index + 1);
          } else {
            mean = calculateNewMeanNonFinite(mean, value);
          }
        }
        return mean;
      }
    
      /**
       * Returns the <a href="http://en.wikipedia.org/wiki/Arithmetic_mean">arithmetic mean</a> of the
       * values. The count must be non-zero.
       *
       * <p>The definition of the mean is the same as {@link Stats#mean}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 22K bytes
    - Viewed (0)
  9. guava/src/com/google/common/math/StatsAccumulator.java

          }
        } else {
          count++;
          if (isFinite(value) && isFinite(mean)) {
            // Art of Computer Programming vol. 2, Knuth, 4.2.2, (15) and (16)
            double delta = value - mean;
            mean += delta / count;
            sumOfSquaresOfDeltas += delta * (value - mean);
          } else {
            mean = calculateNewMeanNonFinite(mean, value);
            sumOfSquaresOfDeltas = NaN;
          }
          min = Math.min(min, value);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/math/StatsTest.java

          } else if (values.hasAnyNegativeInfinity()) {
            assertWithMessage("mean of " + values).that(mean).isNegativeInfinity();
          } else {
            assertWithMessage("mean of " + values)
                .that(mean)
                .isWithin(ALLOWED_ERROR)
                .of(MANY_VALUES_MEAN);
          }
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 28.4K bytes
    - Viewed (0)
Back to top