You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pta5x43hw 219f58b353
Update README.md
2 years ago
CGAN.py ADD file via upload 2 years ago
README.md Update README.md 2 years ago
requirements.txt ADD file via upload 2 years ago
result.png ADD file via upload 2 years ago

README.md

| 第二届计图挑战赛开源模板

Jittor 热身赛利用CGAN生成MNIST手写数字

简介

本项目包含了第二届计图热身赛计图 - CGAN生成手写数字实现的代码实现。本项目的特点是采用了 CGAN对MNIST数据集进行处理生成队伍号码并达到一定相似度的效果。

安装

本项目可在 1 张RTX 2080 上运行训练时间约为15分钟。

运行环境

  • ubuntu18.04
  • python 3.8
  • jittor 1.3.1

安装依赖

执行以下命令安装 python 依赖

pip install -r requirements.txt

训练

直接运行CGAN.py即可

致谢

此项目基于论文 Conditional Generative Adversarial Nets 实现,部分代码参考了 jittor-CGAN