Skip to content

Commit

Permalink
fix: disable NaN filtering per default to ensure errors if they are u…
Browse files Browse the repository at this point in the history
…nexpected
  • Loading branch information
MArpogaus committed Sep 12, 2024
1 parent de62125 commit 740e51c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tensorflow_time_series_dataset/factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# author : Marcel Arpogaus <marcel dot arpogaus at gmail dot com>
#
# created : 2022-01-07 09:02:38 (Marcel Arpogaus)
# changed : 2024-09-12 15:43:12 (Marcel Arpogaus)
# changed : 2024-09-12 16:21:24 (Marcel Arpogaus)
# DESCRIPTION #################################################################
# ...
# LICENSE #####################################################################
Expand Down Expand Up @@ -53,7 +53,7 @@ class WindowedTimeSeriesDatasetFactory:
"cycle_length": 1,
"shuffle_buffer_size": 1000,
"cache": True,
"filter_nans": True,
"filter_nans": False,
}

def __init__(
Expand Down

0 comments on commit 740e51c

Please sign in to comment.