aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/api_def/base_api/api_def_SlideDataset.pbtxt
blob: ddde3ee5b4ef1d82cc244563d4835e319a9dc50a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
op {
  graph_op_name: "SlideDataset"
  in_arg {
    name: "window_size"
    description: <<END
A scalar representing the number of elements in the
sliding window.
END
  }
  in_arg {
    name: "window_shift"
    description: <<END
A scalar representing the steps moving the sliding window
forward in one iteration. It must be positive.
END
  }
  in_arg {
    name: "window_stride"
    description: <<END
A scalar representing the stride of the input elements of the sliding window.
It must be positive.
END
  }
  summary: "Creates a dataset that passes a sliding window over `input_dataset`."
}