-
Notifications
You must be signed in to change notification settings - Fork 763
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix `validation_data` usage in torch. (#2643) * Fix norm-freq to consider freq starts. (#2645) * Fix call to `extractall` (#2648) --------- Co-authored-by: Gerald Woo <[email protected]> Co-authored-by: Jasper <[email protected]>
- Loading branch information
1 parent
435c7ae
commit 97a67ee
Showing
4 changed files
with
52 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"). | ||
# You may not use this file except in compliance with the License. | ||
# A copy of the License is located at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# or in the "license" file accompanying this file. This file is distributed | ||
# on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either | ||
# express or implied. See the License for the specific language governing | ||
# permissions and limitations under the License. | ||
|
||
from pandas.tseries.frequencies import to_offset | ||
|
||
from gluonts.time_feature import norm_freq_str | ||
|
||
|
||
def test_norm_freq_str(): | ||
assert norm_freq_str(to_offset("Y").name) == "A" | ||
assert norm_freq_str(to_offset("YS").name) == "A" | ||
assert norm_freq_str(to_offset("A").name) == "A" | ||
assert norm_freq_str(to_offset("AS").name) == "A" | ||
|
||
assert norm_freq_str(to_offset("Q").name) == "Q" | ||
assert norm_freq_str(to_offset("QS").name) == "Q" | ||
|
||
assert norm_freq_str(to_offset("M").name) == "M" | ||
assert norm_freq_str(to_offset("MS").name) == "M" | ||
|
||
assert norm_freq_str(to_offset("S").name) == "S" |