Skip to content

Commit

Permalink
Update run.py
Browse files Browse the repository at this point in the history
fix: missing argument detail_freq for predict func
  • Loading branch information
zhaojiejoe authored Aug 31, 2022
1 parent 306add5 commit c62a23a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions run.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ def main():
parser.add_argument('--freq', type=str, default='h',
help='freq for time features encoding, options:[s:secondly, t:minutely, h:hourly, d:daily, '
'b:business days, w:weekly, m:monthly], you can also use more detailed freq like 15min or 3h')
parser.add_argument('--detail_freq', type=str, default='h', help='like freq, but use in predict')
parser.add_argument('--checkpoints', type=str, default='./checkpoints/', help='location of model checkpoints')

# forecasting task
Expand Down

0 comments on commit c62a23a

Please sign in to comment.