mirror of
https://github.com/wassname/pytorch-ts.git
synced 2026-07-05 05:05:17 +08:00
908945b422
* initial uncond image gaussian diff TODO make it work for multivariate vector add conditioning * remove tqdm * initial unet TODO convert to 1d conv * initial time grad estimator * initial training * initial sampling * added huber loss * use SinusoidalPosEmb from wavegrad * use time diff network * fix reshaping * fix missing property * clip false * updated api * added padding * added circular padding * use linear schedule * added more schedules * added back cosine schedule * Delete Solar-time-grad.ipynb * updated estimator API * not tuple * renamed to EpsilonTheta * removed * added example notebook * removed some output * fix requirements * formatting * added more options to time-grad * added article
33 lines
927 B
Python
33 lines
927 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="pytorchts",
|
|
version="0.3.0",
|
|
description="PyTorch Probabilistic Time Series Modeling framework",
|
|
long_description=open("README.md").read(),
|
|
long_description_content_type="text/markdown",
|
|
author="Kashif Rasul",
|
|
author_email="kashif.rasul@zalando.de",
|
|
url="https://github.com/zalandoresearch/pytorch-ts",
|
|
license="MIT",
|
|
packages=find_packages(exclude=["tests"]),
|
|
include_package_data=True,
|
|
zip_safe=True,
|
|
python_requires=">=3.6",
|
|
install_requires=[
|
|
"torch>=1.7.0",
|
|
"gluonts",
|
|
"holidays",
|
|
"numpy~=1.16",
|
|
"pandas~=1.1",
|
|
"scipy",
|
|
"tqdm",
|
|
"matplotlib",
|
|
"tensorboard",
|
|
"wandb",
|
|
],
|
|
dependency_links=["git+https://github.com/awslabs/gluon-ts.git@master#egg=gluonts"],
|
|
test_suite="tests",
|
|
tests_require=["flake8", "pytest"],
|
|
)
|