Mainlst commited on
Commit
e1e7bf4
·
1 Parent(s): 97e1ec2

fix requirements.txt

Browse files
customs/prompt_1744976630.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c83e6412f2a30c41150272c16134261aae854dc0c7dbaf1605e3b7ea72c8d5a9
3
+ size 32194
customs/prompt_1744976647.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c83e6412f2a30c41150272c16134261aae854dc0c7dbaf1605e3b7ea72c8d5a9
3
+ size 32194
requirements.txt CHANGED
@@ -1,13 +1,13 @@
1
  # --- Audio / signal processing ---
2
- numpy
3
  scipy
4
  soundfile
5
  torchaudio
6
 
7
  # --- PyTorch 本体 & Vision ---
8
- torch # GPU 自動検出でインストール
9
  torchvision
10
- encodec # コーデックモデル用
11
 
12
  # --- トークン化/言語処理 ---
13
  tokenizers
@@ -19,7 +19,7 @@ cn2an
19
  langid
20
  eng_to_ipa
21
  unidecode
22
- pyopenjtalk-prebuilt
23
  openai-whisper
24
 
25
  # --- 合成モデル依存/補助 ---
@@ -27,9 +27,9 @@ vocos
27
  inflect
28
 
29
  # --- Web UI ---
30
- gradio>=4.44.1 # 最新の Spaces 対応版を指定
31
- nltk # 必要ならデータはデプロイ前にダウンロード
32
 
33
  # --- そのほかユーティリティ ---
34
  wget
35
- matplotlib # デモや可視化が必要なら
 
1
  # --- Audio / signal processing ---
2
+ numpy==1.23.5 # numpyバージョンを固定(pyopenjtalkと整合)
3
  scipy
4
  soundfile
5
  torchaudio
6
 
7
  # --- PyTorch 本体 & Vision ---
8
+ torch # GPU 自動検出でインストール
9
  torchvision
10
+ encodec
11
 
12
  # --- トークン化/言語処理 ---
13
  tokenizers
 
19
  langid
20
  eng_to_ipa
21
  unidecode
22
+ pyopenjtalk-prebuilt --no-cache-dir # numpyと互換性を持たせる
23
  openai-whisper
24
 
25
  # --- 合成モデル依存/補助 ---
 
27
  inflect
28
 
29
  # --- Web UI ---
30
+ gradio>=4.44.1
31
+ nltk
32
 
33
  # --- そのほかユーティリティ ---
34
  wget
35
+ matplotlib