torchTS icon indicating copy to clipboard operation
torchTS copied to clipboard

Time series forecasting with PyTorch

Results 88 torchTS issues
Sort by recently updated
recently updated
newest added
trafficstars

Verify and merge the autoreg branch.

enhancement

documentation
help wanted
examples

SciPy is only used for some sparse matrix operations in utils/graph.py. These include: - scipy.sparse.coo_matrix - scipy.sparse.csr_matrix - scipy.sparse.diags - scipy.sparse.eye - scipy.sparse.identity (**this just calls eye**) - scipy.sparse.issparse -...

dependencies
python

Build tutorials notebooks on how to build DCRNN datasets prior to training it.

examples

This issue is about adding pytest test cases to dcrnn code in the tests/ folder. Some examples include asserting the shape of the input and output matrices of each function...

good first issue
help wanted
examples

Distributed training on multiple devices generates this error. ``` dcrnn_gpu.py:16: YAMLLoadWarning: calling yaml.load() without Loader=... is deprecated, as the default Loader is unsafe. Please read https://msg.pyyaml.org/load for full details. config...

enhancement

Generalize seq2seq class to permit additional recurrent layer types (e.g. GRU). The current implementation has LSTMs hardcoded in both the encoder and decoder.

enhancement

The current implementation of ```data.py/load_dataset()``` instantiates a standard scaler by default. ```python def load_dataset(dataset_dir, batch_size, val_batch_size=None, test_batch_size=None): if val_batch_size is None: val_batch_size = batch_size if test_batch_size is None: test_batch_size =...

enhancement