Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,10 @@ The following packages are required.

```yaml
coloredlogs==15.0.1
gradio>=5.31.0
gradio>=6.0.0
matplotlib==3.7.1
numpy>=1.25.0
Pillow==10.3.0
Pillow>=12.2.0
Requests>=2.32.4
scikit-image==0.22.0
torch_summary==1.4.5
Expand All @@ -108,7 +108,7 @@ pytorch_fid==0.3.0
fastapi==0.115.6
tensorboard==2.19.0
tensorboardX==2.6.1
transformers==4.56.1
transformers>=5.0.0

# If you want to use flash attention, please install flash-attn.
# Compile your own environment: pip install flash-attn --no-build-isolation
Expand Down
6 changes: 3 additions & 3 deletions README_zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,10 @@ pip install iddm

```yaml
coloredlogs==15.0.1
gradio>=5.31.0
gradio>=6.0.0
matplotlib==3.7.1
numpy>=1.25.0
Pillow==10.3.0
Pillow>=12.2.0
Requests>=2.32.4
scikit-image==0.22.0
torch_summary==1.4.5
Expand All @@ -108,7 +108,7 @@ pytorch_fid==0.3.0
fastapi==0.115.6
tensorboard==2.19.0
tensorboardX==2.6.1
transformers==4.56.1
transformers>=5.0.0

# 如果您想使用 flash attention,请安装 flash-attn
# 编译自己的环境:pip install flash-attn --no-build-isolation
Expand Down
6 changes: 3 additions & 3 deletions docs/en-US/01_get_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ The following packages are required.

```yaml
coloredlogs==15.0.1
gradio>=5.31.0
gradio>=6.0.0
matplotlib==3.7.1
numpy>=1.25.0
Pillow==10.3.0
Pillow>=12.2.0
Requests>=2.32.4
scikit-image==0.22.0
torch_summary==1.4.5
Expand All @@ -38,7 +38,7 @@ pytorch_fid==0.3.0
fastapi==0.115.6
tensorboard==2.19.0
tensorboardX==2.6.1
transformers==4.56.1
transformers>=5.0.0

# If you want to use flash attention, please install flash-attn.
# Compile your own environment: pip install flash-attn --no-build-isolation
Expand Down
6 changes: 3 additions & 3 deletions docs/zh-Hans/01_快速开始.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ pip install iddm

```yaml
coloredlogs==15.0.1
gradio>=5.31.0
gradio>=6.0.0
matplotlib==3.7.1
numpy>=1.25.0
Pillow==10.3.0
Pillow>=12.2.0
Requests>=2.32.4
scikit-image==0.22.0
torch_summary==1.4.5
Expand All @@ -40,7 +40,7 @@ pytorch_fid==0.3.0
fastapi==0.115.6
tensorboard==2.19.0
tensorboardX==2.6.1
transformers==4.56.1
transformers>=5.0.0

# 如果您想使用 flash attention,请安装 flash-attn
# 编译自己的环境:pip install flash-attn --no-build-isolation
Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
coloredlogs==15.0.1
gradio>=5.31.0
gradio>=6.0.0
matplotlib==3.7.1
numpy>=1.25.0
Pillow==10.3.0
Pillow>=12.2.0
Requests>=2.32.4
scikit-image==0.22.0
torch_summary==1.4.5
Expand All @@ -11,7 +11,7 @@ pytorch_fid==0.3.0
fastapi==0.115.6
tensorboard==2.19.0
tensorboardX==2.6.1
transformers==4.56.1
transformers>=5.0.0

# If you want to use flash attention, please install flash-attn.
# Compile your own environment: pip install flash-attn --no-build-isolation
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ def get_long_description():
if __name__ == "__main__":
package_list = [
"coloredlogs==15.0.1",
"gradio>=5.31.0",
"gradio>=6.0.0",
"matplotlib==3.7.1",
"numpy>=1.25.0",
"Pillow==10.3.0",
"Pillow==12.2.0",
"Requests>=2.32.4",
"scikit-image==0.22.0",
"torch_summary==1.4.5",
Expand All @@ -49,7 +49,7 @@ def get_long_description():
"fastapi==0.115.6",
"tensorboard==2.19.0",
"tensorboardX==2.6.1",
"transformers==4.56.1",
"transformers==5.0.0",
"torch>=1.10.0",
"torchvision>=0.10.0"
]
Expand Down
Loading