tf.keras.preprocessing.timeseries_dataset_from_array
Stay organized with collections
Save and categorize content based on your preferences.
Creates a dataset of sliding windows over a timeseries provided as array.
tf.keras.preprocessing.timeseries_dataset_from_array(
data, targets, sequence_length, sequence_stride=1, sampling_rate=1,
batch_size=128, shuffle=False, seed=None, start_index=None, end_index=None
)
This function takes in a sequence of data-points gathered at
equal intervals, along with time series parameters such as
length of the sequences/windows, spacing between two sequence/windows, etc.,
to produce batches of timeseries inputs and targets.
Arguments |
data
|
Numpy array or eager tensor
containing consecutive data points (timesteps).
Axis 0 is expected to be the time dimension.
|
targets
|
Targets corresponding to timesteps in data .
It should have same length as data . targets[i] should be the target
corresponding to the window that starts at index i
(see example 2 below).
Pass None if you don't have target data (in this case the dataset will
only yield the input data).
|
sequence_length
|
Length of the output sequences (in number of timesteps).
|
sequence_stride
|
Period between successive output sequences.
For stride s , output samples would
start at index data[i] , data[i + s] , data[i + 2 * s] , etc.
|
sampling_rate
|
Period between successive individual timesteps
within sequences. For rate r , timesteps
data[i], data[i + r], ... data[i + sequence_length]
are used for create a sample sequence.
|
batch_size
|
Number of timeseries samples in each batch
(except maybe the last one).
|
shuffle
|
Whether to shuffle output samples,
or instead draw them in chronological order.
|
seed
|
Optional int; random seed for shuffling.
|
start_index
|
Optional int; data points earlier (exclusive)
than start_index will not be used
in the output sequences. This is useful to reserve part of the
data for test or validation.
|
end_index
|
Optional int; data points later (exclusive) than end_index
will not be used in the output sequences.
This is useful to reserve part of the data for test or validation.
|
Returns |
A tf.data.Dataset instance. If targets was passed, the dataset yields
tuple (batch_of_sequences, batch_of_targets) . If not, the dataset yields
only batch_of_sequences .
|
Example 1:
Consider indices [0, 1, ... 99]
.
With sequence_length=10, sampling_rate=2, sequence_stride=3
,
shuffle=False
, the dataset will yield batches of sequences
composed of the following indices:
First sequence: [0 2 4 6 8 10 12 14 16 18]
Second sequence: [3 5 7 9 11 13 15 17 19 21]
Third sequence: [6 8 10 12 14 16 18 20 22 24]
...
Last sequence: [78 80 82 84 86 88 90 92 94 96]
In this case the last 3 data points are discarded since no full sequence
can be generated to include them (the next sequence would have started
at index 81, and thus its last step would have gone over 99).
Example 2: temporal regression. Consider an array data
of scalar
values, of shape (steps,)
. To generate a dataset that uses the past 10
timesteps to predict the next timestep, you would use:
input_data = data[:-10]
targets = data[10:]
dataset = tf.keras.preprocessing.timeseries_dataset_from_array(
input_data, targets, sequence_length=10)
for batch in dataset:
inputs, targets = batch
assert np.array_equal(inputs[0], data[:10]) # First sequence: steps [0-9]
assert np.array_equal(targets[0], data[10]) # Corresponding target: step 10
break
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2020-10-01 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2020-10-01 UTC."],[],[],null,["# tf.keras.preprocessing.timeseries_dataset_from_array\n\n\u003cbr /\u003e\n\n|--------------------------------------------------------------------------------------------------------------------------------------------|\n| [View source on GitHub](https://github.com/tensorflow/tensorflow/blob/v2.3.0/tensorflow/python/keras/preprocessing/timeseries.py#L29-L199) |\n\nCreates a dataset of sliding windows over a timeseries provided as array. \n\n tf.keras.preprocessing.timeseries_dataset_from_array(\n data, targets, sequence_length, sequence_stride=1, sampling_rate=1,\n batch_size=128, shuffle=False, seed=None, start_index=None, end_index=None\n )\n\nThis function takes in a sequence of data-points gathered at\nequal intervals, along with time series parameters such as\nlength of the sequences/windows, spacing between two sequence/windows, etc.,\nto produce batches of timeseries inputs and targets.\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n| Arguments --------- ||\n|-------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `data` | Numpy array or eager tensor containing consecutive data points (timesteps). Axis 0 is expected to be the time dimension. |\n| `targets` | Targets corresponding to timesteps in `data`. It should have same length as `data`. `targets[i]` should be the target corresponding to the window that starts at index `i` (see example 2 below). Pass None if you don't have target data (in this case the dataset will only yield the input data). |\n| `sequence_length` | Length of the output sequences (in number of timesteps). |\n| `sequence_stride` | Period between successive output sequences. For stride `s`, output samples would start at index `data[i]`, `data[i + s]`, `data[i + 2 * s]`, etc. |\n| `sampling_rate` | Period between successive individual timesteps within sequences. For rate `r`, timesteps `data[i], data[i + r], ... data[i + sequence_length]` are used for create a sample sequence. |\n| `batch_size` | Number of timeseries samples in each batch (except maybe the last one). |\n| `shuffle` | Whether to shuffle output samples, or instead draw them in chronological order. |\n| `seed` | Optional int; random seed for shuffling. |\n| `start_index` | Optional int; data points earlier (exclusive) than `start_index` will not be used in the output sequences. This is useful to reserve part of the data for test or validation. |\n| `end_index` | Optional int; data points later (exclusive) than `end_index` will not be used in the output sequences. This is useful to reserve part of the data for test or validation. |\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n| Returns ------- ||\n|---|---|\n| A tf.data.Dataset instance. If `targets` was passed, the dataset yields tuple `(batch_of_sequences, batch_of_targets)`. If not, the dataset yields only `batch_of_sequences`. ||\n\n\u003cbr /\u003e\n\n#### Example 1:\n\nConsider indices `[0, 1, ... 99]`.\nWith `sequence_length=10, sampling_rate=2, sequence_stride=3`,\n`shuffle=False`, the dataset will yield batches of sequences\ncomposed of the following indices: \n\n First sequence: [0 2 4 6 8 10 12 14 16 18]\n Second sequence: [3 5 7 9 11 13 15 17 19 21]\n Third sequence: [6 8 10 12 14 16 18 20 22 24]\n ...\n Last sequence: [78 80 82 84 86 88 90 92 94 96]\n\nIn this case the last 3 data points are discarded since no full sequence\ncan be generated to include them (the next sequence would have started\nat index 81, and thus its last step would have gone over 99).\n\nExample 2: temporal regression. Consider an array `data` of scalar\nvalues, of shape `(steps,)`. To generate a dataset that uses the past 10\ntimesteps to predict the next timestep, you would use: \n\n input_data = data[:-10]\n targets = data[10:]\n dataset = tf.keras.preprocessing.timeseries_dataset_from_array(\n input_data, targets, sequence_length=10)\n for batch in dataset:\n inputs, targets = batch\n assert np.array_equal(inputs[0], data[:10]) # First sequence: steps [0-9]\n assert np.array_equal(targets[0], data[10]) # Corresponding target: step 10\n break"]]