aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/api_def/base_api/api_def_DecodeBase64.pbtxt
blob: 6bae3a62d7dfdbc71ececdd6fd3bba0f059a7498 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
op {
  graph_op_name: "DecodeBase64"
  in_arg {
    name: "input"
    description: <<END
Base64 strings to decode.
END
  }
  out_arg {
    name: "output"
    description: <<END
Decoded strings.
END
  }
  summary: "Decode web-safe base64-encoded strings."
  description: <<END
Input may or may not have padding at the end. See EncodeBase64 for padding.
Web-safe means that input must use - and _ instead of + and /.
END
}