日付エンコーダー
DateEncoder
コンストラクタ
import datetime
from htm.encoders.date import DateEncoder
dateEncoder = DateEncoder(season = 4)
now = datetime.datetime.strptime("2019-05-02 13:08:58", "%Y-%m-%d %H:%M:%S")
nextMonth = datetime.datetime.strptime("2019-06-02 13:08:58", "%Y-%m-%d %H:%M:%S")
xmas = datetime.datetime.strptime("2019-12-25 13:08:58", "%Y-%m-%d %H:%M:%S")
最終更新