Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for correlation (0.34 sec)

  1. guava-tests/test/com/google/common/math/PairedStatsAccumulatorTest.java

            assertWithMessage("Pearson's correlation coefficient of " + values)
                .that(pearsonsCorrelationCoefficient)
                .isNaN();
            assertWithMessage("Pearson's correlation coefficient by addAll(PairedStats) of " + values)
                .that(pearsonsCorrelationCoefficient)
                .isNaN();
          } else {
            assertWithMessage("Pearson's correlation coefficient of " + values)
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 23.4K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/math/PairedStatsAccumulatorTest.java

            assertWithMessage("Pearson's correlation coefficient of " + values)
                .that(pearsonsCorrelationCoefficient)
                .isNaN();
            assertWithMessage("Pearson's correlation coefficient by addAll(PairedStats) of " + values)
                .that(pearsonsCorrelationCoefficient)
                .isNaN();
          } else {
            assertWithMessage("Pearson's correlation coefficient of " + values)
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 23.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/math/PairedStatsAccumulator.java

        checkState(count() > 1);
        return sumOfProductsOfDeltas / (count() - 1);
      }
    
      /**
       * Returns the <a href="http://mathworld.wolfram.com/CorrelationCoefficient.html">Pearson's or
       * product-moment correlation coefficient</a> of the values. The count must greater than one, and
       * the {@code x} and {@code y} values must both have non-zero population variance (i.e. {@code
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri May 12 17:02:53 GMT 2023
    - 10.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/math/PairedStats.java

        checkState(count() > 1);
        return sumOfProductsOfDeltas / (count() - 1);
      }
    
      /**
       * Returns the <a href="http://mathworld.wolfram.com/CorrelationCoefficient.html">Pearson's or
       * product-moment correlation coefficient</a> of the values. The count must greater than one, and
       * the {@code x} and {@code y} values must both have non-zero population variance (i.e. {@code
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri May 12 17:02:53 GMT 2023
    - 12.6K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/math/PairedStatsTest.java

          if (values.hasAnyNonFinite()) {
            assertWithMessage("Pearson's correlation coefficient of " + values)
                .that(pearsonsCorrelationCoefficient)
                .isNaN();
          } else {
            assertWithMessage("Pearson's correlation coefficient of " + values)
                .that(pearsonsCorrelationCoefficient)
                .isWithin(ALLOWED_ERROR)
                .of(
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 14K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/math/PairedStatsTest.java

          if (values.hasAnyNonFinite()) {
            assertWithMessage("Pearson's correlation coefficient of " + values)
                .that(pearsonsCorrelationCoefficient)
                .isNaN();
          } else {
            assertWithMessage("Pearson's correlation coefficient of " + values)
                .that(pearsonsCorrelationCoefficient)
                .isWithin(ALLOWED_ERROR)
                .of(
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 14K bytes
    - Viewed (0)
  7. cni/pkg/nodeagent/ztunnelserver.go

    				log.Errorf("failed to handle conn: %v", err)
    			}
    		}()
    	}
    }
    
    // ZDS protocol is very simple, for every message sent, and ack is sent.
    // the ack only has temporal correlation (i.e. it is the first and only ack msg after the message was sent)
    // All this to say, that we want to make sure that message to ztunnel are sent from a single goroutine
    // so we don't mix messages and acks.
    // nolint: unparam
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Apr 12 21:47:31 GMT 2024
    - 12.4K bytes
    - Viewed (0)
  8. build-logic/binary-compatibility/src/main/groovy/gradlebuild/EnrichedReportRenderer.groovy

                        getAllErrorCorrections().forEach((correction) => {
                            correction.acceptation = reason;
                            result.acceptedApiChanges.push(correction);
                        });
                        // Sort the array in place by type, then member
    Groovy
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Feb 07 20:38:43 GMT 2023
    - 7.2K bytes
    - Viewed (0)
  9. src/archive/tar/strconv.go

    	} else {
    		sn = sn[:maxNanoSecondDigits] // Right truncate
    	}
    	nsecs, _ := strconv.ParseInt(sn, 10, 64) // Must succeed
    	if len(ss) > 0 && ss[0] == '-' {
    		return time.Unix(secs, -1*nsecs), nil // Negative correction
    	}
    	return time.Unix(secs, nsecs), nil
    }
    
    // formatPAXTime converts ts into a time of the form %d.%d as described in the
    // PAX specification. This function is capable of negative timestamps.
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 01 14:28:42 GMT 2023
    - 9K bytes
    - Viewed (0)
  10. RELEASE.md

    *   Other:
        *   Add `tf.contrib.distributions.Kumaraswamy`.
        *   `RetryingFileSystem::FlushCaches()` calls the base FileSystem's
            `FlushCaches()`.
        *   Add `auto_correlation` to distributions.
        *   Add `tf.contrib.distributions.Autoregressive`.
        *   Add SeparableConv1D layer.
        *   Add convolutional Flipout layers.
    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)
Back to top