Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for binomial (0.15 sec)

  1. guava/src/com/google/common/collect/Sets.java

                    return size;
                  }
                };
              }
            };
          }
    
          @Override
          public int size() {
            return IntMath.binomial(index.size(), size);
          }
    
          @Override
          public String toString() {
            return "Sets.combinations(" + index.keySet() + ", " + size + ")";
          }
        };
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  2. src/go/types/hilbert_test.go

    		g.p("\tprintln(")
    		for j := 0; j < n; j++ {
    			if j > 0 {
    				g.p(", ")
    			}
    			g.p("p%d_%d", i, j)
    		}
    		g.p(")\n")
    	}
    	g.p("}\n\n")
    }
    
    func (g *gen) binomials(n int) {
    	g.p(`// Binomials
    const (
    `)
    	for j := 0; j <= n; j++ {
    		if j > 0 {
    			g.p("\n")
    		}
    		for k := 0; k <= j; k++ {
    			g.p("\tb%d_%d = f%d / (f%d*f%d)\n", j, k, j, k, j-k)
    		}
    	}
    	g.p(")\n\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    def TF_StatelessRandomBinomialOp : TF_Op<"StatelessRandomBinomial", [Pure, TF_NoConstantFold]> {
      let summary = [{
    Outputs deterministic pseudorandom random numbers from a binomial distribution.
      }];
    
      let description = [{
    Outputs random values from a binomial distribution.
    
    The outputs are a deterministic function of `shape`, `seed`, `counts`, and `probs`.
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  4. RELEASE.md

        *   Add a new "result_type" parameter to `tf.strings.split`.
        *   Add name argument to `tf.string_split` and `tf.strings_split`.
        *   Extend `tf.strings.split` to support inputs with any rank.
        *   Added `tf.random.binomial`.
        *   Added `key` and `skip` methods to `random.experimental.Generator`.
        *   Extend `tf.function` with basic support for CompositeTensors arguments
            (such as `SparseTensor` and `RaggedTensor`).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*Float).UnmarshalText", Method, 6},
    		{"(*Int).Abs", Method, 0},
    		{"(*Int).Add", Method, 0},
    		{"(*Int).And", Method, 0},
    		{"(*Int).AndNot", Method, 0},
    		{"(*Int).Append", Method, 6},
    		{"(*Int).Binomial", Method, 0},
    		{"(*Int).Bit", Method, 0},
    		{"(*Int).BitLen", Method, 0},
    		{"(*Int).Bits", Method, 0},
    		{"(*Int).Bytes", Method, 0},
    		{"(*Int).Cmp", Method, 0},
    		{"(*Int).CmpAbs", Method, 10},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top