Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NY (0.01 sec)

  1. tensorflow/c/c_api.h

    //
    // `dx` are used as initial gradients (which represent the symbolic partial
    // derivatives of some loss function `L` w.r.t. `y`).
    // `dx` must be nullptr or have size `ny`.
    // If `dx` is nullptr, the implementation will use dx of `OnesLike` for all
    // shapes in `y`.
    // The partial derivatives are returned in `dy`. `dy` should be allocated to
    // size `nx`.
    //
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  2. src/bytes/bytes_test.go

    	{space + "abc" + space, []byte("abc")},
    	{" ", nil},
    	{"\u3000 ", nil},
    	{" \u3000", nil},
    	{" \t\r\n \t\t\r\r\n\n ", nil},
    	{" \t\r\n x\t\t\r\r\n\n ", []byte("x")},
    	{" \u2000\t\r\n x\t\t\r\r\ny\n \u3000", []byte("x\t\t\r\r\ny")},
    	{"1 \t\r\n2", []byte("1 \t\r\n2")},
    	{" x\x80", []byte("x\x80")},
    	{" x\xc0", []byte("x\xc0")},
    	{"x \xc0\xc0 ", []byte("x \xc0\xc0")},
    	{"x \xc0", []byte("x \xc0")},
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Mon Jul 28 18:13:58 UTC 2025
    - 62.9K bytes
    - Viewed (0)
Back to top