Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for the_tag (0.2 sec)

  1. tensorflow/c/eager/gradient_checker.cc

        // Take Difference of both estimates: (f(theta + eps) - f(theta - eps)).
        TF_RETURN_IF_ERROR(
            ops::Sub(ctx, fPlus.get(), fMinus.get(), f_outputs, "sub_top"));
        AbstractTensorHandlePtr fDiff(f_outputs[0]);
    
        // Calculate using the difference quotient definition:
        // (f(theta + eps) - f(theta - eps)) / (2 * eps).
        TF_RETURN_IF_ERROR(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. src/math/cmplx/pow.go

    	}
    	modulus := Abs(x)
    	if modulus == 0 {
    		return complex(0, 0)
    	}
    	r := math.Pow(modulus, real(y))
    	arg := Phase(x)
    	theta := real(y) * arg
    	if imag(y) != 0 {
    		r *= math.Exp(-imag(y) * arg)
    		theta += imag(y) * math.Log(modulus)
    	}
    	s, c := math.Sincos(theta)
    	return complex(r*c, r*s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/filesystem/modular_filesystem.cc

      memset(&option, 0, sizeof(option));
      option.name = const_cast<char*>(name.c_str());
      TF_Filesystem_Option_Value option_value;
      memset(&option_value, 0, sizeof(option_value));
      option_value.type_tag = TF_Filesystem_Option_Type_Buffer;
      option_value.num_values = values.size();
      std::vector<TF_Filesystem_Option_Value_Union> option_values(values.size());
      for (size_t i = 0; i < values.size(); i++) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/rsc.io/markdown/entity.go

    	"&tfr;":                             "\U0001d531",
    	"&there4;":                          "\u2234",
    	"&therefore;":                       "\u2234",
    	"&theta;":                           "\u03b8",
    	"&thetasym;":                        "\u03d1",
    	"&thetav;":                          "\u03d1",
    	"&thickapprox;":                     "\u2248",
    	"&thicksim;":                        "\u223c",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  5. src/cmd/vet/vet_test.go

    // TestTags verifies that the -tags argument controls which files to check.
    func TestTags(t *testing.T) {
    	t.Parallel()
    	for tag, wantFile := range map[string]int{
    		"testtag":     1, // file1
    		"x testtag y": 1,
    		"othertag":    2,
    	} {
    		tag, wantFile := tag, wantFile
    		t.Run(tag, func(t *testing.T) {
    			t.Parallel()
    			t.Logf("-tags=%s", tag)
    			cmd := vetCmd(t, "-tags="+tag, "tagtest")
    			output, err := cmd.CombinedOutput()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 01:02:40 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  6. src/mdo/reader-stax.vm

            entities.put("Delta", "\u0394");
            entities.put("Epsilon", "\u0395");
            entities.put("Zeta", "\u0396");
            entities.put("Eta", "\u0397");
            entities.put("Theta", "\u0398");
            entities.put("Iota", "\u0399");
            entities.put("Kappa", "\u039a");
            entities.put("Lambda", "\u039b");
            entities.put("Mu", "\u039c");
            entities.put("Nu", "\u039d");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  7. src/mdo/reader.vm

            entities.put("Delta", "\u0394");
            entities.put("Epsilon", "\u0395");
            entities.put("Zeta", "\u0396");
            entities.put("Eta", "\u0397");
            entities.put("Theta", "\u0398");
            entities.put("Iota", "\u0399");
            entities.put("Kappa", "\u039a");
            entities.put("Lambda", "\u039b");
            entities.put("Mu", "\u039c");
            entities.put("Nu", "\u039d");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
  8. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    0397          ; mapped                 ; 03B7          # 1.1  GREEK CAPITAL LETTER ETA
    0398          ; mapped                 ; 03B8          # 1.1  GREEK CAPITAL LETTER THETA
    0399          ; mapped                 ; 03B9          # 1.1  GREEK CAPITAL LETTER IOTA
    039A          ; mapped                 ; 03BA          # 1.1  GREEK CAPITAL LETTER KAPPA
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  9. src/encoding/xml/xml.go

    	"fnof":     "\u0192",
    	"Alpha":    "\u0391",
    	"Beta":     "\u0392",
    	"Gamma":    "\u0393",
    	"Delta":    "\u0394",
    	"Epsilon":  "\u0395",
    	"Zeta":     "\u0396",
    	"Eta":      "\u0397",
    	"Theta":    "\u0398",
    	"Iota":     "\u0399",
    	"Kappa":    "\u039A",
    	"Lambda":   "\u039B",
    	"Mu":       "\u039C",
    	"Nu":       "\u039D",
    	"Xi":       "\u039E",
    	"Omicron":  "\u039F",
    	"Pi":       "\u03A0",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      let summary = [{
    Computes arctangent of `y/x` element-wise, respecting signs of the arguments.
      }];
    
      let description = [{
    This is the angle \\( \theta \in [-\pi, \pi] \\) such that
    \\[ x = r \cos(\theta) \\]
    and
    \\[ y = r \sin(\theta) \\]
    where \\(r = \sqrt{x^2 + y^2} \\).
    
    For example:
    
    >>> x = [1., 1.]
    >>> y = [1., -1.]
    >>> print((tf.math.atan2(y,x) * (180 / np.pi)).numpy())
    [ 45. -45.]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top