Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Sigma (0.04 sec)

  1. src/cmd/vendor/golang.org/x/text/cases/map.go

    		if !c.next() {
    			break
    		}
    		if wasMid && c.info.isMid() {
    			c.isMidWord = false
    		}
    	}
    	return c.retSpan()
    }
    
    // finalSigma adds Greek final Sigma handing to another casing function. It
    // determines whether a lowercased sigma should be σ or ς, by looking ahead for
    // case-ignorables and a cased letters.
    func finalSigma(f mapFunc) mapFunc {
    	return func(c *context) bool {
    		if !c.hasPrefix("Σ") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/replace_cast_hacks_with_tf_xla_ops.cc

    // What we want to calculate is: R = matmul(P-z, Q-w).
    // Then r_ij = sigma(k) (p_ik - z) * (q_kj - w)
    //           = sigma(k)(p_ik * q_kj) - w * sigma(k)p_ik - z * sigma(k)q_kj
    //             + sigma(k)z*w.
    // zp_input_contribution = z * sigma(k)q_kj
    // zp_weight_contribution = w * sigma(k)p_ik
    // In case z != 0 and w != 0, we need to additionally calculate sigma(k)z*w,
    // which is: # of reduced dim(n in this case) * input_zp * weight_zp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  3. src/mdo/reader-stax.vm

            entities.put("Nu", "\u039d");
            entities.put("Xi", "\u039e");
            entities.put("Omicron", "\u039f");
            entities.put("Pi", "\u03a0");
            entities.put("Rho", "\u03a1");
            entities.put("Sigma", "\u03a3");
            entities.put("Tau", "\u03a4");
            entities.put("Upsilon", "\u03a5");
            entities.put("Phi", "\u03a6");
            entities.put("Chi", "\u03a7");
            entities.put("Psi", "\u03a8");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  4. src/runtime/chan_test.go

    		default:
    			t.Fatalf("unexpected value %d on channel", b)
    		}
    	}
    	// If the select in the goroutine is fair,
    	// cnt1 and cnt2 should be about the same value.
    	// See if we're more than 10 sigma away from the expected value.
    	// 10 sigma is a lot, but we're ok with some systematic bias as
    	// long as it isn't too severe.
    	const mean = trials * 0.5
    	const variance = trials * 0.5 * (1 - 0.5)
    	stddev := math.Sqrt(variance)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:47:35 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  5. src/mdo/reader.vm

            entities.put("Nu", "\u039d");
            entities.put("Xi", "\u039e");
            entities.put("Omicron", "\u039f");
            entities.put("Pi", "\u03a0");
            entities.put("Rho", "\u03a1");
            entities.put("Sigma", "\u03a3");
            entities.put("Tau", "\u03a4");
            entities.put("Upsilon", "\u03a5");
            entities.put("Phi", "\u03a6");
            entities.put("Chi", "\u03a7");
            entities.put("Psi", "\u03a8");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
  6. src/encoding/xml/xml.go

    	"Kappa":    "\u039A",
    	"Lambda":   "\u039B",
    	"Mu":       "\u039C",
    	"Nu":       "\u039D",
    	"Xi":       "\u039E",
    	"Omicron":  "\u039F",
    	"Pi":       "\u03A0",
    	"Rho":      "\u03A1",
    	"Sigma":    "\u03A3",
    	"Tau":      "\u03A4",
    	"Upsilon":  "\u03A5",
    	"Phi":      "\u03A6",
    	"Chi":      "\u03A7",
    	"Psi":      "\u03A8",
    	"Omega":    "\u03A9",
    	"alpha":    "\u03B1",
    	"beta":     "\u03B2",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
Back to top