Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for parseValues (0.1 sec)

  1. operator/pkg/manifest/shared.go

    	for _, kv := range setOverlay {
    		kvv := strings.Split(kv, "=")
    		if len(kvv) != 2 {
    			return "", fmt.Errorf("bad argument %s: expect format key=value", kv)
    		}
    		k := kvv[0]
    		v := util.ParseValue(kvv[1])
    		if err := tpath.WriteNode(tree, util.PathFromString(k), v); err != nil {
    			return "", err
    		}
    		// To make errors more user friendly, test the path and error out immediately if we cannot unmarshal.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 06:27:07 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  2. RELEASE.md

        *   `LinearOperator.matmul` now returns a new `LinearOperator`.
    *   New ops and improved op functionality
        *   Add a Nearest Neighbor Resize op.
        *   Add an `ignore_unknown` argument to `parse_values` which suppresses
            ValueError for unknown hyperparameter types. Such * Add
            `tf.linalg.matvec` convenience function.
        *   `tf.einsum()`raises `ValueError` for unsupported equations like
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top