Skip to content

Commit

Permalink
remove unused sample audios and mark deprecated files
Browse files Browse the repository at this point in the history
  • Loading branch information
babysor committed Sep 11, 2021
1 parent 45bc43b commit 78fcfc4
Show file tree
Hide file tree
Showing 12 changed files with 43 additions and 153 deletions.
75 changes: 38 additions & 37 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,38 +1,39 @@
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Vocoder Preprocess",
"type": "python",
"request": "launch",
"program": "vocoder_preprocess.py",
"console": "integratedTerminal",
"args": [
"..\\..\\chs1"
],
},
{
"name": "Python: Vocoder Train",
"type": "python",
"request": "launch",
"program": "vocoder_train.py",
"console": "integratedTerminal",
"args": [
"dev", "..\\..\\chs1"
],
},
{
"name": "Python: demo box",
"type": "python",
"request": "launch",
"program": "demo_toolbox.py",
"console": "integratedTerminal",
"args": [
"-d", "..\\..\\chs"
],
}
]
}
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Web",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/web/app.py",
"console": "integratedTerminal"
},
{
"name": "Python: Vocoder Preprocess",
"type": "python",
"request": "launch",
"program": "vocoder_preprocess.py",
"console": "integratedTerminal",
"args": ["..\\..\\chs1"]
},
{
"name": "Python: Vocoder Train",
"type": "python",
"request": "launch",
"program": "vocoder_train.py",
"console": "integratedTerminal",
"args": ["dev", "..\\..\\chs1"]
},
{
"name": "Python: demo box",
"type": "python",
"request": "launch",
"program": "demo_toolbox.py",
"console": "integratedTerminal",
"args": ["-d", "..\\..\\chs"]
}
]
}
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"python.formatting.provider": "black"
}
Binary file removed samples/1320_00000.mp3
Binary file not shown.
Binary file removed samples/3575_00000.mp3
Binary file not shown.
Binary file removed samples/6829_00000.mp3
Binary file not shown.
Binary file removed samples/8230_00000.mp3
Binary file not shown.
22 changes: 0 additions & 22 deletions samples/README.md

This file was deleted.

94 changes: 0 additions & 94 deletions samples/VCTK.txt

This file was deleted.

Binary file removed samples/p240_00000.mp3
Binary file not shown.
Binary file removed samples/p260_00000.mp3
Binary file not shown.
1 change: 1 addition & 0 deletions synthesizer_preprocess_audio.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
]

if __name__ == "__main__":
print("This method is deprecaded and will not be longer supported, please use 'pre.py'")
parser = argparse.ArgumentParser(
description="Preprocesses audio files from datasets, encodes them as mel spectrograms "
"and writes them to the disk. Audio files are also saved, to be used by the "
Expand Down
1 change: 1 addition & 0 deletions synthesizer_preprocess_embeds.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@


if __name__ == "__main__":
print("This method is deprecaded and will not be longer supported, please use 'pre.py'")
parser = argparse.ArgumentParser(
description="Creates embeddings for the synthesizer from the LibriSpeech utterances.",
formatter_class=argparse.ArgumentDefaultsHelpFormatter
Expand Down

0 comments on commit 78fcfc4

Please sign in to comment.