From 5a1074238635a01881b89ba814841fe8426c0598 Mon Sep 17 00:00:00 2001 From: renzhiyuan <465386466@qq.com> Date: Fri, 5 Sep 2025 10:08:20 +0800 Subject: [PATCH] 1 --- .idea/vcs.xml | 6 ++++++ requirements.txt | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 .idea/vcs.xml create mode 100644 requirements.txt diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..2b0df51 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,36 @@ +# 基础依赖 +Flask==3.1.0 +gunicorn==20.0.4 +transformers==4.26.0 + +# 数据处理 +numpy==2.0.1 +pandas==2.3.1 + +# 网络与请求 +requests==2.32.4 +urllib3==2.5.0 + +# 模型相关 +huggingface-hub==0.34.3 +tokenizers==0.13.3 +safetensors==0.5.3 +scikit-learn==1.7.1 + +# 工具库 +click==8.1.8 +Jinja2==3.1.6 +MarkupSafe==3.0.2 +itsdangerous==2.2.0 +Werkzeug==3.1.3 +pyyaml==6.0.2 +tqdm==4.67.1 +simplejson==3.20.1 +joblib==1.5.1 +typing_extensions==4.12.2 +typing-inspection==0.4.1 + + +torch==2.7.1 # 如果使用GPU或需要特定版本 +datasets==3.3.2 # 如果需要数据集处理 +pillow==11.3.0 # 如果涉及图像处理 \ No newline at end of file