update requirements.txt
本项目是清华大学计算机图形学实验 PA3 的提交作品,使用 Jittor 框架实现 Conditional GAN 模型,用于生成指定数字序列的 MNIST 风格图片。
CGAN_jittor/ ├── CGAN.py # 主代码文件 ├── README.md # 项目说明文档 ├── .gitignore # 忽略文件配置 ├── requirements.txt # 依赖库列表 └── LICENSE # MIT 许可证文件
# 安装 Jittor pip install jittor # 安装其他依赖 pip install -r requirements.txt
python CGAN.py # 最终生成的数字序列图片保存为 result.png
A Jittor implementation of Conditional GAN (CGAN) for MNIST digit generation. 清华大学计算机图形学实验PA3提交项目。
©Copyright 2023 CCF 开源发展委员会 Powered by Trustie& IntelliDE 京ICP备13000930号
CGAN Jittor Implementation
项目概述
本项目是清华大学计算机图形学实验 PA3 的提交作品,使用 Jittor 框架实现 Conditional GAN 模型,用于生成指定数字序列的 MNIST 风格图片。
文件结构
CGAN_jittor/ ├── CGAN.py # 主代码文件 ├── README.md # 项目说明文档 ├── .gitignore # 忽略文件配置 ├── requirements.txt # 依赖库列表 └── LICENSE # MIT 许可证文件
环境配置
使用说明