TKgumi commited on
Commit
8e27d4e
·
verified ·
1 Parent(s): c815242

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +20 -3
requirements.txt CHANGED
@@ -1,6 +1,23 @@
 
1
  fastapi
2
- uvicorn[standard]
3
- transformers
4
- torch
 
5
  sentencepiece
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
 
 
1
+ # 基本ライブラリ
2
  fastapi
3
+ uvicorn
4
+
5
+ # Hugging Faceのライブラリ
6
+ transformers>=4.49.0
7
  sentencepiece
8
+ accelerate>=0.26.0
9
+ torch>=2.0.0
10
+ protobuf>=5.29.3
11
+ huggingface_hub>=0.29.1
12
+ filelock
13
+ tokenizers>=0.21.0
14
+
15
+ # 日本語トークナイザー(必要に応じて)
16
+ mecab-python3 # MeCabが必要なモデル向け
17
+ fugashi # MeCabのラッパー
18
+ ipadic # MeCab用の辞書
19
+
20
+ # その他のユーティリティ
21
+ numpy
22
+ requests
23