Audio-to-Audio
audio
speech
voice-conversion
File size: 993 Bytes
d95893e
 
79c3b57
d95893e
92cd895
a9864f2
d95893e
92cd895
 
d95893e
 
79c3b57
 
 
 
 
 
 
 
 
 
d95893e
79c3b57
 
 
 
 
 
 
 
d95893e
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[tool.poetry]
name = "beatrice-trainer"
version = "2.0.0b2"
description = "A tool to train Beatrice models"
license = "MIT"
authors = ["Project Beatrice <167534685+prj-beatrice@users.noreply.github.com>"]
readme = "README.md"
homepage = "https://prj-beatrice.com/"
repository = "https://huggingface.co/fierce-cats/beatrice-trainer"

[tool.poetry.dependencies]
python = ">=3.9"
torch = [
    { version = ">=2.1", markers = "sys_platform == 'win32'", source = "torch-cuda" },
    { version = ">=2.1", markers = "sys_platform != 'win32'" },
]
torchaudio = [
    { version = ">=2.1", markers = "sys_platform == 'win32'", source = "torch-cuda" },
    { version = ">=2.1", markers = "sys_platform != 'win32'" },
]
tqdm = ">=4"
numpy = "^1"
tensorboard = ">=2"
soundfile = ">=0.11"
pyworld = ">=0.3.2"

[[tool.poetry.source]]
name = "torch-cuda"
url = "https://download.pytorch.org/whl/cu121"
priority = "explicit"

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"