Skip to content

Instantly share code, notes, and snippets.

@alealv
Created December 2, 2021 11:45
Show Gist options
  • Save alealv/ecc10dcf5e08e531b404525eb8172fd7 to your computer and use it in GitHub Desktop.
Save alealv/ecc10dcf5e08e531b404525eb8172fd7 to your computer and use it in GitHub Desktop.
[tool.poetry]
name = "tts_train"
version = "0.1.0"
description = ""
authors = [""]
packages = [
{ include = "*.py" }
]
[tool.poetry.dependencies]
python = ">=3.7 <3.9"
# torch = "1.10.0+cu113"
# torchaudio = "0.10.0+cu113"
torch = { url = "https://download.pytorch.org/whl/cu113/torch-1.10.0%2Bcu113-cp38-cp38-win_amd64.whl" }
torchaudio = { url = "https://download.pytorch.org/whl/cu113/torchaudio-0.10.0%2Bcu113-cp38-cp38-linux_x86_64.whl" }
pytorch-lightning = "^1.5.1"
Cython = "^0.29.24"
dvclive = "^0.4.3"
cffi = "^1.15.0"
jsonargparse = {version = "^4.0.3", extras = ["all"]}
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
tensorboard = "^2.6.0"
onnxruntime = "^1.9.0"
librosa = "^0.8.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = 'tests'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment