oxhatestrading commited on
Commit
a239f08
·
0 Parent(s):

load dataset with datasets

Browse files
Files changed (3) hide show
  1. README.md +3 -0
  2. main.py +3 -0
  3. pyproject.toml +11 -0
README.md ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ # Voice Synthesis
2
+
3
+ An attempt to reproduce [Pureformer-VC](https://arxiv.org/pdf/2506.08348) using the VCTK dataset.
main.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ from datasets import load_dataset
2
+
3
+ ds = load_dataset("badayvedat/VCTK", cache_dir="/Volumes/hd0",)
pyproject.toml ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [project]
2
+ name = "pureformer-vc"
3
+ version = "0.1.0"
4
+ requires-python = ">=3.13"
5
+ dependencies = [
6
+ "datasets>=4.0.0",
7
+ "numpy>=2.3.3",
8
+ "soundfile>=0.13.1",
9
+ "torch>=2.8.0",
10
+ "torchaudio>=2.8.0",
11
+ ]