Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for JI (0.01 sec)

  1. tensorflow/cc/gradients/linalg_grad_test.cc

      auto y = Einsum(scope_, {x}, "ij->ji");
      TensorShape y_shape({3, 2});
      RunTest({x}, {x_shape}, {y}, {y_shape});
    }
    
    TEST_F(LinalgGradTest, Einsum_TransposeBroadcast) {
      TensorShape x_shape({3, 2, 3});
      Output x = Placeholder(scope_, DT_FLOAT, Placeholder::Shape(x_shape));
      auto y = Einsum(scope_, {x}, "...ij->...ji");
      TensorShape y_shape({3, 3, 2});
      RunTest({x}, {x_shape}, {y}, {y_shape});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 07 23:11:54 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  2. internal/store/queuestore.go

    	}
    
    	// Sort the entries.
    	sort.Slice(files, func(i, j int) bool {
    		ii, err := files[i].Info()
    		if err != nil {
    			return false
    		}
    		ji, err := files[j].Info()
    		if err != nil {
    			return true
    		}
    		return ii.ModTime().Before(ji.ModTime())
    	})
    
    	return files, nil
    }
    
    // Extension will return the file extension used
    // for the items stored in the queue.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 25 16:44:20 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. src/crypto/tls/testdata/Server-TLSv12-ALPN-NotConfigured

    000002e0  ee d2 9b ad 1b 3e a9 3c  7b 43 96 95 eb 4d b5 04  |.....>.<{C...M..|
    000002f0  1a 5f 0c b2 b3 a6 2c a4  e6 78 a8 b8 d5 6c 7f d0  |._....,..x...l..|
    00000300  16 e8 56 31 e0 4a 69 d3  6b 27 18 a3 4e f5 d1 6a  |..V1.Ji.k'..N..j|
    00000310  36 15 b5 fc 4d 15 50 90  a0 30 b9 49 3d ac 8c 84  |6...M.P..0.I=...|
    00000320  d2 15 31 70 df e5 a6 97  d0 64 f7 1d 8a a1 87 4d  |..1p.....d.....M|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/suggest/converter/KatakanaToAlphabetConverter.java

            map.put("グ", new String[] { "gu" });
            map.put("ゲ", new String[] { "ge" });
            map.put("ゴ", new String[] { "go" });
    
            map.put("ザ", new String[] { "za" });
            map.put("ジ", new String[] { "zi", "ji" });
            map.put("ズ", new String[] { "zu" });
            map.put("ゼ", new String[] { "ze" });
            map.put("ゾ", new String[] { "zo" });
    
            map.put("ダ", new String[] { "da" });
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top