You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
362 B
11 lines
362 B
# this lstm core module implementation provides an implementation
|
|
# of time series prediction using a lstm approach. It is provided
|
|
# as is with no warranties or support.
|
|
|
|
__author__ = "Jakob Aungiers"
|
|
__copyright__ = "Jakob Aungiers 2018"
|
|
__version__ = "2.0.0"
|
|
__license__ = "MIT"
|
|
|
|
import warnings
|
|
warnings.filterwarnings("ignore") # ignore messy numpy warnings |